mirror of https://github.com/python/cpython
Issue #23606: Temporarily suppress test for CRT name.
This commit is contained in:
parent
9aa31d5479
commit
a2a9df9240
|
@ -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"))
|
||||
|
|
Loading…
Reference in New Issue