From ac19d9652799412404aef6b357a01057df34e005 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Sat, 30 Mar 2019 17:14:46 -0700 Subject: [PATCH] bpo-36085: Add additional load flag to ensure DLL loads successfully (GH-12633) --- Lib/ctypes/test/test_loading.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index be367c6fa35245..9b97d80086044d 100644 --- a/Lib/ctypes/test/test_loading.py +++ b/Lib/ctypes/test/test_loading.py @@ -167,7 +167,8 @@ def should_fail(command): # Full path load with DLL_LOAD_DIR should succeed should_pass("WinDLL(nt._getfullpathname('_sqlite3.dll'), " + - "winmode=nt._LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR)") + "winmode=nt._LOAD_LIBRARY_SEARCH_SYSTEM32|" + + "nt._LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR)") # User-specified directory should succeed should_pass("import os; p = os.add_dll_directory(os.getcwd());" +