this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Tried to remove CDATA from boostxml

+2 -1
+2 -1
tests/boostxml.cpp
··· 20 20 m_xml << "\t\t<TestCase name=\"" << extractName(path) << "\">\n"; 21 21 m_xml << "\t\t\t<TestingTime>" << time << "</TestingTime>\n"; 22 22 m_xml << "\t\t\t<Error file=\"" << path << "\" line=\"0\">\n"; 23 - m_xml << "<![CDATA[" << error << "]]>\n"; 23 + //m_xml << "<![CDATA[" << error << "]]>\n"; 24 + m_xml << error; 24 25 m_xml << "\t\t\t</Error>\n"; 25 26 m_xml << "\t\t</TestCase>\n"; 26 27 }