From d0ab7440acf57f698290c2ba64650c6144bc8545 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 11 Apr 2010 00:08:16 +0200 Subject: selftest: Accept 'testing:' to introduce new tests. --- selftest/subunithelper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'selftest/subunithelper.py') 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) -- cgit