mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-38234: Fix test_embed.test_init_setpath_config() on FreeBSD (GH-16406)
Explicitly preinitializes with a Python preconfiguration to avoid Py_SetPath() implicit preinitialization with a compat preconfiguration. Fix also test_init_setpath() and test_init_setpythonhome() on macOS: use self.test_exe as the executable (and base_executable), rather than shutil.which('python3').
This commit is contained in:
parent
88feaecd46
commit
49d99f01e6
2 changed files with 17 additions and 8 deletions
|
@ -15,6 +15,7 @@ import textwrap
|
|||
|
||||
|
||||
MS_WINDOWS = (os.name == 'nt')
|
||||
MACOS = (sys.platform == 'darwin')
|
||||
|
||||
PYMEM_ALLOCATOR_NOT_SET = 0
|
||||
PYMEM_ALLOCATOR_DEBUG = 2
|
||||
|
@ -1011,7 +1012,10 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
|
|||
executable = self.test_exe
|
||||
else:
|
||||
program_name = 'python3'
|
||||
executable = shutil.which(program_name) or ''
|
||||
if MACOS:
|
||||
executable = self.test_exe
|
||||
else:
|
||||
executable = shutil.which(program_name) or ''
|
||||
config.update({
|
||||
'program_name': program_name,
|
||||
'base_executable': executable,
|
||||
|
@ -1054,13 +1058,8 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase):
|
|||
'executable': 'conf_executable',
|
||||
}
|
||||
env = {'TESTPATH': os.path.pathsep.join(paths)}
|
||||
# Py_SetPath() preinitialized Python using the compat API,
|
||||
# so we need preconfig_api=API_COMPAT.
|
||||
self.check_all_configs("test_init_setpath_config", config,
|
||||
api=API_PYTHON,
|
||||
preconfig_api=API_COMPAT,
|
||||
env=env,
|
||||
ignore_stderr=True)
|
||||
api=API_PYTHON, env=env, ignore_stderr=True)
|
||||
|
||||
def module_search_paths(self, prefix=None, exec_prefix=None):
|
||||
config = self._get_expected_config()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue