2 # Filter a subunit stream
3 # Copyright (C) Jelmer Vernooij <jelmer@samba.org>
4 # Published under the GNU GPL, v3 or later
11 sys
.path
.insert(0, os
.path
.join(os
.path
.dirname(__file__
), "../lib/subunit/python"))
12 sys
.path
.insert(0, os
.path
.join(os
.path
.dirname(__file__
), "../lib/testtools"))
16 parser
= optparse
.OptionParser("filter-subunit [options] < instream > outstream")
17 parser
.add_option("--expected-failures", type="string",
18 help="File containing list of regexes matching tests to consider known "
20 parser
.add_option("--strip-passed-output", action
="store_true",
21 help="Whether to strip output from tests that passed")
23 parser
.add_option("--prefix", type="string",
24 help="Add prefix to all test names")
26 opts
, args
= parser
.parse_args()
28 if opts
.expected_failures
:
29 expected_failures
= subunithelper
.read_test_regexes(opts
.expected_failures
)
31 expected_failures
= {}
34 'TESTS_UNEXPECTED_OK': 0,
35 'TESTS_EXPECTED_OK': 0,
36 'TESTS_UNEXPECTED_FAIL': 0,
37 'TESTS_EXPECTED_FAIL': 0,
42 def handle_sigint(sig
, stack
):
44 signal
.signal(signal
.SIGINT
, handle_sigint
)
46 msg_ops
= subunithelper
.FilterOps(opts
.prefix
, expected_failures
,
47 opts
.strip_passed_output
)
49 sys
.exit(subunithelper
.parse_results(msg_ops
, statistics
, sys
.stdin
))