tst.header.ksh revision 23b5c241225a8ade2b6b9f06ebb891ee459e3b02
1N/A#
1N/A# CDDL HEADER START
1N/A#
1N/A# The contents of this file are subject to the terms of the
1N/A# Common Development and Distribution License (the "License").
1N/A# You may not use this file except in compliance with the License.
1N/A#
1N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1N/A# or http://www.opensolaris.org/os/licensing.
1N/A# See the License for the specific language governing permissions
1N/A# and limitations under the License.
1N/A#
1N/A# When distributing Covered Code, include this CDDL HEADER in each
1N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1N/A# If applicable, add the following below this CDDL HEADER, with the
1N/A# fields enclosed by brackets "[]" replaced with your own identifying
1N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1N/A#
1N/A# CDDL HEADER END
1N/A#
1N/A
1N/A#
1N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
1N/A# Use is subject to license terms.
1N/A#
1N/A#ident "%Z%%M% %I% %E% SMI"
1N/A
1N/Aif [ $# != 1 ]; then
1N/A echo expected one argument: '<'dtrace-path'>'
1N/A exit 2
1N/Afi
1N/A
1N/Adtrace=$1
1N/ADIR=/var/tmp/dtest.$$
1N/A
1N/Amkdir $DIR
cd $DIR
cat > prov.d <<EOF
provider test_prov {
probe zero();
probe one(uintptr_t);
probe u_nder(char *);
probe d__ash(int **);
};
EOF
$dtrace -h -s prov.d
if [ $? -ne 0 ]; then
print -u2 "failed to generate header file"
exit 1
fi
cat > test.c <<EOF
#include <sys/types.h>
#include "prov.h"
int
main(int argc, char **argv)
{
TEST_PROV_ZERO();
TEST_PROV_ONE(1);
TEST_PROV_U_NDER("hi there");
TEST_PROV_D_ASH(argv);
}
EOF
cc -c test.c
if [ $? -ne 0 ]; then
print -u2 "failed to compile test.c"
exit 1
fi
$dtrace -G -32 -s prov.d test.o
if [ $? -ne 0 ]; then
print -u2 "failed to create DOF"
exit 1
fi
cc -o test test.o prov.o
if [ $? -ne 0 ]; then
print -u2 "failed to link final executable"
exit 1
fi
cd /
/usr/bin/rm -rf $DIR