| 21 | #include "arrow/testing/gtest_util.h" |
| 22 | |
| 23 | int main(int argc, char** argv) { |
| 24 | // Initialize compute functions before any benchmarks run |
| 25 | ABORT_NOT_OK(arrow::compute::Initialize()); |
| 26 | |
| 27 | // Initialize and run benchmarks |
| 28 | ::benchmark::Initialize(&argc, argv); |
| 29 | if (::benchmark::ReportUnrecognizedArguments(argc, argv)) return 1; |
| 30 | ::benchmark::RunSpecifiedBenchmarks(); |
| 31 | ::benchmark::Shutdown(); |
| 32 | return 0; |
| 33 | } |
nothing calls this directly
no test coverage detected