1266989Smarkj#! /usr/bin/ksh
2266989Smarkj#
3266989Smarkj#
4266989Smarkj# This file and its contents are supplied under the terms of the
5266989Smarkj# Common Development and Distribution License ("CDDL"), version 1.0.
6266989Smarkj# You may only use this file in accordance with the terms of version
7266989Smarkj# 1.0 of the CDDL.
8266989Smarkj#
9266989Smarkj# A full copy of the text of the CDDL should have accompanied this
10266989Smarkj# source.  A copy of the CDDL is also available via the Internet at
11266989Smarkj# http://www.illumos.org/license/CDDL.
12266989Smarkj#
13266989Smarkj
14266989Smarkj#
15266989Smarkj# Copyright (c) 2013 Joyent, Inc. All rights reserved.
16266989Smarkj#
17266989Smarkj
18266989Smarkj#
19266989Smarkj# Here we want to make sure that the program in question does not have ctf data
20266989Smarkj# in its a.out; however, we can get types out of a linked libc.
21266989Smarkj#
22266989Smarkj
23266989Smarkjif [ $# != 1 ]; then
24266989Smarkj        echo expected one argument: '<'dtrace-path'>'
25266989Smarkj        exit 2
26266989Smarkjfi
27266989Smarkj
28266989Smarkjdtrace=$1
29266989Smarkjt="int"
30266989Smarkjexe="tst.libtype.exe"
31266989Smarkj
32266989Smarkjelfdump "./$exe" | grep -q '.SUNW_ctf' 
33266989Smarkjif [[ $? -eq 0 ]]; then
34266989Smarkj	echo "CTF exists in $exe, that's a bug" >&2
35266989Smarkj	exit 1
36266989Smarkjfi
37266989Smarkj
38266989Smarkj./$exe &
39266989Smarkjpid=$!
40266989Smarkj
41266989Smarkjrc=`$dtrace -n "BEGIN{ trace((pid$pid\`$t)0); exit(0); }"`
42266989Smarkj
43266989Smarkjkill -9 $pid
44266989Smarkj
45266989Smarkjexit $rc
46