Commit 625af8e1 authored by Benjamin Peterson's avatar Benjamin Peterson

site.py is needed to set up paths

parent 5c87ad07
...@@ -2427,7 +2427,7 @@ class TestFlags(unittest.TestCase): ...@@ -2427,7 +2427,7 @@ class TestFlags(unittest.TestCase):
prog = ('from test.test_multiprocessing import TestFlags; ' + prog = ('from test.test_multiprocessing import TestFlags; ' +
'TestFlags.run_in_child()') 'TestFlags.run_in_child()')
data = subprocess.check_output( data = subprocess.check_output(
[sys.executable, '-E', '-S', '-O', '-c', prog]) [sys.executable, '-E', '-B', '-O', '-c', prog])
child_flags, grandchild_flags = json.loads(data.decode('ascii')) child_flags, grandchild_flags = json.loads(data.decode('ascii'))
self.assertEqual(child_flags, grandchild_flags) self.assertEqual(child_flags, grandchild_flags)
# #
......
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