]> git.proxmox.com Git - mirror_zfs.git/blame - tests/zfs-tests/tests/functional/cli_root/zpool_import/setup.ksh
Update ZTS to work on FreeBSD
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zpool_import / setup.ksh
CommitLineData
6bb24f4d
BB
1#!/bin/ksh -p
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22
23#
24# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
25# Use is subject to license terms.
26#
27
28#
c1d9abf9 29# Copyright (c) 2012, 2016 by Delphix. All rights reserved.
6bb24f4d
BB
30#
31
32. $STF_SUITE/include/libtest.shlib
33. $STF_SUITE/tests/functional/cli_root/zpool_import/zpool_import.cfg
34
35verify_runnable "global"
36verify_disk_count "$DISKS" 2
37
38if ! $(is_physical_device $ZFS_DISK1) ; then
39 log_unsupported "Only partitionable physical disks can be used"
40fi
41
42DISK=${DISKS%% *}
43
44for dev in $ZFS_DISK1 $ZFS_DISK2 ; do
45 log_must cleanup_devices $dev
46done
47
48typeset -i i=0
49while (( i <= $GROUP_NUM )); do
7839c4b5 50 if ! is_linux && ! is_freebsd; then
6bb24f4d
BB
51 if (( i == 2 )); then
52 (( i = i + 1 ))
53 continue
54 fi
55 fi
56 log_must set_partition $i "$cyl" $SLICE_SIZE $ZFS_DISK1
57 cyl=$(get_endslice $ZFS_DISK1 $i)
58 (( i = i + 1 ))
59done
60
61create_pool "$TESTPOOL" "$ZFSSIDE_DISK1"
62
63if [[ -d $TESTDIR ]]; then
c1d9abf9
JWK
64 rm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
65 mkdir -p $TESTDIR || log_unresolved Could not create $TESTDIR
6bb24f4d
BB
66fi
67
c1d9abf9
JWK
68log_must zfs create $TESTPOOL/$TESTFS
69log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
6bb24f4d 70
6cb8e530
PZ
71[[ ! -d $DEVICE_DIR ]] && \
72 log_must mkdir -p $DEVICE_DIR
7050a65d 73
6bb24f4d
BB
74i=0
75while (( i < $MAX_NUM )); do
c1d9abf9 76 log_must mkfile $FILE_SIZE ${DEVICE_DIR}/${DEVICE_FILE}$i
6bb24f4d
BB
77 (( i = i + 1 ))
78done
79
80log_pass