1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26
27#
28# Copyright (c) 2012, 2015 by Delphix. All rights reserved.
29#
30
31. $STF_SUITE/include/libtest.shlib
32
33typeset -a disk_array=($(find_disks $DISKS))
34typeset DISKSARRAY=""
35typeset -i DISK_ARRAY_LIMIT=4
36typeset -i i=0
37while (( i < ${#disk_array[*]} && i <= $DISK_ARRAY_LIMIT )); do
38	export DISK${i}="${disk_array[$i]}"
39	DISKSARRAY="$DISKSARRAY ${disk_array[$i]}"
40	(( i = i + 1 ))
41done
42export DISK_ARRAY_NUM=$i
43export DISKSARRAY
44
45export FILESIZE="$MINVDEVSIZE"
46export FILESIZE1="$(($MINVDEVSIZE * 2))"
47export SIZE="$((MINVDEVSIZE / (1024 * 1024)))"m
48export SIZE1="$(($MINVDEVSIZE * 2 / (1024 * 1024)))m"
49
50export BYND_MAX_NAME="byondmaxnamelength\
51012345678901234567890123456789\
52012345678901234567890123456789\
53012345678901234567890123456789\
54012345678901234567890123456789\
55012345678901234567890123456789\
56012345678901234567890123456789\
57012345678901234567890123456789\
58012345678901234567890123456789"
59
60export TOOSMALL="toosmall"
61
62export TESTPOOL4=testpool4.create
63export TESTPOOL5=testpool5.create
64export TESTPOOL6=testpool6.create
65
66export CPATH="$TEST_BASE_DIR/cachefile.create"
67