5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License (the "License").
7 # You may not use this file except in compliance with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # This test verifies that USDT providers are removed when its associated
30 # load object is closed via dlclose(3dl).
34 echo expected one argument
: '<'dtrace-path
'>'
45 all: main livelib.so deadlib.so
48 gcc -m32 -o main main.o
54 livelib.so: livelib.o prov.o
55 gcc -m32 -shared -o livelib.so livelib.o prov.o -lc
57 livelib.o: livelib.c prov.h
58 gcc -m32 -fPIC -c livelib.c
60 prov.o: livelib.o prov.d
61 $dtrace -G -s prov.d livelib.o
68 gcc -m32 -shared -o deadlib.so deadlib.o -lc
71 gcc -m32 -fPIC -c deadlib.c
74 rm -f main.o livelib.o prov.o prov.h deadlib.o
77 rm -f main livelib.so deadlib.so
110 main(int argc, char **argv)
114 if ((live = dlopen("./livelib.so", RTLD_LAZY | RTLD_LOCAL)) == NULL) {
115 printf("dlopen of livelib.so failed: %s\n", dlerror());
119 (void) dlclose(live);
128 if [ $?
-ne 0 ]; then
129 print
-u2 "failed to build"
134 $dtrace -w -x bufsize
=1k
-c .
/main
-qs /dev
/stdin
<<EOF
138 system("$dtrace -l -P test_prov*");
139 system("kill %d", \$target);