| 773 | } |
| 774 | |
| 775 | void cmCTestBuildHandler::LaunchHelper::WriteLauncherConfig() |
| 776 | { |
| 777 | this->WriteScrapeMatchers("Warning", |
| 778 | this->Handler->ReallyCustomWarningMatches); |
| 779 | this->WriteScrapeMatchers("WarningSuppress", |
| 780 | this->Handler->ReallyCustomWarningExceptions); |
| 781 | |
| 782 | // Give some testing configuration information to the launcher. |
| 783 | std::string fname = |
| 784 | cmStrCat(this->Handler->CTestLaunchDir, "/CTestLaunchConfig.cmake"); |
| 785 | cmGeneratedFileStream fout(fname); |
| 786 | std::string srcdir = this->CTest->GetCTestConfiguration("SourceDirectory"); |
| 787 | fout << "set(CTEST_SOURCE_DIRECTORY \"" << srcdir << "\")\n"; |
| 788 | } |
| 789 | |
| 790 | void cmCTestBuildHandler::LaunchHelper::WriteScrapeMatchers( |
| 791 | char const* purpose, std::vector<std::string> const& matchers) |
no test coverage detected