David Benjamin | 9662843 | 2017-01-19 19:05:47 -0500 | [diff] [blame] | 1 | /* Copyright (c) 2016, Google Inc. |
| 2 | * |
| 3 | * Permission to use, copy, modify, and/or distribute this software for any |
| 4 | * purpose with or without fee is hereby granted, provided that the above |
| 5 | * copyright notice and this permission notice appear in all copies. |
| 6 | * |
| 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION |
| 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ |
| 14 | |
| 15 | #include <gtest/gtest.h> |
| 16 | |
David Benjamin | afd88c2 | 2017-04-26 11:02:43 -0400 | [diff] [blame] | 17 | #include "gtest_main.h" |
David Benjamin | 6b0edfb | 2017-02-04 11:12:51 -0500 | [diff] [blame] | 18 | |
David Benjamin | 6b0edfb | 2017-02-04 11:12:51 -0500 | [diff] [blame] | 19 | |
David Benjamin | 9662843 | 2017-01-19 19:05:47 -0500 | [diff] [blame] | 20 | int main(int argc, char **argv) { |
David Benjamin | 9662843 | 2017-01-19 19:05:47 -0500 | [diff] [blame] | 21 | testing::InitGoogleTest(&argc, argv); |
David Benjamin | afd88c2 | 2017-04-26 11:02:43 -0400 | [diff] [blame] | 22 | bssl::SetupGoogleTest(); |
David Benjamin | 9662843 | 2017-01-19 19:05:47 -0500 | [diff] [blame] | 23 | return RUN_ALL_TESTS(); |
| 24 | } |