From a2a9df9240ba695507afcc1d0835e1ede65a6077 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Sat, 14 Mar 2015 11:48:44 -0700 Subject: Issue #23606: Temporarily suppress test for CRT name. --- Lib/ctypes/test/test_loading.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 4fb8964..28468c1 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")) -- cgit v0.12