##// END OF EJS Templates
run-tests: ignoring tests works again...
simon@laptop-tosh -
r19311:ad16e5c7 default
parent child Browse files
Show More
@@ -904,8 +904,7 b' def runone(options, test, count):'
904 904 return skip("blacklisted")
905 905
906 906 if options.retest and not os.path.exists(test + ".err"):
907 ignore("not retesting")
908 return None
907 return ignore("not retesting")
909 908
910 909 if options.keywords:
911 910 fp = open(test)
@@ -915,8 +914,7 b' def runone(options, test, count):'
915 914 if k in t:
916 915 break
917 916 else:
918 ignore("doesn't match keyword")
919 return None
917 return ignore("doesn't match keyword")
920 918
921 919 for ext, func, out in testtypes:
922 920 if lctest.startswith("test-") and lctest.endswith(ext):
General Comments 0
You need to be logged in to leave comments. Login now