Merge topic 'ctest_memcheck-xml-encoding'

3da577d CTest: Escape MemCheck test output for XML (#13124)
This commit is contained in:
David Cole 2012-05-01 14:08:25 -04:00 committed by CMake Topic Stage
commit 2d8e2daffe
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 )