Merge branch 'master' of ssh://git.samba.org/data/git/samba
[metze/samba/wip.git] / selftest / filter-subunit
1 #!/usr/bin/env python
2 # Filter a subunit stream
3 # Copyright (C) Jelmer Vernooij <jelmer@samba.org>
4 # Published under the GNU GPL, v3 or later
5
6 import optparse
7 import os
8 import sys
9 import signal
10
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"))
13
14 import subunithelper
15
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 "
19              "failures")
20 parser.add_option("--strip-passed-output", action="store_true", 
21     help="Whether to strip output from tests that passed")
22
23 parser.add_option("--prefix", type="string",
24         help="Add prefix to all test names")
25
26 opts, args = parser.parse_args()
27
28 if opts.expected_failures:
29         expected_failures = list(subunithelper.read_test_regexes(opts.expected_failures))
30 else:
31         expected_failures = []
32
33 statistics = {
34         'TESTS_UNEXPECTED_OK': 0,
35         'TESTS_EXPECTED_OK': 0,
36         'TESTS_UNEXPECTED_FAIL': 0,
37         'TESTS_EXPECTED_FAIL': 0,
38         'TESTS_ERROR': 0,
39         'TESTS_SKIP': 0,
40 }
41
42 def handle_sigint(sig, stack):
43         sys.exit(0)
44 signal.signal(signal.SIGINT, handle_sigint)
45
46 msg_ops = subunithelper.FilterOps(opts.prefix, expected_failures, 
47         opts.strip_passed_output)
48
49 sys.exit(subunithelper.parse_results(msg_ops, statistics, sys.stdin))