]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add.cfg
Add the ZFS Test Suite
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zpool_add / zpool_add.cfg
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
31 export DISK_ARRAY_NUM=0
32 export DISK_ARRAY_LIMIT=4
33 export DISKSARRAY=""
34
35 #
36 # Variables for zpool_add_006
37 #
38 export VDEVS_NUM=32
39
40 function 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
67 set_disks
68
69 export FILESIZE="100m"
70 export FILESIZE1="150m"
71 export SIZE="150m"
72 export SIZE1="250m"
73
74 if is_linux; then
75 export SLICE_PREFIX="p"
76 export SLICE0=1
77 export SLICE1=2
78 export SLICE3=4
79 export SLICE4=5
80 export SLICE5=6
81 export SLICE6=7
82 else
83 export SLICE_PREFIX="s"
84 export SLICE0=0
85 export SLICE1=1
86 export SLICE3=3
87 export SLICE4=4
88 export SLICE5=5
89 export SLICE6=6
90 fi
91
92 export VOLSIZE=84m