1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-22270 JUnit patch: test name contains classname

This commit is contained in:
Rasmus Johansson
2020-04-17 08:28:31 +00:00
parent 2748c4993c
commit dc2a858bed

View File

@ -466,6 +466,7 @@ sub mtr_report_stats ($$$$) {
}
$test_time = sprintf("%.3f", $test->{timer} / 1000);
$test->{'name'} =~ s/$current_suite\.//;
$xml_report .= qq(\t\t<testcase assertions="" classname="$current_suite" name="$test->{'name'}" status="$test->{'result'}" time="$test_time");
my $comment = $test->{'comment'};