| 86 | } |
| 87 | |
| 88 | int main(int argc, char **argv) { |
| 89 | CpuInfo::Init(); |
| 90 | cout << endl << Benchmark::GetMachineInfo() << endl; |
| 91 | |
| 92 | InitProfile(5, 10, &benchmark_profile); |
| 93 | |
| 94 | Benchmark suite("RuntimeProfile conversion"); |
| 95 | suite.AddBenchmark("ToThrift", ToThriftBenchmark, nullptr); |
| 96 | cout << suite.Measure() << endl; |
| 97 | return 0; |
| 98 | } |
| 99 |
nothing calls this directly
no test coverage detected