xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add.cfg (revision 6357b94b54238e954e002562d0e89a2fefd982e1)
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, 2014 by Delphix. All rights reserved.
29#
30
31export DISK_ARRAY_NUM=0
32export DISK_ARRAY_LIMIT=4
33export DISKSARRAY=""
34
35#
36# Variables for zpool_add_006
37#
38export VDEVS_NUM=32
39
40function set_disks
41{
42        set -A disk_array $(find_disks $DISKS)
43
44        if (( ${#disk_array[*]} <= 1 )); then
45                export DISK=${DISKS%% *}
46        else
47                export DISK=""
48                typeset -i i=0
49                while (( i < ${#disk_array[*]} )); do
50                        export DISK${i}="${disk_array[$i]}"
51                        DISKSARRAY="$DISKSARRAY ${disk_array[$i]}"
52                        (( i = i + 1 ))
53                        (( i>$DISK_ARRAY_LIMIT )) && break
54                done
55                export DISK_ARRAY_NUM=$i
56                export DISKSARRAY
57        fi
58
59	if (( $DISK_ARRAY_NUM == 0 )); then
60		export disk=$DISK
61	else
62		export disk=$DISK0
63	fi
64
65}
66
67set_disks
68
69export FILESIZE="100m"
70export FILESIZE1="150m"
71export SIZE="150m"
72export SIZE1="250m"
73export SLICE0=0
74export SLICE1=1
75export SLICE3=3
76export SLICE4=4
77export SLICE5=5
78export SLICE6=6
79
80export VOLSIZE=64mb
81