| 3503 | }; |
| 3504 | |
| 3505 | struct TestRunStats { |
| 3506 | TestRunStats(TestRunInfo const &_runInfo, Totals const &_totals, bool _aborting); |
| 3507 | |
| 3508 | TestRunStats(TestRunStats const &) = default; |
| 3509 | TestRunStats(TestRunStats &&) = default; |
| 3510 | TestRunStats &operator=(TestRunStats const &) = default; |
| 3511 | TestRunStats &operator=(TestRunStats &&) = default; |
| 3512 | virtual ~TestRunStats(); |
| 3513 | |
| 3514 | TestRunInfo runInfo; |
| 3515 | Totals totals; |
| 3516 | bool aborting; |
| 3517 | }; |
| 3518 | |
| 3519 | struct BenchmarkInfo { |
| 3520 | std::string name; |
no outgoing calls