mirror of https://github.com/python/cpython
Fix test_sysconfig when run from a Python installed under /site (#10086).
Patch by Hallvard B Furuseth.
This commit is contained in:
parent
3d7f236329
commit
a971df3cd5
|
@ -255,14 +255,14 @@ class TestSysConfig(unittest.TestCase):
|
||||||
unlink(link)
|
unlink(link)
|
||||||
|
|
||||||
def test_user_similar(self):
|
def test_user_similar(self):
|
||||||
# Issue 8759 : make sure the posix scheme for the users
|
# Issue #8759: make sure the posix scheme for the users
|
||||||
# is similar to the global posix_prefix one
|
# is similar to the global posix_prefix one
|
||||||
base = get_config_var('base')
|
base = get_config_var('base')
|
||||||
user = get_config_var('userbase')
|
user = get_config_var('userbase')
|
||||||
for name in ('stdlib', 'platstdlib', 'purelib', 'platlib'):
|
for name in ('stdlib', 'platstdlib', 'purelib', 'platlib'):
|
||||||
global_path = get_path(name, 'posix_prefix')
|
global_path = get_path(name, 'posix_prefix')
|
||||||
user_path = get_path(name, 'posix_user')
|
user_path = get_path(name, 'posix_user')
|
||||||
self.assertEqual(user_path, global_path.replace(base, user))
|
self.assertEqual(user_path, global_path.replace(base, user, 1))
|
||||||
|
|
||||||
@unittest.skipUnless(sys.platform == "darwin", "test only relevant on MacOSX")
|
@unittest.skipUnless(sys.platform == "darwin", "test only relevant on MacOSX")
|
||||||
def test_platform_in_subprocess(self):
|
def test_platform_in_subprocess(self):
|
||||||
|
|
Loading…
Reference in New Issue