summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
Diffstat (limited to 'source4/script')
-rwxr-xr-xsource4/script/harness2subunit.pl28
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;
+ }
+}