tests/runAll.py
changeset 3360 8f6bd331cb85
parent 2992 08eb9180be84
child 3617 ae5744e97c42
--- a/tests/runAll.py	Tue Apr 06 12:40:43 2010 +0000
+++ b/tests/runAll.py	Tue Apr 06 12:54:39 2010 +0000
@@ -114,7 +114,7 @@
         os.close(sys.stderr.fileno())
 
 def runExternally():
-    cmd = sys.executable+' -c"from tests import runAll;runAll.mainEx()"'
+    cmd = '"%s" -c"from tests import runAll;runAll.mainEx()"' % sys.executable
     i,o,e=os.popen3(cmd)
     i.close()
     out = o.read()