From 0d93a234790d86a67c592c226070f8a6bf6ba300 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Thu, 30 Mar 2006 19:16:15 +0000 Subject: [PATCH] Try to fix test_loading on openbsd. --- Lib/ctypes/test/test_loading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.50.1