summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-10-08 01:48:44 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-10-08 02:19:59 +0200
commit8da78b732554a88bee0f1dd547e329fe8d82b7f9 (patch)
treee4925fbcf93ca163b6363eac9823308f60a17be4 /lib
parentc024fb7d5745dbca96b969c88284b70ac7c520e4 (diff)
downloadsamba-8da78b732554a88bee0f1dd547e329fe8d82b7f9.tar.gz
samba-8da78b732554a88bee0f1dd547e329fe8d82b7f9.tar.bz2
samba-8da78b732554a88bee0f1dd547e329fe8d82b7f9.zip
Move subunit helper utility to specific subunit directory.
Diffstat (limited to 'lib')
-rwxr-xr-xlib/unit36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/unit b/lib/unit
new file mode 100755
index 0000000000..45f515540b
--- /dev/null
+++ b/lib/unit
@@ -0,0 +1,36 @@
+#!/usr/bin/perl
+# Simple script that converts Perl test harness output to
+# Subunit
+# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
+# Published under the GNU GPL, v3 or later
+
+my $firstline = 1;
+my $error = 0;
+while(<STDIN>) {
+ if ($firstline) {
+ $firstline = 0;
+ next;
+ }
+ if (/^not ok (\d+) - (.*)$/) {
+ print "test: $2\n";
+ print "failure: $2\n";
+ $error = 1;
+ } 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";
+ $error = 1;
+ } else {
+ print;
+ }
+}
+exit $error;
+