From c02dfddda3c4e267c99d301f5f042f36da50a658 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 11 Jul 2019 12:45:49 +0200 Subject: [PATCH] Include test name in JUnit testcase name Azure does not show the classname attribute in any convenient way, and the file name is the part we usually care about. --- run-tests.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-tests.php b/run-tests.php index 96df073a84..d83669b706 100755 --- a/run-tests.php +++ b/run-tests.php @@ -3444,8 +3444,8 @@ function junit_mark_test_as($type, $file_name, $test_name, $time = null, $messag }, $escaped_details); $escaped_message = htmlspecialchars($message, ENT_QUOTES, 'UTF-8'); - $escaped_test_name = htmlspecialchars($test_name, ENT_QUOTES); - $JUNIT['files'][$file_name]['xml'] = "\n"; + $escaped_test_name = htmlspecialchars($file_name . ' (' . $test_name . ')', ENT_QUOTES); + $JUNIT['files'][$file_name]['xml'] = "\n"; if (is_array($type)) { $output_type = $type[0] . 'ED'; -- 2.40.0