Explorar o código

ENH: Add missing newline to CTest-generated xml

The Generator="ctest..." attribute of Site elements in CTest-generated
XML files was missing a newline, causing the next attribute to appear on
the same line.  This adds the newline.
Brad King %!s(int64=17) %!d(string=hai) anos
pai
achega
82e7e7fb7d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Source/cmCTest.cxx

+ 1 - 1
Source/cmCTest.cxx

@@ -1288,7 +1288,7 @@ void cmCTest::StartXML(std::ostream& ostr)
        << "\"\n\tBuildStamp=\"" << this->CurrentTag << "-"
        << this->GetTestModelString() << "\"\n\tName=\""
        << this->GetCTestConfiguration("Site") << "\"\n\tGenerator=\"ctest"
-       << cmVersion::GetCMakeVersion()  << "\""
+       << cmVersion::GetCMakeVersion()  << "\"\n"
        << "\tOSName=\"" << info.GetOSName() << "\"\n"
        << "\tHostname=\"" << info.GetHostname() << "\"\n"
        << "\tOSRelease=\"" << info.GetOSRelease() << "\"\n"