| 1190 | } |
| 1191 | |
| 1192 | int cmCTest::GenerateNotesFile(cmake* cm, |
| 1193 | std::vector<std::string> const& files) |
| 1194 | { |
| 1195 | cmGeneratedFileStream ofs; |
| 1196 | if (!this->OpenOutputFile(this->Impl->CurrentTag, "Notes.xml", ofs)) { |
| 1197 | cmCTestLog(this, ERROR_MESSAGE, "Cannot open notes file" << std::endl); |
| 1198 | return 1; |
| 1199 | } |
| 1200 | cmXMLWriter xml(ofs); |
| 1201 | this->GenerateCTestNotesOutput(xml, cm, files); |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
| 1205 | int cmCTest::GenerateNotesFile(cmake* cm, std::string const& cfiles) |
| 1206 | { |
no test coverage detected