1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00
samba-mirror/source4/script/harness2subunit.pl
Jelmer Vernooij 8a1d019f53 r24709: Convert perl test harness output to subunit for nicer display.
(This used to be commit 1be11bd0a5092ad9102587ea206388234983c479)
2007-10-10 15:02:53 -05:00

29 lines
526 B
Perl
Executable File

#!/usr/bin/perl
my $firstline = 1;
while(<STDIN>) {
if ($firstline) {
$firstline = 0;
next;
}
if (/^not ok (\d+) - (.*)$/) {
print "test: $2\n";
print "failure: $2\n";
} elsif (/^ok (\d+) - (.*)$/) {
print "test: $2\n";
print "success: $2\n";
} elsif (/^ok (\d+)$/) {
print "test: $1\n";
print "success: $1\n";
} elsif (/^ok (\d+) # skip (.*)$/) {
print "test: $1\n";
print "skip: $1 [\n$2\n]\n";
} elsif (/^not ok (\d+)$/) {
print "test: $1\n";
print "failure: $1\n";
} else {
print;
}
}