diff options
author | Guido van Rossum <guido@python.org> | 1997-04-09 20:57:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-09 20:57:52 (GMT) |
commit | a6ed2254e12458418bfdc73f1c94a7151295335e (patch) | |
tree | 02c1de45c4b1366365fdd848471f272f4f2856ba /Lib/test/test_dl.py | |
parent | c9f8f1467ee67e43afdd00cff72643edeb2b37ba (diff) | |
download | cpython-a6ed2254e12458418bfdc73f1c94a7151295335e.zip cpython-a6ed2254e12458418bfdc73f1c94a7151295335e.tar.gz cpython-a6ed2254e12458418bfdc73f1c94a7151295335e.tar.bz2 |
Try calling getpid() from /usr/lib/libc.so instead of some other
random things.
Diffstat (limited to 'Lib/test/test_dl.py')
-rwxr-xr-x | Lib/test/test_dl.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_dl.py b/Lib/test/test_dl.py index e85bae9..029196d 100755 --- a/Lib/test/test_dl.py +++ b/Lib/test/test_dl.py @@ -7,10 +7,7 @@ import dl from test_support import verbose sharedlibs = [ - # SunOS/Solaris - ('/usr/lib/libresolv.so', 'gethostent'), - # SGI IRIX - ('/usr/lib/libm.so', 'sin'), + ('/usr/lib/libc.so', 'getpid'), ] for s, func in sharedlibs: |