From: Steve Dower Date: Sat, 14 Mar 2015 18:48:44 +0000 (-0700) Subject: Issue #23606: Temporarily suppress test for CRT name. X-Git-Tag: v3.5.0a3~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a2a9df9240ba695507afcc1d0835e1ede65a6077;p=python Issue #23606: Temporarily suppress test for CRT name. --- 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"))