tst.string.d revision 14ea49401f3c8c61422aefbda43809e275f60c6c
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster/*
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * CDDL HEADER START
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * The contents of this file are subject to the terms of the
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Common Development and Distribution License (the "License").
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * You may not use this file except in compliance with the License.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * or http://www.opensolaris.org/os/licensing.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * See the License for the specific language governing permissions
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * and limitations under the License.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * When distributing Covered Code, include this CDDL HEADER in each
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * If applicable, add the following below this CDDL HEADER, with the
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * fields enclosed by brackets "[]" replaced with your own identifying
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * information: Portions Copyright [yyyy] [name of copyright owner]
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * CDDL HEADER END
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster */
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster/*
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Use is subject to license terms.
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster */
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster#pragma ident "%Z%%M% %I% %E% SMI"
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster/*
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * ASSERTION:
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * Positive trace tests - trace with strings
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster *
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster * SECTION: Actions and Subroutines/trace()
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster */
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan FosterBEGIN
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster{
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster trace("this");
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster trace(" %should work.\n");
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster trace("%don't w%orry -- this won't cause a %segfault.\n");
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster exit(0);
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster}
2d0a88b18a041738cfe635b45bd1db56af469c91Allan Foster