| 55 | } |
| 56 | |
| 57 | static void BM_Send(int iters) { |
| 58 | testing::UseRealTime(); |
| 59 | testing::ItemsProcessed(static_cast<int64>(iters)); |
| 60 | test::Benchmark("cpu", Send(), nullptr, nullptr, new DummyRendezvous) |
| 61 | .Run(iters); |
| 62 | } |
| 63 | BENCHMARK(BM_Send); |
| 64 | |
| 65 | static void BM_Recv(int iters) { |
nothing calls this directly
no test coverage detected