tests/run-tests.py
changeset 7144 9364c3304ca2
parent 7139 bcbba59e233d
child 7172 fb1d7a42663c
--- a/tests/run-tests.py	Sat Oct 18 14:43:14 2008 -0400
+++ b/tests/run-tests.py	Sat Oct 18 22:44:01 2008 +0200
@@ -346,7 +346,9 @@
         if os.name == 'nt':
             return skip("shell script")
         # do not try to run non-executable programs
-        if not os.access(testpath, os.X_OK):
+        if not os.path.exists(testpath):
+            return fail("does not exist")
+        elif not os.access(testpath, os.X_OK):
             return skip("not executable")
         cmd = '"%s"' % testpath