tst.badopt.d revision 2633:71bab08d24b2
115103Sphk/*
215103Sphk * CDDL HEADER START
315103Sphk *
415103Sphk * The contents of this file are subject to the terms of the
515103Sphk * Common Development and Distribution License (the "License").
615103Sphk * You may not use this file except in compliance with the License.
715103Sphk *
815103Sphk * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
915103Sphk * or http://www.opensolaris.org/os/licensing.
1015103Sphk * See the License for the specific language governing permissions
1115103Sphk * and limitations under the License.
1215103Sphk *
1315103Sphk * When distributing Covered Code, include this CDDL HEADER in each
1415103Sphk * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1515103Sphk * If applicable, add the following below this CDDL HEADER, with the
1615103Sphk * fields enclosed by brackets "[]" replaced with your own identifying
1715103Sphk * information: Portions Copyright [yyyy] [name of copyright owner]
1815103Sphk *
1915103Sphk * CDDL HEADER END
2015103Sphk */
2115103Sphk
2215103Sphk/*
2315103Sphk * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2415103Sphk * Use is subject to license terms.
2515103Sphk */
2615103Sphk
2715103Sphk#pragma ident	"%Z%%M%	%I%	%E% SMI"
2815103Sphk
2915103Sphk#pragma D option quiet
3015103Sphk
3115103SphkBEGIN
3215103Sphk{
3315103Sphk	setopt("Nixon");
3415103Sphk	setopt("Harding");
3515103Sphk	setopt("Hoover");
3615103Sphk	setopt("Bush");
3715103Sphk	setopt("quiet", "hell no");
38116182Sobrien	setopt("aggrate", "0.5hz");
39116182Sobrien	setopt("bufsize", "1m");
40116182Sobrien	exit(0);
4186190Srwatson}
4284611Srwatson