summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dl.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-02-27 20:54:23 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-02-27 20:54:23 (GMT)
commit6efc6e783247f54e4dd3b4297a0a7d2bc654a141 (patch)
tree44e8bde777ed899f2589e8ceaa118c0d7b060e60 /Lib/test/test_dl.py
parent5941d191deaf2a0c8eab5ce75316067ed16dfb1a (diff)
downloadcpython-6efc6e783247f54e4dd3b4297a0a7d2bc654a141.zip
cpython-6efc6e783247f54e4dd3b4297a0a7d2bc654a141.tar.gz
cpython-6efc6e783247f54e4dd3b4297a0a7d2bc654a141.tar.bz2
Patch #404680: disables the nis module and enables the dl module when
building under Cygwin. Makes some fixes to the dlmodule in order to compile with Cygwin.
Diffstat (limited to 'Lib/test/test_dl.py')
-rwxr-xr-xLib/test/test_dl.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py
index 60a5cf0..390dbd8 100755
--- a/Lib/test/test_dl.py
+++ b/Lib/test/test_dl.py
@@ -9,6 +9,7 @@ from test_support import verbose,TestSkipped
sharedlibs = [
('/usr/lib/libc.so', 'getpid'),
('/lib/libc.so.6', 'getpid'),
+ ('/usr/bin/cygwin1.dll', 'getpid'),
]
for s, func in sharedlibs: