From 30895a09652b1c77e719a94d7dd1d067dbe742bb Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Tue, 26 Apr 2016 08:23:46 +0000 Subject: [PATCH] SSDM-3505: escaping failure message in CDATA of test report xml. SVN: 36288 --- integration-tests/test.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/integration-tests/test.py b/integration-tests/test.py index 5791c055df2..b2855ffb7d7 100755 --- a/integration-tests/test.py +++ b/integration-tests/test.py @@ -39,17 +39,18 @@ with open('targets/test-results/TEST-integration.xml', 'w') as out: out.write("<testsuite name='integration' tests='%s' failures='%s' errors='0' timestamp='%s' time='%s'>\n" % (len(testCases), len(failedTestCases), renderedStartTime, int(1000*duration))) for testCase in testCases: + testCaseDuration = int(1000*testCaseDurations[testCase]) if testCase in failedTestCases: - out.write(" <testcase name='%s' time='%s'>\n" % (testCase, int(1000*testCaseDurations[testCase]))) + out.write(" <testcase name='%s' time='%s'>\n" % (testCase, testCaseDuration)) exceptionInfo = failedTestCases[testCase] out.write(" <failure>\n") msgs = traceback.format_exception(exceptionInfo[0], exceptionInfo[1], exceptionInfo[2]) for msg in msgs: - out.write(" %s\n" % msg) + out.write(" <![CDATA[\n %s\n ]]>\n" % msg) out.write(" </failure>\n") out.write(" </testcase>\n") else: - out.write(" <testcase name='%s'/>\n" % testCase) + out.write(" <testcase name='%s' time='%s'/>\n" % (testCase, testCaseDuration)) out.write("</testsuite>\n") printAndFlush('=====================================') printAndFlush("%d test cases executed in %s" % (len(testCases), renderDuration(duration))) -- GitLab