Commit 1449af88 authored by Guido van Rossum's avatar Guido van Rossum

Quote some pathnames to make this test pass on Mac OS X.

parent c90364c9
......@@ -48,7 +48,9 @@ class StartTests(unittest.TestCase):
if startfile[-1] == 'c':
startfile = startfile[:-1]
self.env = Environment(startfile)
self.cmd = '%s %s' % (sys.executable, startfile)
# Put quotes around the arguments for (e.g.) Mac OS X,
# where the path names may include spaces.
self.cmd = '"%s" "%s"' % (sys.executable, startfile)
self.pids = {}
def tearDown(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment