From 5d5f67faa3baec631a4a33f4f497d595728d62a8 Mon Sep 17 00:00:00 2001 From: Robert Ammon Date: Thu, 4 Jan 2018 13:28:16 -0800 Subject: [PATCH] test: (fixes #2829) test.py produces malformed XML results --- test.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/test.py b/test.py index 0ac1575cd..f0e9ab120 100755 --- a/test.py +++ b/test.py @@ -1774,18 +1774,10 @@ def run_tests(): f = open(xml_results_file, 'a') f.write("\n") f.write(" %s\n" % job.display_name) - f.write(' CRASH\n') + f.write(' CRASH\n') f.write("\n") f.close() - if job.returncode == 2: - f = open(xml_results_file, 'a') - f.write("\n") - f.write(" %s\n" % job.display_name) - f.write(' VALGR\n') - f.write("\n") - f.close() - # # We have all of the tests run and the results written out. One final # bit of housekeeping is to wait for all of the threads to close down