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.
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.
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]
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
31 * Using -P option to trace all the probes provided by the particular
34 * SECTION: dtrace Utility/-P Option
36 * NOTES: Manually check:
39 * /usr/sbin/dtrace -P profile
40 * RESULT: Trace of all profile probes.
42 * 2) automated in tst.InvalidTraceProvider1.d.ksh
43 * /usr/sbin/dtrace -P foofile
44 * RESULT: invalid probe specifier
46 * 3) automated in tst.InvalidTraceProvider2.d.ksh
47 * /usr/sbin/dtrace -P profile:::
48 * RESULT: invalid probe specifier
50 * 4) automated in tst.InvalidTraceProvider3.d.ksh
51 * /usr/sbin/dtrace -P profile:::profile-97
52 * RESULT: invalid probe specifier
55 * /usr/sbin/dtrace -P profile -P syscall
56 * RESULT: matching traces of both profile and syscall probes.
59 * /usr/sbin/dtrace -P profile -P foofile
60 * RESULT: Count of profile probes that matched and invalid
61 * probe specifier for foofile and no tracing.
63 * 7) automated in tst.InvalidTraceProvider4.d.ksh
64 * /usr/sbin/dtrace -P fbt:des:des3_crunch_block:return
65 * RESULT: invalid probe specifier
68 * /usr/sbin/dtrace -P profile'{printf("FOUND");}'
69 * RESULT: Traces of all the matching profile probes with the
72 * 9) automated in tst.InvalidTraceProvider5.d.ksh
73 * /usr/sbin/dtrace -P profile '{printf("FOUND");}'
74 * RESULT: invalid probe specifier
78 * profile'/probename == "profile-199"/{printf("FOUND");}'
79 * RESULT: Traces of the matching profile probe with the