CTest: Escape MemCheck test output for XML (#13124)

Any output that goes through CleanTestOutput must be printed through
cmXMLSafe.
This commit is contained in:
Brad King 2012-04-12 11:52:32 -04:00
parent 621c0893b8
commit 3da577dec0
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ void cmCTestMemCheckHandler::GenerateDartOutput(std::ostream& os)
os
<< "\t\t</Results>\n"
<< logTag << memcheckstr << std::endl
<< logTag << cmXMLSafe(memcheckstr) << std::endl
<< "\t</Log>\n";
this->WriteTestResultFooter(os, result);
if ( current < cc )