# HG changeset patch # User anuraggoel # Date 1402520812 -19800 # Node ID 11e5ad038a7be0bfdf57583397154997f935a04a # Parent 7ec3b32b98bb3a503a88eab867d801ea6fbe1787 run-tests: skipped test should not produce 'i' mark while retesting When '--retest' option is enabled then skipped test should not produce 'i' mark. This fixes a regression introduced by 92a6b16c9186 and about 200 previous changesets from Gregory Szorc. diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1106,7 +1106,8 @@ if self.showAll: self.stream.writeln('ignored %s' % reason) else: - self.stream.write('i') + if reason != 'not retesting': + self.stream.write('i') self.stream.flush() def addWarn(self, test, reason):