summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-21 18:24:33 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-12-21 18:24:33 (GMT)
commite0436bcb24e266b9391c7fd866224adcb33c5d34 (patch)
tree09f0c754395812edf7c4568dc3dd6f51b0af0673 /Lib/test
parent73a559d0c9918671ec0cc86afc8cc831a5dd47cc (diff)
downloadcpython-e0436bcb24e266b9391c7fd866224adcb33c5d34.zip
cpython-e0436bcb24e266b9391c7fd866224adcb33c5d34.tar.gz
cpython-e0436bcb24e266b9391c7fd866224adcb33c5d34.tar.bz2
Make test_compileall more robust by using -S to keep sys.path minimized.
Try this again, hopefully the right way this time. Arfrever Taifersar Arahesis reported that test_compileall failed during Gentoo install because it was tyring to write .pyc files to a read-only system directory during test_no_args_compiles_path. Having the tests call python with -S should eliminate the system directories from the path.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_compileall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py
index 3f333a5..295dc40 100644
--- a/Lib/test/test_compileall.py
+++ b/Lib/test/test_compileall.py
@@ -126,13 +126,13 @@ class CommandLineTests(unittest.TestCase):
def assertRunOK(self, *args, **env_vars):
rc, out, err = script_helper.assert_python_ok(
- '-m', 'compileall', *args, **env_vars)
+ '-S', '-m', 'compileall', *args, **env_vars)
self.assertEqual(b'', err)
return out
def assertRunNotOK(self, *args, **env_vars):
rc, out, err = script_helper.assert_python_failure(
- '-m', 'compileall', *args, **env_vars)
+ '-S', '-m', 'compileall', *args, **env_vars)
return rc, out, err
def assertCompiled(self, fn):