| 176 | } |
| 177 | |
| 178 | void Framework::init(const FrameworkConfig &config) |
| 179 | { |
| 180 | _test_filter.reset(new TestFilter(config.mode, config.name_filter, config.id_filter)); |
| 181 | _num_iterations = config.num_iterations; |
| 182 | _log_level = config.log_level; |
| 183 | _cooldown_sec = config.cooldown_sec; |
| 184 | _configure_only = config.configure_only; |
| 185 | _print_rerun_cmd = config.print_rerun_cmd; |
| 186 | _seed = config.seed; |
| 187 | _print_iterations = config.print_iterations; |
| 188 | _instruments = |
| 189 | std::set<framework::InstrumentsDescription>(std::begin(config.instruments), std::end(config.instruments)); |
| 190 | } |
| 191 | |
| 192 | std::string Framework::current_suite_name() const |
| 193 | { |
no test coverage detected