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.
This commit is contained in:
parent
5690cafd62
commit
82e7e7fb7d
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue