xref: /illumos-gate/usr/src/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithProviders (revision b30d193948be5a7794d7ae3ba0ed9c2f72c88e0f)
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 -l option with -P option.
32 *
33 * SECTION: dtrace Utility/-l Option;
34 * 	dtrace Utility/-P Option
35 *
36 * NOTES: Manually check:
37 *
38 * 1)
39 * /usr/sbin/dtrace -lP profile
40 * RESULT: List of only profile probes.
41 *
42 * 2)
43 * /usr/sbin/dtrace -lP foofile
44 * RESULT: Silent output without any probes listed.
45 *
46 * 3) automated in tst.InvalidProvider2.d.ksh
47 * /usr/sbin/dtrace -lP profile:::
48 * RESULT: not a valid probe description
49 *
50 * 4) automated in tst.InvalidProvider1.d.ksh
51 * /usr/sbin/dtrace -lP profile:::profile-97
52 * RESULT: not a valid probe description.
53 *
54 * 5)
55 * /usr/sbin/dtrace -lP profile -lP syscall
56 * RESULT: matching list of both profile and syscall probes.
57 *
58 * 6)
59 * /usr/sbin/dtrace -lP profile -lP foofile
60 * RESULT: List of only profile probes.
61 *
62 * 7)
63 * /usr/sbin/dtrace -lP foofile -lP profile
64 * RESULT: List of only profile probes.
65 *
66 * 8) authomated in tst.InvalidProvider3.d.ksh
67 * /usr/sbin/dtrace -lP fbt:des:des3_crunch_block:return
68 * RESULT: not a valid probe description.
69 *
70 * 9)
71 * /usr/sbin/dtrace -lP profile'{printf("FOUND");}'
72 * RESULT: Silent output without any probes listed.
73 *
74 * 10)
75 * /usr/sbin/dtrace -lP profile '{printf("FOUND");}'
76 * RESULT: List of only profile probes.
77 *
78 * 11) automated in tst.InvalidProvider4.d.ksh
79 * /usr/sbin/dtrace -lP
80 * profile'/probename == "profile-199"/{printf("FOUND");}'
81 * RESULT: not a valid probe description.
82 */
83