]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/dtraceUtil/man.TraceIDs
- 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 / dtraceUtil / man.TraceIDs
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) automated in tst.InvalidTraceID1.d.ksh
39  * /usr/sbin/dtrace -i 0
40  * RESULT: invalid probe specifier.
41  *
42  * 2) automated in tst.InvalidTraceID2.d.ksh
43  * /usr/sbin/dtrace -i -3
44  * RESULT: not a valid id range
45  *
46  * 3) automated in tst.InvalidTraceID3.d.ksh
47  * /usr/sbin/dtrace -i 0-2
48  * RESULT: not a valid id range
49  *
50  * 4) automated in tst.InvalidTraceID4.d.ksh
51  * /usr/sbin/dtrace -i 4-2
52  * RESULT: not a valid id range
53  *
54  * 5) automated in tst.InvalidTraceID5.d.ksh
55  * /usr/sbin/dtrace -i 2-2
56  * RESULT: not a valid id range
57  *
58  * 6) automated in tst.InvalidTraceID6.d.ksh
59  * /usr/sbin/dtrace -i 1 2 3 4
60  * RESULT: invalid probe specifier.
61  *
62  * 7) automated in tst.InvalidTraceID7.d.ksh
63  * /usr/sbin/dtrace -i 0 - 2
64  * RESULT: invalid probe specifier.
65  *
66  * 8)
67  * /usr/sbin/dtrace -i 1 -i 2-4 -i 4 -i 5
68  * RESULT: Only the BEGIN probe is traced and the others are not.
69  *
70  */