comparison 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
comparison
equal deleted inserted replaced
22104:70bdf59d27b6 22107:3b5cf39ffcc4
1153 self.ignored.append((test, reason)) 1153 self.ignored.append((test, reason))
1154 iolock.acquire() 1154 iolock.acquire()
1155 if self.showAll: 1155 if self.showAll:
1156 self.stream.writeln('ignored %s' % reason) 1156 self.stream.writeln('ignored %s' % reason)
1157 else: 1157 else:
1158 if reason != 'not retesting': 1158 if reason != 'not retesting' and reason != "doesn't match keyword":
1159 self.stream.write('i') 1159 self.stream.write('i')
1160 else: 1160 else:
1161 self.testsRun += 1 1161 self.testsRun += 1
1162 self.stream.flush() 1162 self.stream.flush()
1163 iolock.release() 1163 iolock.release()