Commit 5178bacb authored by Thomas Heller's avatar Thomas Heller

One test still fails on the ia64 debian box.

parent bf68a8bd
...@@ -31,7 +31,7 @@ class LoaderTest(unittest.TestCase): ...@@ -31,7 +31,7 @@ class LoaderTest(unittest.TestCase):
cdll.load(os.path.basename(libc_name)) cdll.load(os.path.basename(libc_name))
self.assertRaises(OSError, cdll.load, self.unknowndll) 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): def test_load_version(self):
cdll.load_version("c", "6") cdll.load_version("c", "6")
# linux uses version, libc 9 should not exist # linux uses version, libc 9 should not exist
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment