diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2019-04-23 19:02:14 (GMT) |
---|---|---|
committer | Zack Galbreath <zack.galbreath@kitware.com> | 2019-04-23 19:02:14 (GMT) |
commit | d8af0700a3cf1391f33c5585c4d19e331d968d4a (patch) | |
tree | c0188668f641234b6d1861a2f7429ddd8c735673 /Source/cmCTest.cxx | |
parent | 95db11fdb189a08a8530a767dea2c272e3605077 (diff) | |
download | CMake-d8af0700a3cf1391f33c5585c4d19e331d968d4a.zip CMake-d8af0700a3cf1391f33c5585c4d19e331d968d4a.tar.gz CMake-d8af0700a3cf1391f33c5585c4d19e331d968d4a.tar.bz2 |
ctest: consistently format generator name
Notes.xml and Upload.xml were missing a hyphen that the rest of
our XML files included.
ctest3.14.0-rc1 vs. ctest-3.14.0-rc1
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 709feac..003ebdc 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1523,7 +1523,7 @@ int cmCTest::GenerateCTestNotesOutput(cmXMLWriter& xml, this->Impl->CurrentTag + "-" + this->GetTestModelString()); xml.Attribute("Name", this->GetCTestConfiguration("Site")); xml.Attribute("Generator", - std::string("ctest") + cmVersion::GetCMakeVersion()); + std::string("ctest-") + cmVersion::GetCMakeVersion()); this->AddSiteProperties(xml); xml.StartElement("Notes"); |