mirror of
https://github.com/python/cpython.git
synced 2025-09-15 21:26:04 +00:00
One test still fails on the ia64 debian box.
This commit is contained in:
parent
3b1c01d4b6
commit
fb8f83b33f
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class LoaderTest(unittest.TestCase):
|
|||
cdll.load(os.path.basename(libc_name))
|
||||
self.assertRaises(OSError, cdll.load, self.unknowndll)
|
||||
|
||||
if libc_name is not None and "libc.so.6" in libc_name:
|
||||
if libc_name is not None and os.path.basename(libc_name) == "libc.so.6":
|
||||
def test_load_version(self):
|
||||
cdll.load_version("c", "6")
|
||||
# linux uses version, libc 9 should not exist
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue