]> granicus.if.org Git - python/commitdiff
Issue #23606: Temporarily suppress test for CRT name.
authorSteve Dower <steve.dower@microsoft.com>
Sat, 14 Mar 2015 18:48:44 +0000 (11:48 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 14 Mar 2015 18:48:44 +0000 (11:48 -0700)
Lib/ctypes/test/test_loading.py

index 4fb89642e12a8b9012b71181d14cfd401adaf4bf..28468c1cd3d57bade7c95525f182ce20dc1a5aef 100644 (file)
@@ -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"))