# 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'), " +