mirror of
https://github.com/python/cpython.git
synced 2025-11-01 10:45:30 +00:00
Issue #23606: Temporarily suppress test for CRT name.
This commit is contained in:
parent
9aa31d5479
commit
a2a9df9240
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue