| 2127 | } |
| 2128 | |
| 2129 | void cmCTestCoverageHandler::LoadLabels() |
| 2130 | { |
| 2131 | std::string fileList = |
| 2132 | cmStrCat(this->CTest->GetBinaryDir(), "/CMakeFiles/TargetDirectories.txt"); |
| 2133 | cmCTestOptionalLog(this->CTest, HANDLER_VERBOSE_OUTPUT, |
| 2134 | " target directory list [" << fileList << "]\n", |
| 2135 | this->Quiet); |
| 2136 | cmsys::ifstream finList(fileList.c_str()); |
| 2137 | std::string line; |
| 2138 | while (cmSystemTools::GetLineFromStream(finList, line)) { |
| 2139 | this->LoadLabels(line.c_str()); |
| 2140 | } |
| 2141 | } |
| 2142 | |
| 2143 | void cmCTestCoverageHandler::LoadLabels(char const* dir) |
| 2144 | { |
no test coverage detected