summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dl.py
blob: 029196da4b7006646a1d6fb4718cafcc64dfc584 (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
#! /usr/bin/env python
"""Test dlmodule.c
   Roger E. Masse  revised strategy by Barry Warsaw
"""

import dl
from test_support import verbose

sharedlibs = [
    ('/usr/lib/libc.so', 'getpid'),
    ]

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'