1#!/bin/ksh -p 2# 3# CDDL HEADER START 4# 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. 8# 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. 13# 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] 19# 20# CDDL HEADER END 21# 22 23# 24# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 25# Use is subject to license terms. 26# 27 28#ident "%Z%%M% %I% %E% SMI" 29 30## 31# 32# ASSERTION: 33# The -I option can be used to search path for #include files when used 34# in conjunction with the -C option. The specified directory is inserted into 35# the search path adhead of the default directory list. 36# 37# SECTION: dtrace Utility/-C Option 38# SECTION: dtrace Utility/-I Option 39# 40## 41 42script() 43{ 44 $dtrace -C -I /tmp -s /dev/stdin <<EOF 45 #pragma D option quiet 46#include "test.h" 47 48 BEGIN 49 /1520 != VALUE/ 50 { 51 printf("VALUE: %d, Test should fail\n", VALUE); 52 exit(1); 53 } 54 55 BEGIN 56 /1520 == VALUE/ 57 { 58 printf("VALUE: %d, Test should pass\n", VALUE); 59 exit(0); 60 } 61EOF 62} 63 64if [ $# != 1 ]; then 65 echo expected one argument: '<'dtrace-path'>' 66 exit 2 67fi 68 69tempfile=/tmp/test.h 70echo "#define VALUE 1520" > $tempfile 71 72dtrace=$1 73script 74status=$? 75 76if [ "$status" -ne 0 ]; then 77 echo $tst: dtrace failed 78 exit $status 79fi 80 81/usr/bin/rm -f $tempfile 82exit 0 83