| 95 | #endif // HAVE_SSE42 && (defined(_M_X64) || defined(__x86_64__)) |
| 96 | |
| 97 | int main(int argc, char** argv) { |
| 98 | #if CRC32C_TESTS_BUILT_WITH_GLOG |
| 99 | google::InitGoogleLogging(argv[0]); |
| 100 | google::InstallFailureSignalHandler(); |
| 101 | #endif // CRC32C_TESTS_BUILT_WITH_GLOG |
| 102 | |
| 103 | benchmark::Initialize(&argc, argv); |
| 104 | benchmark::RunSpecifiedBenchmarks(); |
| 105 | return 0; |
| 106 | } |
nothing calls this directly
no test coverage detected