[Python-checkins] r43462 - python/trunk/Lib/ctypes/test/test_loading.py

thomas.heller python-checkins at python.org
Thu Mar 30 21:16:15 CEST 2006


Author: thomas.heller
Date: Thu Mar 30 21:16:15 2006
New Revision: 43462

Modified:
   python/trunk/Lib/ctypes/test/test_loading.py
Log:
Try to fix test_loading on openbsd.

Modified: python/trunk/Lib/ctypes/test/test_loading.py
==============================================================================
--- python/trunk/Lib/ctypes/test/test_loading.py	(original)
+++ python/trunk/Lib/ctypes/test/test_loading.py	Thu Mar 30 21:16:15 2006
@@ -17,7 +17,7 @@
             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"


More information about the Python-checkins mailing list