2 # Filter a subunit stream
3 # Copyright (C) Jelmer Vernooij <jelmer@samba.org>
4 # Published under the GNU GPL, v3 or later
10 filter-subunit - Filter a subunit stream
16 filter-subunit --prefix=PREFIX --known-failures=FILE < in-stream > out-stream
20 Simple Subunit stream filter that will change failures to known failures
21 based on a list of regular expressions.
29 Add the specified prefix to all test names.
31 =item I<--expected-failures>
33 Specify a file containing a list of tests that are expected to fail. Failures
34 for these tests will be counted as successes, successes will be counted as
37 The format for the file is, one entry per line:
39 TESTSUITE-NAME.TEST-NAME
41 The reason for a test can also be specified, by adding a hash sign (#) and the reason
46 selftest is licensed under the GNU General Public License L<http://www.gnu.org/licenses/gpl.html>.
57 use FindBin
qw($RealBin $Script);
59 use Subunit qw(parse_results);
62 my $opt_expected_failures = undef;
64 my $opt_prefix = undef;
65 my $opt_strip_ok_output = 0;
66 my @expected_failures = ();
68 my $result = GetOptions
(
69 'expected-failures=s' => \
$opt_expected_failures,
70 'strip-passed-output' => \
$opt_strip_ok_output,
71 'prefix=s' => \
$opt_prefix,
74 exit(1) if (not $result);
77 print "Usage: filter-subunit [--prefix=PREFIX] [--expected-failures=FILE]... < instream > outstream\n";
81 if (defined($opt_expected_failures)) {
82 @expected_failures = Subunit
::Filter
::read_test_regexes
($opt_expected_failures);
86 TESTS_UNEXPECTED_OK
=> 0,
87 TESTS_EXPECTED_OK
=> 0,
88 TESTS_UNEXPECTED_FAIL
=> 0,
89 TESTS_EXPECTED_FAIL
=> 0,
94 my $msg_ops = new Subunit
::Filter
($opt_prefix, \
@expected_failures,
95 $opt_strip_ok_output);
97 exit(parse_results
($msg_ops, $statistics, *STDIN
));