tst.badopt.d revision 178477
1219820Sjeff/*
2219820Sjeff * CDDL HEADER START
3219820Sjeff *
4219820Sjeff * The contents of this file are subject to the terms of the
5219820Sjeff * Common Development and Distribution License (the "License").
6219820Sjeff * You may not use this file except in compliance with the License.
7219820Sjeff *
8219820Sjeff * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9219820Sjeff * or http://www.opensolaris.org/os/licensing.
10219820Sjeff * See the License for the specific language governing permissions
11219820Sjeff * and limitations under the License.
12219820Sjeff *
13219820Sjeff * When distributing Covered Code, include this CDDL HEADER in each
14219820Sjeff * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15219820Sjeff * If applicable, add the following below this CDDL HEADER, with the
16219820Sjeff * fields enclosed by brackets "[]" replaced with your own identifying
17219820Sjeff * information: Portions Copyright [yyyy] [name of copyright owner]
18219820Sjeff *
19219820Sjeff * CDDL HEADER END
20219820Sjeff */
21219820Sjeff
22219820Sjeff/*
23219820Sjeff * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24219820Sjeff * Use is subject to license terms.
25219820Sjeff */
26219820Sjeff
27219820Sjeff#pragma ident	"%Z%%M%	%I%	%E% SMI"
28219820Sjeff
29219820Sjeff#pragma D option quiet
30219820Sjeff
31219820SjeffBEGIN
32219820Sjeff{
33219820Sjeff	setopt("Nixon");
34219820Sjeff	setopt("Harding");
35219820Sjeff	setopt("Hoover");
36219820Sjeff	setopt("Bush");
37219820Sjeff	setopt("quiet", "hell no");
38219820Sjeff	setopt("aggrate", "0.5hz");
39219820Sjeff	setopt("bufsize", "1m");
40219820Sjeff	exit(0);
41219820Sjeff}
42219820Sjeff