diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-03-30 14:36:25 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-03-31 02:20:08 +0200 |
commit | 7f1360db5123b61cd4473f54d4fb55746c5d8245 (patch) | |
tree | 78682a2a220004755d6fcb5afffe6e550531463a /selftest/format-subunit | |
parent | b2eb609d4de39c1359142bc0562daf36e4dee08c (diff) | |
download | samba-7f1360db5123b61cd4473f54d4fb55746c5d8245.tar.gz samba-7f1360db5123b61cd4473f54d4fb55746c5d8245.tar.bz2 samba-7f1360db5123b61cd4473f54d4fb55746c5d8245.zip |
selftest: Support parsing progress in format-subunit/filter-subunit.
Diffstat (limited to 'selftest/format-subunit')
-rwxr-xr-x | selftest/format-subunit | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/selftest/format-subunit b/selftest/format-subunit index f7d09e835c..eba8c31682 100755 --- a/selftest/format-subunit +++ b/selftest/format-subunit @@ -30,6 +30,9 @@ class PlainFormatter(object): def testsuite_count(self, count): self.totalsuites = count + def progress(self, offset, whence): + pass + def report_time(self, time): if self.start_time is None: self.start_time = time |