8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / dtrace / test / tst / common / usdt / tst.static2.ksh
blob162074501c3b201b4a9981939485ba570e5f6fce
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
23 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
27 # Rebuilding an object file containing DOF changes slightly when the object
28 # files containing the probes have already been modified. This tests that
29 # case by generating the DOF object, removing it, and building it again.
31 if [ $# != 1 ]; then
32 echo expected one argument: '<'dtrace-path'>'
33 exit 2
36 dtrace=$1
37 DIR=/var/tmp/dtest.$$
39 mkdir $DIR
40 cd $DIR
42 cat > test.c <<EOF
43 #include <unistd.h>
44 #include <sys/sdt.h>
46 static void
47 foo(void)
49 DTRACE_PROBE(test_prov, probe1);
50 DTRACE_PROBE(test_prov, probe2);
53 int
54 main(int argc, char **argv)
56 DTRACE_PROBE(test_prov, probe1);
57 DTRACE_PROBE(test_prov, probe2);
58 foo();
60 EOF
62 cat > prov.d <<EOF
63 provider test_prov {
64 probe probe1();
65 probe probe2();
67 EOF
69 gcc -m32 -c test.c
70 if [ $? -ne 0 ]; then
71 print -u2 "failed to compile test.c"
72 exit 1
74 $dtrace -G -32 -s prov.d test.o
75 if [ $? -ne 0 ]; then
76 print -u2 "failed to create initial DOF"
77 exit 1
79 rm -f prov.o
80 $dtrace -G -32 -s prov.d test.o
81 if [ $? -ne 0 ]; then
82 print -u2 "failed to create final DOF"
83 exit 1
85 gcc -m32 -o test test.o prov.o
86 if [ $? -ne 0 ]; then
87 print -u2 "failed to link final executable"
88 exit 1
91 script()
93 $dtrace -c ./test -qs /dev/stdin <<EOF
94 test_prov\$target:::
96 printf("%s:%s:%s\n", probemod, probefunc, probename);
98 EOF
101 script
102 status=$?
104 cd /
105 /usr/bin/rm -rf $DIR
107 exit $status