]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.ListProbesWithIDs
MFC r368207,368607:
[FreeBSD/stable/10.git] / cddl / contrib / opensolaris / cmd / dtrace / test / tst / common / dtraceUtil / man.ListProbesWithIDs
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 -i option.
32  *
33  * SECTION: dtrace Utility/-l Option;
34  *      dtrace Utility/-i Option
35  *
36  * NOTES: Manually check:
37  *
38  * 1)
39  * /usr/sbin/dtrace -l
40  * RESULT: List of all available probes.
41  *
42  * 2)
43  * /usr/sbin/dtrace -li 0
44  * RESULT: invalid probe identifier 0.
45  *
46  * 3) automated in tst.InvalidId1.d.ksh
47  * /usr/sbin/dtrace -li -3
48  * RESULT: not a valid id range
49  *
50  * 4)
51  * /usr/sbin/dtrace -li 0-2
52  * RESULT: List of probes including 1 and 2 or error.
53  *
54  * 5) automated in tst.InvalidId2.d.ksh
55  * /usr/sbin/dtrace -li 4-2
56  * RESULT: not a valid id range
57  *
58  * 6) automated in tst.InvalidId3.d.ksh
59  * /usr/sbin/dtrace -li 2-2
60  * RESULT: not a valid id range
61  *
62  * 7)
63  * /usr/sbin/dtrace -li 1 2 3 4
64  * RESULT: only the first probe id is listed and other extraneous
65  * charaters are not considered.
66  *
67  * 8)
68  * /usr/sbin/dtrace -li 0 - 2
69  * RESULT: only the first probe id is listed and other extraneous
70  * charaters are not considered.
71  *
72  * 9)
73  * /usr/sbin/dtrace -li 1 -li 2-4 -li 4 -li 5
74  * RESULT: Probe descriptions listed for all ids specified. Once
75  * for each specification on the command line.
76  *
77  */