##// END OF EJS Templates
tests: fix up a couple of minor bytes inconsistencies in run-tests.py...
Augie Fackler -
r37759:700aaa19 default
parent child Browse files
Show More
@@ -393,6 +393,7 b' test-revset-dirstate-parents.t'
393 test-revset-outgoing.t
393 test-revset-outgoing.t
394 test-rollback.t
394 test-rollback.t
395 test-run-tests.py
395 test-run-tests.py
396 test-run-tests.t
396 test-schemes.t
397 test-schemes.t
397 test-serve.t
398 test-serve.t
398 test-setdiscovery.t
399 test-setdiscovery.t
@@ -2215,10 +2215,11 b' class TextTestRunner(unittest.TextTestRu'
2215 'Failed to identify failure point for %s' % test)
2215 'Failed to identify failure point for %s' % test)
2216 continue
2216 continue
2217 dat = m.groupdict()
2217 dat = m.groupdict()
2218 verb = 'broken' if dat['goodbad'] == 'bad' else 'fixed'
2218 verb = 'broken' if dat['goodbad'] == b'bad' else 'fixed'
2219 self.stream.writeln(
2219 self.stream.writeln(
2220 '%s %s by %s (%s)' % (
2220 '%s %s by %s (%s)' % (
2221 test, verb, dat['node'], dat['summary']))
2221 test, verb, dat['node'].decode('ascii'),
2222 dat['summary'].decode('utf8', 'ignore')))
2222
2223
2223 def printtimes(self, times):
2224 def printtimes(self, times):
2224 # iolock held by run
2225 # iolock held by run
General Comments 0
You need to be logged in to leave comments. Login now