| 459 | } |
| 460 | |
| 461 | void cmCTestBuildHandler::GenerateXMLHeader(cmXMLWriter& xml) |
| 462 | { |
| 463 | this->CTest->StartXML(xml, this->CMake, this->AppendXML); |
| 464 | this->CTest->GenerateSubprojectsOutput(xml); |
| 465 | xml.StartElement("Build"); |
| 466 | xml.Element("StartDateTime", this->StartBuild); |
| 467 | xml.Element("StartBuildTime", this->StartBuildTime); |
| 468 | xml.Element("BuildCommand", this->GetMakeCommand()); |
| 469 | } |
| 470 | |
| 471 | class cmCTestBuildHandler::FragmentCompare |
| 472 | { |
no test coverage detected