diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-04-11 00:08:16 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-04-11 20:57:33 +0200 |
commit | d0ab7440acf57f698290c2ba64650c6144bc8545 (patch) | |
tree | 85fc11ce343675dc46a9e4d28b1462875e5374af /selftest | |
parent | 0ee1985b05bd1a650f712a6d458b20c31eae8734 (diff) | |
download | samba-d0ab7440acf57f698290c2ba64650c6144bc8545.tar.gz |
selftest: Accept 'testing:' to introduce new tests.
Diffstat (limited to 'selftest')
-rw-r--r-- | selftest/subunithelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py index 545178ea996..7d6896ad3cb 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) |