##// END OF EJS Templates
run-tests.py: report missing file as an error
Benoit Boissinot -
r7144:9364c330 default
parent child Browse files
Show More
@@ -346,7 +346,9 b' def run_one(test, skips, fails):'
346 if os.name == 'nt':
346 if os.name == 'nt':
347 return skip("shell script")
347 return skip("shell script")
348 # do not try to run non-executable programs
348 # do not try to run non-executable programs
349 if not os.access(testpath, os.X_OK):
349 if not os.path.exists(testpath):
350 return fail("does not exist")
351 elif not os.access(testpath, os.X_OK):
350 return skip("not executable")
352 return skip("not executable")
351 cmd = '"%s"' % testpath
353 cmd = '"%s"' % testpath
352
354
General Comments 0
You need to be logged in to leave comments. Login now