TODO(vrv): Add support for running a subset of benchmarks by having RunBenchmarks take in a spec (and maybe other options such as benchmark_min_time, etc).
| 282 | // RunBenchmarks take in a spec (and maybe other options such as |
| 283 | // benchmark_min_time, etc). |
| 284 | void RunBenchmarks() { Benchmark::Run("all"); } |
| 285 | void SetLabel(const std::string& l) { label = l; } |
| 286 | void BytesProcessed(int64 n) { bytes_processed = n; } |
| 287 | void ItemsProcessed(int64 n) { items_processed = n; } |