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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0d93a234790d86a67c592c226070f8a6bf6ba300;p=thirdparty%2FPython%2Fcpython.git Try to fix test_loading on openbsd. --- diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 37acf55fbc66..84e54e17bd11 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"