##// END OF EJS Templates
tests: show skip reason instead of "irrelevant" with unified tests, too...
Thomas Arendsen Hein -
r12573:be4b0a39 default
parent child Browse files
Show More
@@ -499,6 +499,9 b' def tsttest(test, options):'
499 cmd = '/bin/sh "%s"' % name
499 cmd = '/bin/sh "%s"' % name
500 vlog("# Running", cmd)
500 vlog("# Running", cmd)
501 exitcode, output = run(cmd, options)
501 exitcode, output = run(cmd, options)
502 # do not merge output if skipped, return hghave message instead
503 if exitcode == SKIPPED_STATUS:
504 return exitcode, output
502 finally:
505 finally:
503 os.remove(name)
506 os.remove(name)
504
507
General Comments 0
You need to be logged in to leave comments. Login now