Skip to content

Commit 7082899

Browse files
committed
Fix test_zippath_from_non_installed_posix
When build with shared enabled, we need to set `LD_LIBRARY_PATH` for the non-installed python environment in test_zippath_from_non_installed_posix so that the python binary and find and link the libpython.so.
1 parent 65dd745 commit 7082899

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Lib/test/test_venv.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,17 @@ def test_zippath_from_non_installed_posix(self):
590590
# venv module correctly.
591591
pythonpath = os.pathsep.join(
592592
additional_pythonpath_for_non_installed)
593-
subprocess.check_call(cmd, env={"PYTHONPATH": pythonpath})
593+
# For python built with shared enabled. We need to set
594+
# LD_LIBRARY_PATH so the non-installed python can find and link
595+
# libpython.so
596+
ld_library_path = os.path.abspath(os.path.dirname(sys.executable))
597+
if sys.platform == 'darwin':
598+
ld_library_path_env = "DYLD_LIBRARY_PATH"
599+
else:
600+
ld_library_path_env = "LD_LIBRARY_PATH"
601+
subprocess.check_call(cmd,
602+
env={"PYTHONPATH": pythonpath,
603+
ld_library_path_env: ld_library_path})
594604
envpy = os.path.join(self.env_dir, self.bindir, self.exe)
595605
# Now check the venv created from the non-installed python has
596606
# correct zip path in pythonpath.

0 commit comments

Comments
 (0)