| 99 | } |
| 100 | |
| 101 | bool cmCTestGlobalVC::WriteXMLUpdates(cmXMLWriter& xml) |
| 102 | { |
| 103 | bool result = true; |
| 104 | cmCTestLog(this->CTest, HANDLER_OUTPUT, |
| 105 | " Gathering version information (one . per revision):\n" |
| 106 | " " |
| 107 | << std::flush); |
| 108 | result = this->LoadRevisions() && result; |
| 109 | cmCTestLog(this->CTest, HANDLER_OUTPUT, std::endl); |
| 110 | |
| 111 | result = this->LoadModifications() && result; |
| 112 | |
| 113 | this->WriteXMLGlobal(xml); |
| 114 | |
| 115 | for (auto const& d : this->Dirs) { |
| 116 | this->WriteXMLDirectory(xml, d.first, d.second); |
| 117 | } |
| 118 | |
| 119 | return result; |
| 120 | } |
| 121 | |
| 122 | void cmCTestGlobalVC::SetNewRevision(std::string const& revision) |
| 123 | { |
nothing calls this directly
no test coverage detected