##// 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 return skip("blacklisted")
904 return skip("blacklisted")
905
905
906 if options.retest and not os.path.exists(test + ".err"):
906 if options.retest and not os.path.exists(test + ".err"):
907 ignore("not retesting")
907 return ignore("not retesting")
908 return None
909
908
910 if options.keywords:
909 if options.keywords:
911 fp = open(test)
910 fp = open(test)
@@ -915,8 +914,7 b' def runone(options, test, count):'
915 if k in t:
914 if k in t:
916 break
915 break
917 else:
916 else:
918 ignore("doesn't match keyword")
917 return ignore("doesn't match keyword")
919 return None
920
918
921 for ext, func, out in testtypes:
919 for ext, func, out in testtypes:
922 if lctest.startswith("test-") and lctest.endswith(ext):
920 if lctest.startswith("test-") and lctest.endswith(ext):
General Comments 0
You need to be logged in to leave comments. Login now