r24709: Convert perl test harness output to subunit for nicer display.
authorJelmer Vernooij <jelmer@samba.org>
Mon, 27 Aug 2007 16:27:23 +0000 (16:27 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 20:02:53 +0000 (15:02 -0500)
(This used to be commit 1be11bd0a5092ad9102587ea206388234983c479)

source4/script/harness2subunit.pl [new file with mode: 0755]
source4/selftest/test_pidl.sh

diff --git a/source4/script/harness2subunit.pl b/source4/script/harness2subunit.pl
new file mode 100755 (executable)
index 0000000..c14e473
--- /dev/null
@@ -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;
+       }
+}
index ca11db590fd4e386e79f3e8ec77fa7134634f159..6a20cd9fc8f64778092fb4c9bc9a030f873eabd2 100755 (executable)
@@ -11,7 +11,7 @@ if test x"${PIDL_TESTS_SKIP}" = x"yes"; then
    echo "Skipping pidl tests - PIDL_TESTS_SKIP=yes"
 elif $PERL -e 'eval require Test::More;' > /dev/null 2>&1; then
   for f in pidl/tests/*.pl; do
-     plantest "$f" none $PERL $f
+     plantest "$f" none $PERL $f "|" ./script/harness2subunit.pl
   done
 else 
    echo "Skipping pidl tests - Test::More not installed"