summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dl.py
blob: dcc3ec289f93f382d33e547e41e2a76eb7b65241 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /usr/bin/env python
"""Test dlmodule.c
   Roger E. Masse  revised strategy by Barry Warsaw
"""
verbose = 0
if __name__ == '__main__':
    verbose = 1

import dl

sharedlibs = [
    # SunOS/Solaris
    ('/usr/lib/libresolv.so', 'gethostent'),
    ]

for s, func in sharedlibs:
    try:
	if verbose:
	    print 'trying to open:', s,
	l = dl.open(s)
    except dl.error:
	if verbose:
	    print 'failed'
	pass
    else:
	if verbose:
	    print 'succeeded...',
	l.call(func)
	l.close()
	if verbose:
	    print 'worked!'
	break
else:
    print 'Could not open any shared libraries'