1*d583b39bSJohn Wren Kennedy# 2*d583b39bSJohn Wren Kennedy# CDDL HEADER START 3*d583b39bSJohn Wren Kennedy# 4*d583b39bSJohn Wren Kennedy# The contents of this file are subject to the terms of the 5*d583b39bSJohn Wren Kennedy# Common Development and Distribution License (the "License"). 6*d583b39bSJohn Wren Kennedy# You may not use this file except in compliance with the License. 7*d583b39bSJohn Wren Kennedy# 8*d583b39bSJohn Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*d583b39bSJohn Wren Kennedy# or http://www.opensolaris.org/os/licensing. 10*d583b39bSJohn Wren Kennedy# See the License for the specific language governing permissions 11*d583b39bSJohn Wren Kennedy# and limitations under the License. 12*d583b39bSJohn Wren Kennedy# 13*d583b39bSJohn Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each 14*d583b39bSJohn Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*d583b39bSJohn Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the 16*d583b39bSJohn Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying 17*d583b39bSJohn Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner] 18*d583b39bSJohn Wren Kennedy# 19*d583b39bSJohn Wren Kennedy# CDDL HEADER END 20*d583b39bSJohn Wren Kennedy# 21*d583b39bSJohn Wren Kennedy 22*d583b39bSJohn Wren Kennedy# 23*d583b39bSJohn Wren Kennedy# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 24*d583b39bSJohn Wren Kennedy# Use is subject to license terms. 25*d583b39bSJohn Wren Kennedy# 26*d583b39bSJohn Wren Kennedy 27*d583b39bSJohn Wren Kennedyexport TESTFILE=testfile.$$ 28*d583b39bSJohn Wren Kennedyexport TRUNC_FILESIZE=${TRUNC_FILESIZE-"67108864"} # 64 Mb 29*d583b39bSJohn Wren Kennedyexport TRUNC_BLKSIZE=${TRUNC_BLKSIZE-"512"} 30*d583b39bSJohn Wren Kennedyexport TRUNC_SEED=${TRUNC_SEED-""} 31*d583b39bSJohn Wren Kennedyexport TRUNC_FILEOFFSET=${TRUNC_FILEOFFSET-""} 32*d583b39bSJohn Wren Kennedyexport TRUNC_COUNT=${TRUNC_COUNT-"16384"} # FILESIZE/BLKSIZE/8 33