summaryrefslogtreecommitdiff
path: root/selftest/subunithelper.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-04-11 00:08:16 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-04-11 20:57:33 +0200
commitd0ab7440acf57f698290c2ba64650c6144bc8545 (patch)
tree85fc11ce343675dc46a9e4d28b1462875e5374af /selftest/subunithelper.py
parent0ee1985b05bd1a650f712a6d458b20c31eae8734 (diff)
downloadsamba-d0ab7440acf57f698290c2ba64650c6144bc8545.tar.gz
samba-d0ab7440acf57f698290c2ba64650c6144bc8545.tar.bz2
samba-d0ab7440acf57f698290c2ba64650c6144bc8545.zip
selftest: Accept 'testing:' to introduce new tests.
Diffstat (limited to 'selftest/subunithelper.py')
-rw-r--r--selftest/subunithelper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py
index 545178ea99..7d6896ad3c 100644
--- a/selftest/subunithelper.py
+++ b/selftest/subunithelper.py
@@ -32,7 +32,7 @@ def parse_results(msg_ops, statistics, fh):
l = fh.readline()
if l == "":
break
- if l.startswith("test: "):
+ if l.startswith("test: ") or l.startswith("testing: "):
msg_ops.control_msg(l)
name = l.split(":", 1)[1].strip()
msg_ops.start_test(name)