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:
Brad King 2009-01-09 16:44:19 -05:00
parent 5690cafd62
commit 82e7e7fb7d
1 changed files with 1 additions and 1 deletions

View File

@ -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"