From ae667a95b0e4ed00950bcf2c6a73f580967673c7 Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Thu, 1 Dec 2011 15:47:58 +0000 Subject: [PATCH] - Replace possible esc char to in the XML output --- run-tests.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-tests.php b/run-tests.php index 127265798a..3fba338dca 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2100,11 +2100,11 @@ $output } elseif (in_array('FAIL', $restype)) { $JUNIT['test_fail']++; - $JUNIT['result_xml'] .= ''."\n"; + $JUNIT['result_xml'] .= '', $diff)."\n".']]>'."\n"; } else{ $JUNIT['test_error']++; - $JUNIT['result_xml'] .= ''."\n"; + $JUNIT['result_xml'] .= '', $diff)."\n".']]>'."\n"; } $JUNIT['result_xml'] .= ''."\n"; } -- 2.50.1