From 0b465702e625b3bce8de7c356fe2ff6cb47d165c Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Mon, 19 Jun 2006 07:07:49 +0000 Subject: [PATCH] Try to repair the failing test on the OpenBSD buildbot. Trial and error... --- 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 45585ae54a..4841034a84 100644 --- a/Lib/ctypes/test/test_loading.py +++ b/Lib/ctypes/test/test_loading.py @@ -16,7 +16,7 @@ elif sys.platform == "cygwin": else: for line in os.popen("ldd %s" % sys.executable): if "libc.so" in line: - if sys.platform == "openbsd3": + if sys.platform.startswith("openbsd3"): libc_name = line.split()[4] else: libc_name = line.split()[2] -- 2.50.0