Skip to content

Commit 1bb38f1

Browse files
committed
ignore the dyld_library_path envvar we add on macos
1 parent bef234d commit 1bb38f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/lib-python/3/test/test_subprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ def is_env_var_to_ignore(n):
788788
n == 'LD_PRELOAD' or n.startswith('SANDBOX') or # Gentoo
789789
n == 'PWD' or n == 'SHLVL' or # Graalpython bash launcher
790790
n.startswith('JAVA_MAIN_CLASS') or # JVM on MacOS
791-
n == 'LD_LIBRARY_PATH' or # Added by graalpy launcher
791+
n == 'LD_LIBRARY_PATH' or n == 'DYLD_LIBRARY_PATH' or # Added by graalpy launcher
792792
n == 'LC_CTYPE') # Locale coercion triggered
793793

794794
with subprocess.Popen([sys.executable, "-c",

0 commit comments

Comments
 (0)