]> granicus.if.org Git - python/commitdiff
Try calling getpid() from /usr/lib/libc.so instead of some other
authorGuido van Rossum <guido@python.org>
Wed, 9 Apr 1997 20:57:52 +0000 (20:57 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 9 Apr 1997 20:57:52 +0000 (20:57 +0000)
random things.

Lib/test/test_dl.py

index e85bae92610ffcf4f44611f6808293ae4905257f..029196da4b7006646a1d6fb4718cafcc64dfc584 100755 (executable)
@@ -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: