summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-03-14 11:48:44 -0700
committerSteve Dower <steve.dower@microsoft.com>2015-03-14 11:48:44 -0700
commita2a9df9240ba695507afcc1d0835e1ede65a6077 (patch)
tree0862cab247507f982e5dd8df6ba63b29427f4616
parent9aa31d547920ead8cc52e861a1680f05d951c672 (diff)
downloadcpython-git-a2a9df9240ba695507afcc1d0835e1ede65a6077.tar.gz
Issue #23606: Temporarily suppress test for CRT name.
-rw-r--r--Lib/ctypes/test/test_loading.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py
index 4fb89642e1..28468c1cd3 100644
--- a/Lib/ctypes/test/test_loading.py
+++ b/Lib/ctypes/test/test_loading.py
@@ -52,7 +52,9 @@ class LoaderTest(unittest.TestCase):
@unittest.skipUnless(os.name in ("nt", "ce"),
'test specific to Windows (NT/CE)')
def test_load_library(self):
- self.assertIsNotNone(libc_name)
+ # CRT is no longer directly loadable. See issue23606 for the
+ # discussion about alternative approaches.
+ #self.assertIsNotNone(libc_name)
if test.support.verbose:
print(find_library("kernel32"))
print(find_library("user32"))