| 788 | } |
| 789 | |
| 790 | void cmCTestBuildHandler::LaunchHelper::WriteScrapeMatchers( |
| 791 | char const* purpose, std::vector<std::string> const& matchers) |
| 792 | { |
| 793 | if (matchers.empty()) { |
| 794 | return; |
| 795 | } |
| 796 | std::string fname = |
| 797 | cmStrCat(this->Handler->CTestLaunchDir, "/Custom", purpose, ".txt"); |
| 798 | cmGeneratedFileStream fout(fname); |
| 799 | for (std::string const& m : matchers) { |
| 800 | fout << m << "\n"; |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | bool cmCTestBuildHandler::RunMakeCommand(std::string const& command, |
| 805 | int* retVal, char const* dir, |
no test coverage detected