diff options
author | Thomas Heller <theller@ctypes.org> | 2006-03-30 19:16:15 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-03-30 19:16:15 (GMT) |
commit | 0d93a234790d86a67c592c226070f8a6bf6ba300 (patch) | |
tree | 168ee9c67fc104d0a5a1b593022d8b1e52590d05 /Lib | |
parent | 300269ae6fdacd242b4d5e31552fb5b663920713 (diff) | |
download | cpython-0d93a234790d86a67c592c226070f8a6bf6ba300.zip cpython-0d93a234790d86a67c592c226070f8a6bf6ba300.tar.gz cpython-0d93a234790d86a67c592c226070f8a6bf6ba300.tar.bz2 |
Try to fix test_loading on openbsd.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ctypes/test/test_loading.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py index 37acf55..84e54e1 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" |