tests/run-tests.py
changeset 17801 03554dfc7ced
parent 17800 f3c36faa7374
child 17908 42f8ee0e04ac
--- a/tests/run-tests.py	Thu Oct 18 00:33:29 2012 +0200
+++ b/tests/run-tests.py	Thu Oct 18 00:44:32 2012 +0200
@@ -480,11 +480,6 @@
         replacements.append((r'\r\n', '\n'))
     return run(cmd, wd, options, replacements)
 
-def shtest(test, wd, options, replacements):
-    cmd = '%s "%s"' % (options.shell, test)
-    vlog("# Running", cmd)
-    return run(cmd, wd, options, replacements)
-
 needescape = re.compile(r'[\x00-\x08\x0b-\x1f\x7f-\xff]').search
 escapesub = re.compile(r'[\x00-\x08\x0b-\x1f\\\x7f-\xff]').sub
 escapemap = dict((chr(i), r'\x%02x' % i) for i in range(256))
@@ -874,10 +869,7 @@
         runner = tsttest
         ref = testpath
     else:
-        # do not try to run non-executable programs
-        if not os.access(testpath, os.X_OK):
-            return skip("not executable")
-        runner = shtest
+        return skip("unknown test type")
 
     # Make a tmp subdirectory to work in
     testtmp = os.environ["TESTTMP"] = os.environ["HOME"] = \