From a4cdd73636041f032597f12a96f74cd277e6f791 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 18 Dec 2009 10:54:24 -0500 Subject: Use literal quotes in Update.xml UpdateCommand Previously we escaped quotes in ... values using '"'. This is not necessary because the value is in xml CDATA and not an xml attribute. --- Source/CTest/cmCTestUpdateHandler.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/CTest/cmCTestUpdateHandler.cxx b/Source/CTest/cmCTestUpdateHandler.cxx index 4111357..f87b37c 100644 --- a/Source/CTest/cmCTestUpdateHandler.cxx +++ b/Source/CTest/cmCTestUpdateHandler.cxx @@ -258,7 +258,8 @@ int cmCTestUpdateHandler::ProcessHandler() << this->CTest->GetTestModelString() << "" << std::endl; os << "\t" << start_time << "\n" << "\t" << start_time_time << "\n" - << "\t" << cmXMLSafe(vc->GetUpdateCommandLine()) + << "\t" + << cmXMLSafe(vc->GetUpdateCommandLine()).Quotes(false) << "\n" << "\t" << cmXMLSafe( cmCTestUpdateHandlerUpdateToString(this->UpdateType)) -- cgit v0.12