]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/proc/tst.exitcore.ksh
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / cddl / contrib / opensolaris / cmd / dtrace / test / tst / common / proc / tst.exitcore.ksh
1 #
2 # CDDL HEADER START
3 #
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.
7 #
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.
12 #
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]
18 #
19 # CDDL HEADER END
20 #
21
22 #
23 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
25 #
26 # ident "%Z%%M% %I%     %E% SMI"
27
28 #
29 # This script tests that the proc:::exit probe fires with the correct argument
30 # when the process core dumps.  The problematic bit here is making sure that
31 # a process _can_ dump core -- if core dumps are disabled on both a global
32 # and per-process basis, this test will fail.  Rather than having this test
33 # muck with coreadm(1M) settings, it will fail explicitly in this case and
34 # provide a hint as to the problem.  In general, machines should never be
35 # running with both per-process and global core dumps disabled -- so this
36 # should be a non-issue in practice.
37 #
38 # If this fails, the script will run indefinitely; it relies on the harness
39 # to time it out.
40 #
41 script()
42 {
43         $dtrace -s /dev/stdin <<EOF
44         proc:::exit
45         /curpsinfo->pr_ppid == $child &&
46             execargs == "$longsleep" && args[0] == CLD_DUMPED/
47         {
48                 exit(0);
49         }
50
51         proc:::exit
52         /curpsinfo->pr_ppid == $child &&
53             execargs == "$longsleep" && args[0] != CLD_DUMPED/
54         {
55                 printf("Child process could did dump core.");
56                 exit(1);
57         }
58 EOF
59 }
60
61 sleeper()
62 {
63         while true; do
64                 $longsleep &
65                 /bin/sleep 1
66                 kill -SEGV $!
67         done
68         /bin/rm -f $corefile
69 }
70
71 if [ $# != 1 ]; then
72         echo expected one argument: '<'dtrace-path'>'
73         exit 2
74 fi
75
76 dtrace=$1
77 longsleep="/bin/sleep 10000"
78 corefile=/tmp/sleep.core
79
80 sleeper &
81 child=$!
82
83 script
84 status=$?
85
86 #pstop $child
87 #pkill -P $child
88 kill $child
89 #prun $child
90
91 /bin/rm -f $corefile
92 exit $status