summaryrefslogtreecommitdiff
path: root/source4/script/harness2subunit.pl
blob: c14e4730e0099e58377bb1d8058d6f263ca7346b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
	}
}