s3: Change exit on immediate socket failure.
[Samba/gebeck_regimport.git] / selftest / filter-subunit
blob923d5cf3a30053c14b14e0cec418676a087db27f
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
6 import optparse
7 import os
8 import sys
9 import signal
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"))
14 import subunithelper
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")
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)
30 else:
31 expected_failures = {}
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,
42 def handle_sigint(sig, stack):
43 sys.exit(0)
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))