Try calling getpid() from /usr/lib/libc.so instead of some other

random things.
This commit is contained in:
Guido van Rossum 1997-04-09 20:57:52 +00:00
parent c9f8f1467e
commit a6ed2254e1
1 changed files with 1 additions and 4 deletions

View File

@ -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: