diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-04-09 12:31:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 12:31:42 (GMT) |
commit | c83f003ee5398e9c27a0c634329420003d607d46 (patch) | |
tree | 9ee8b2443d8c7c31f91aa66fa7b22a9da17c1001 | |
parent | 37a257c0ae0d4ba746397ae7584db887b175ab24 (diff) | |
download | cpython-c83f003ee5398e9c27a0c634329420003d607d46.zip cpython-c83f003ee5398e9c27a0c634329420003d607d46.tar.gz cpython-c83f003ee5398e9c27a0c634329420003d607d46.tar.bz2 |
bpo-40214: Temporarily disable a ctypes test (GH-19404)
Only one particular sub-test of
ctypes.test.test_loading.test_load_dll_with_flags is disabled, which
caused failures on Azure Pipelines CI.
(cherry picked from commit f407e209c1e35b64835f73e7e7ca23e33817e9fe)
Co-authored-by: Zachary Ware <zach@python.org>
-rw-r--r-- | Lib/ctypes/test/test_loading.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 9b97d80..a62044e 100644 --- a/Lib/ctypes/test/test_loading.py +++ b/Lib/ctypes/test/test_loading.py @@ -158,8 +158,11 @@ class LoaderTest(unittest.TestCase): # Relative path (but not just filename) should succeed should_pass("WinDLL('./_sqlite3.dll')") - # Insecure load flags should succeed - should_pass("WinDLL('_sqlite3.dll', winmode=0)") + # XXX: This test has started failing on Azure Pipelines CI. See + # bpo-40214 for more information. + if 0: + # Insecure load flags should succeed + should_pass("WinDLL('_sqlite3.dll', winmode=0)") # Full path load without DLL_LOAD_DIR shouldn't find dependency should_fail("WinDLL(nt._getfullpathname('_sqlite3.dll'), " + |