]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceProvider
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / cddl / contrib / opensolaris / cmd / dtrace / test / tst / common / dtraceUtil / man.TraceProvider
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 2006 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26
27 #pragma ident   "%Z%%M% %I%     %E% SMI"
28
29 /*
30  * ASSERTION:
31  * Using -P option to trace all the probes provided by the particular
32  * provider.
33  *
34  * SECTION: dtrace Utility/-P Option
35  *
36  * NOTES: Manually check:
37  *
38  * 1)
39  * /usr/sbin/dtrace -P profile
40  * RESULT: Trace of all profile probes.
41  *
42  * 2) automated in tst.InvalidTraceProvider1.d.ksh
43  * /usr/sbin/dtrace -P foofile
44  * RESULT: invalid probe specifier
45  *
46  * 3) automated in tst.InvalidTraceProvider2.d.ksh
47  * /usr/sbin/dtrace -P profile:::
48  * RESULT: invalid probe specifier
49  *
50  * 4) automated in tst.InvalidTraceProvider3.d.ksh
51  * /usr/sbin/dtrace -P profile:::profile-97
52  * RESULT: invalid probe specifier
53  *
54  * 5)
55  * /usr/sbin/dtrace -P profile -P syscall
56  * RESULT: matching traces of both profile and syscall probes.
57  *
58  * 6)
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.
62  *
63  * 7) automated in tst.InvalidTraceProvider4.d.ksh
64  * /usr/sbin/dtrace -P fbt:des:des3_crunch_block:return
65  * RESULT: invalid probe specifier
66  *
67  * 8)
68  * /usr/sbin/dtrace -P profile'{printf("FOUND");}'
69  * RESULT: Traces of all the matching profile probes with the
70  * FOUND message.
71  *
72  * 9) automated in tst.InvalidTraceProvider5.d.ksh
73  * /usr/sbin/dtrace -P profile '{printf("FOUND");}'
74  * RESULT: invalid probe specifier
75  *
76  * 10)
77  * /usr/sbin/dtrace -P
78  * profile'/probename == "profile-199"/{printf("FOUND");}'
79  * RESULT: Traces of the matching profile probe with the
80  * FOUND message.
81  *
82  *
83  */