diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-08-27 16:27:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:02:53 -0500 |
commit | 8a1d019f53ef6d1a6900a005b335bdc10d14bbe4 (patch) | |
tree | 6287922e476444ea86af7e9f834b531af77b8c63 /source4/script | |
parent | 01ab492d286e40dd2118b6755223d7bdad2fec92 (diff) | |
download | samba-8a1d019f53ef6d1a6900a005b335bdc10d14bbe4.tar.gz samba-8a1d019f53ef6d1a6900a005b335bdc10d14bbe4.tar.bz2 samba-8a1d019f53ef6d1a6900a005b335bdc10d14bbe4.zip |
r24709: Convert perl test harness output to subunit for nicer display.
(This used to be commit 1be11bd0a5092ad9102587ea206388234983c479)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/harness2subunit.pl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/source4/script/harness2subunit.pl b/source4/script/harness2subunit.pl new file mode 100755 index 0000000000..c14e4730e0 --- /dev/null +++ b/source4/script/harness2subunit.pl @@ -0,0 +1,28 @@ +#!/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; + } +} |