f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#!/usr/bin/ksh -p
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER START
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# The contents of this file are subject to the terms of the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Common Development and Distribution License (the "License").
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You may not use this file except in compliance with the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# or http://www.opensolaris.org/os/licensing.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# See the License for the specific language governing permissions
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# and limitations under the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER END
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Use is subject to license terms.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/include/libtest.shlib
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/tests/functional/migration/migration.cfg
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyverify_runnable "global"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedycase $DISK_COUNT in
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy0)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_untested "Need at least 1 disk device for test"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy ;;
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy1)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_note "Partitioning a single disk ($SINGLE_DISK)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy ;;
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy*)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_note "Partitioning disks ($ZFS_DISK $NONZFS_DISK)"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy ;;
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyesac
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyset_partition ${ZFSSIDE_DISK##*s} "" $FS_SIZE $ZFS_DISK
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyset_partition ${NONZFSSIDE_DISK##*s} "" $FS_SIZE $NONZFS_DISK
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedycreate_pool $TESTPOOL "$ZFSSIDE_DISK"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedyrm -rf $TESTDIR || log_unresolved Could not remove $TESTDIR
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedymkdir -p $TESTDIR || log_unresolved Could not create $TESTDIR
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedylog_must zfs create $TESTPOOL/$TESTFS
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedylog_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedyrm -rf $NONZFS_TESTDIR || log_unresolved Could not remove $NONZFS_TESTDIR
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedymkdir -p $NONZFS_TESTDIR || log_unresolved Could not create $NONZFS_TESTDIR
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedyecho "y" | newfs -v /dev/rdsk/$NONZFSSIDE_DISK
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy(( $? != 0 )) &&
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_untested "Unable to setup a UFS file system"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedylog_must mount /dev/dsk/$NONZFSSIDE_DISK $NONZFS_TESTDIR
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_pass