| 289 | } |
| 290 | |
| 291 | bool cmCTestLaunchReporter::Match( |
| 292 | std::string const& line, std::vector<cmsys::RegularExpression>& regexps) |
| 293 | { |
| 294 | for (cmsys::RegularExpression& r : regexps) { |
| 295 | if (r.find(line)) { |
| 296 | return true; |
| 297 | } |
| 298 | } |
| 299 | return false; |
| 300 | } |
| 301 | |
| 302 | bool cmCTestLaunchReporter::MatchesFilterPrefix(std::string const& line) const |
| 303 | { |
no test coverage detected