tst.static2.ksh revision 211545
10Sstevel@tonic-gate#
20Sstevel@tonic-gate# CDDL HEADER START
30Sstevel@tonic-gate#
40Sstevel@tonic-gate# The contents of this file are subject to the terms of the
50Sstevel@tonic-gate# Common Development and Distribution License (the "License").
60Sstevel@tonic-gate# You may not use this file except in compliance with the License.
70Sstevel@tonic-gate#
80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate# See the License for the specific language governing permissions
110Sstevel@tonic-gate# and limitations under the License.
120Sstevel@tonic-gate#
130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate#
190Sstevel@tonic-gate# CDDL HEADER END
200Sstevel@tonic-gate#
210Sstevel@tonic-gate
220Sstevel@tonic-gate#
230Sstevel@tonic-gate# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
240Sstevel@tonic-gate# Use is subject to license terms.
250Sstevel@tonic-gate#
260Sstevel@tonic-gate#ident	"%Z%%M%	%I%	%E% SMI"
27
28# Rebuilding an object file containing DOF changes slightly when the object
29# files containing the probes have already been modified. This tests that
30# case by generating the DOF object, removing it, and building it again.
31
32if [ $# != 1 ]; then
33	echo expected one argument: '<'dtrace-path'>'
34	exit 2
35fi
36
37dtrace=$1
38DIR=/var/tmp/dtest.$$
39
40mkdir $DIR
41cd $DIR
42
43cat > test.c <<EOF
44#include <unistd.h>
45#include <sys/sdt.h>
46
47static void
48foo(void)
49{
50	DTRACE_PROBE(test_prov, probe1);
51	DTRACE_PROBE(test_prov, probe2);
52}
53
54int
55main(int argc, char **argv)
56{
57	DTRACE_PROBE(test_prov, probe1);
58	DTRACE_PROBE(test_prov, probe2);
59	foo();
60}
61EOF
62
63cat > prov.d <<EOF
64provider test_prov {
65	probe probe1();
66	probe probe2();
67};
68EOF
69
70cc -c test.c
71if [ $? -ne 0 ]; then
72	print -u2 "failed to compile test.c"
73	exit 1
74fi
75$dtrace -G -32 -s prov.d test.o
76if [ $? -ne 0 ]; then
77	print -u2 "failed to create initial DOF"
78	exit 1
79fi
80rm -f prov.o
81$dtrace -G -32 -s prov.d test.o
82if [ $? -ne 0 ]; then
83	print -u2 "failed to create final DOF"
84	exit 1
85fi
86cc -o test test.o prov.o
87if [ $? -ne 0 ]; then
88	print -u2 "failed to link final executable"
89	exit 1
90fi
91
92script()
93{
94	$dtrace -c ./test -qs /dev/stdin <<EOF
95	test_prov\$target:::
96	{
97		printf("%s:%s:%s\n", probemod, probefunc, probename);
98	}
99EOF
100}
101
102script
103status=$?
104
105cd /
106/bin/rm -rf $DIR
107
108exit $status
109