diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-08-26 02:25:44 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-08-26 04:04:37 +0200 |
commit | 64564f7338107f781d814e7721e85cc882106c2b (patch) | |
tree | acdc71d3a8ab555e633e29caae9e14899a80cf4f /selftest/subunithelper.py | |
parent | 3aab0c701caa885a1256b07ab5ca7f9a51c6018b (diff) | |
download | samba-64564f7338107f781d814e7721e85cc882106c2b.tar.gz |
subunithelper: Pass along lines as normal output when ignoring them for not containing commands.
Diffstat (limited to 'selftest/subunithelper.py')
-rw-r--r-- | selftest/subunithelper.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py index d2054a94987..d0bb0bb5330 100644 --- a/selftest/subunithelper.py +++ b/selftest/subunithelper.py @@ -34,6 +34,7 @@ def parse_results(msg_ops, statistics, fh): break parts = l.split(None, 1) if not len(parts) == 2 or not l.startswith(parts[0]): + msg_ops.output_msg(l) continue command = parts[0].rstrip(":") arg = parts[1] @@ -128,6 +129,9 @@ def parse_results(msg_ops, statistics, fh): msg_ops.end_testsuite(testname, "xfail", reason) elif result == "testsuite-error": msg_ops.end_testsuite(testname, "error", reason) + else: + raise AssertionError("Recognized but unhandled result %r" % + result) elif command == "testsuite": msg_ops.start_testsuite(arg.strip()) elif command == "progress": |