From: Thomas Heller Date: Thu, 30 Mar 2006 19:16:15 +0000 (+0000) Subject: Try to fix test_loading on openbsd. X-Git-Tag: v2.5a0~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d93a234790d86a67c592c226070f8a6bf6ba300;p=python Try to fix test_loading on openbsd. --- diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 37acf55fbc..84e54e17bd 100644 --- a/Lib/ctypes/test/test_loading.py +++ b/Lib/ctypes/test/test_loading.py @@ -17,7 +17,7 @@ class LoaderTest(unittest.TestCase): name = "libc.so" elif sys.platform == "sunos5": name = "libc.so" - elif sys.platform.startswith("netbsd"): + elif sys.platform.startswith("netbsd") or sys.platform.startswith("openbsd"): name = "libc.so" else: name = "libc.so.6"