From 6c299d28b56dd237792cc80c15c6169e701b4a97 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 30 Mar 2010 14:42:23 +0200 Subject: selftest: Use standard subunit command for progress reporting. --- selftest/subunithelper.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'selftest/subunithelper.py') diff --git a/selftest/subunithelper.py b/selftest/subunithelper.py index 36639d94cf1..8659f984d87 100644 --- a/selftest/subunithelper.py +++ b/selftest/subunithelper.py @@ -103,8 +103,6 @@ def parse_results(msg_ops, statistics, fh): msg_ops.end_testsuite(testname, "error", reason) elif l.startswith("testsuite: "): msg_ops.start_testsuite(l.split(":", 1)[1].strip()) - elif l.startswith("testsuite-count: "): - msg_ops.testsuite_count(int(l.split(":", 1)[1].strip())) elif l.startswith("progress: "): arg = l.split(":", 1)[1].strip() if arg == "pop": @@ -190,9 +188,6 @@ class SubunitOps(object): else: print "testsuite-%s: %s" % (result, name) - def testsuite_count(self, count): - print "testsuite-count: %d" % count - def read_test_regexes(name): f = open(name, 'r') @@ -310,9 +305,6 @@ class FilterOps(object): self._ops.end_testsuite(name, result, reason) - def testsuite_count(self, count): - self._ops.testsuite_count(count) - def __init__(self, prefix, expected_failures, strip_ok_output): self._ops = SubunitOps() self.output = None -- cgit