##// END OF EJS Templates
run-tests: don't count test as succeeded if it failed...
Idan Kamara -
r14037:4ab1e987 default
parent child Browse files
Show More
@@ -792,8 +792,6 b' def runone(options, test):'
792 792 vlog("# Ret was:", ret)
793 793
794 794 mark = '.'
795 if ret == 0:
796 success()
797 795
798 796 skipped = (ret == SKIPPED_STATUS)
799 797
@@ -849,6 +847,8 b' def runone(options, test):'
849 847 elif ret:
850 848 mark = '!'
851 849 fail("returned error code %d" % ret, ret)
850 else:
851 success()
852 852
853 853 if not options.verbose:
854 854 iolock.acquire()
General Comments 0
You need to be logged in to leave comments. Login now