diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-15 20:05:51 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-15 20:09:25 +0200 |
commit | adf8ca6ff8c6dbc365034a27f8d27a15aa533f97 (patch) | |
tree | 24ae175f579d042ac5ecf235c866787cdbe2d63d | |
parent | 627de92521cb20c5387656946bcbf5ecf3be5332 (diff) | |
download | samba-adf8ca6ff8c6dbc365034a27f8d27a15aa533f97.tar.gz samba-adf8ca6ff8c6dbc365034a27f8d27a15aa533f97.tar.bz2 samba-adf8ca6ff8c6dbc365034a27f8d27a15aa533f97.zip |
subunit: Re-add outputmsg.
-rw-r--r-- | selftest/subunithelper.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py index 559f5c0c24..4a649c3b5f 100644 --- a/selftest/subunithelper.py +++ b/selftest/subunithelper.py @@ -191,6 +191,9 @@ class SubunitOps(subunit.TestProtocolClient,TestsuiteEnabledTestResult): else: self._stream.write("testsuite-%s: %s\n" % (result, name)) + def output_msg(self, msg): + self._stream.write(msg) + def read_test_regexes(name): ret = {} |