summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-03 06:52:43 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-03 06:52:43 (GMT)
commitb0b20a10bccfada2facab090a5f663028c0a8c50 (patch)
treec81650d8b4affcefd698a511ba04256f35eb1b8a /Lib/ctypes/test
parentcbce280d4f3f1c4d86a989ab85c93f13ec7e00f9 (diff)
downloadcpython-b0b20a10bccfada2facab090a5f663028c0a8c50.zip
cpython-b0b20a10bccfada2facab090a5f663028c0a8c50.tar.gz
cpython-b0b20a10bccfada2facab090a5f663028c0a8c50.tar.bz2
Get ctypes loader working on OSF1 (Tru64)
Diffstat (limited to 'Lib/ctypes/test')
-rw-r--r--Lib/ctypes/test/test_loading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ctypes/test/test_loading.py b/Lib/ctypes/test/test_loading.py
index 84e54e1..dd2886c 100644
--- a/Lib/ctypes/test/test_loading.py
+++ b/Lib/ctypes/test/test_loading.py
@@ -15,7 +15,7 @@ class LoaderTest(unittest.TestCase):
name = "libc.dylib"
elif sys.platform.startswith("freebsd"):
name = "libc.so"
- elif sys.platform == "sunos5":
+ elif sys.platform in ("sunos5", "osf1V5"):
name = "libc.so"
elif sys.platform.startswith("netbsd") or sys.platform.startswith("openbsd"):
name = "libc.so"