# 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 -r 7ec3b32b98bb -r 11e5ad038a7b tests/run-tests.py --- a/tests/run-tests.py Fri May 30 12:10:56 2014 -0700 +++ b/tests/run-tests.py Thu Jun 12 02:36:52 2014 +0530 @@ -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):