| 345 | } |
| 346 | |
| 347 | void cmCTestLaunch::LoadScrapeRules() |
| 348 | { |
| 349 | if (this->ScrapeRulesLoaded) { |
| 350 | return; |
| 351 | } |
| 352 | this->ScrapeRulesLoaded = true; |
| 353 | |
| 354 | // Load custom match rules given to us by CTest. |
| 355 | this->LoadScrapeRules("Warning", this->Reporter.RegexWarning); |
| 356 | this->LoadScrapeRules("WarningSuppress", |
| 357 | this->Reporter.RegexWarningSuppress); |
| 358 | } |
| 359 | |
| 360 | void cmCTestLaunch::LoadScrapeRules( |
| 361 | char const* purpose, std::vector<cmsys::RegularExpression>& regexps) const |