##// END OF EJS Templates
run-tests: slightly simplify blacklist check
Idan Kamara -
r14446:95715c2f default
parent child Browse files
Show More
@@ -733,11 +733,9 b' def runone(options, test):'
733 733 else:
734 734 return None # not a supported test, don't record
735 735
736 if options.blacklist:
737 filename = options.blacklist.get(test)
738 if filename is not None:
739 skip("blacklisted")
740 return None
736 if options.blacklist and filename in options.blacklist:
737 skip("blacklisted")
738 return None
741 739
742 740 if options.retest and not os.path.exists(test + ".err"):
743 741 ignore("not retesting")
General Comments 0
You need to be logged in to leave comments. Login now