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 -l option with -i option.
33 * SECTION: dtrace Utility/-l Option;
34 * dtrace Utility/-i Option
36 * NOTES: Manually check:
38 * 1) automated in tst.InvalidTraceID1.d.ksh
39 * /usr/sbin/dtrace -i 0
40 * RESULT: invalid probe specifier.
42 * 2) automated in tst.InvalidTraceID2.d.ksh
43 * /usr/sbin/dtrace -i -3
44 * RESULT: not a valid id range
46 * 3) automated in tst.InvalidTraceID3.d.ksh
47 * /usr/sbin/dtrace -i 0-2
48 * RESULT: not a valid id range
50 * 4) automated in tst.InvalidTraceID4.d.ksh
51 * /usr/sbin/dtrace -i 4-2
52 * RESULT: not a valid id range
54 * 5) automated in tst.InvalidTraceID5.d.ksh
55 * /usr/sbin/dtrace -i 2-2
56 * RESULT: not a valid id range
58 * 6) automated in tst.InvalidTraceID6.d.ksh
59 * /usr/sbin/dtrace -i 1 2 3 4
60 * RESULT: invalid probe specifier.
62 * 7) automated in tst.InvalidTraceID7.d.ksh
63 * /usr/sbin/dtrace -i 0 - 2
64 * RESULT: invalid probe specifier.
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.