| 169 | : verify_error_count(0), runtime_error_count(0), |
| 170 | unknown_count(0), success_count(0) { } |
| 171 | void add(const hs_longrun_stat& x) { |
| 172 | verify_error_count += x.verify_error_count; |
| 173 | runtime_error_count += x.runtime_error_count; |
| 174 | unknown_count += x.unknown_count; |
| 175 | success_count += x.success_count; |
| 176 | } |
| 177 | }; |
| 178 | |
| 179 | struct hs_longrun_thread_base : public thread_base { |
no outgoing calls
no test coverage detected