diff tests/run-tests.py @ 22107:3b5cf39ffcc4

run-tests: don't show 'i' for tests that don't match a keyword
author Matt Mackall <mpm@selenic.com>
date Tue, 12 Aug 2014 00:33:48 -0500
parents 70bdf59d27b6
children a076a196641b
line wrap: on
line diff
--- a/tests/run-tests.py	Mon Aug 11 17:45:50 2014 -0500
+++ b/tests/run-tests.py	Tue Aug 12 00:33:48 2014 -0500
@@ -1155,7 +1155,7 @@
         if self.showAll:
             self.stream.writeln('ignored %s' % reason)
         else:
-            if reason != 'not retesting':
+            if reason != 'not retesting' and reason != "doesn't match keyword":
                 self.stream.write('i')
             else:
                 self.testsRun += 1