Issue #23606: Temporarily suppress test for CRT name.

This commit is contained in:
Steve Dower 2015-03-14 11:48:44 -07:00
parent 9aa31d5479
commit a2a9df9240
1 changed files with 3 additions and 1 deletions

View 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"))