From 871ee96d6f8fef01f3560c90edbad5bd19dac5c6 Mon Sep 17 00:00:00 2001 From: jb Date: Fri, 25 Apr 2008 06:56:31 +0000 Subject: Vendor import of the DTrace app and test suite from OpenSolaris. --- .../test/tst/common/preprocessor/tst.ifnotdef.d | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/preprocessor/tst.ifnotdef.d (limited to 'cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/preprocessor/tst.ifnotdef.d') diff --git a/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/preprocessor/tst.ifnotdef.d b/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/preprocessor/tst.ifnotdef.d new file mode 100644 index 0000000..345a82f --- /dev/null +++ b/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/preprocessor/tst.ifnotdef.d @@ -0,0 +1,51 @@ +/* + * CDDL HEADER START + * + * The contents of this file are subject to the terms of the + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. + * + * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE + * or http://www.opensolaris.org/os/licensing. + * See the License for the specific language governing permissions + * and limitations under the License. + * + * When distributing Covered Code, include this CDDL HEADER in each + * file and include the License file at usr/src/OPENSOLARIS.LICENSE. + * If applicable, add the following below this CDDL HEADER, with the + * fields enclosed by brackets "[]" replaced with your own identifying + * information: Portions Copyright [yyyy] [name of copyright owner] + * + * CDDL HEADER END + */ + +/* + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. + * Use is subject to license terms. + */ + +#pragma ident "%Z%%M% %I% %E% SMI" + +/* + * ASSERTION: + * + * Simple if !defined, define, else and endif test + * + * SECTION: Program Structure/Use of the C Preprocessor + * + */ + +#if !defined (FLAG) +#define VALUE 5 +#else +#define VALUE 10 +#endif + + +#pragma D option quiet + +tick-10ms +{ + printf("The value is %d\n", VALUE); + exit(0); +} -- cgit v1.1