aboutsummaryrefslogtreecommitdiffstats
path: root/tests/zfs-tests
diff options
context:
space:
mode:
authorTim Chase <[email protected]>2018-05-03 23:02:38 -0500
committerBrian Behlendorf <[email protected]>2018-05-08 21:40:13 -0700
commitf3d28f0a59825a88840d84927b05af0cf9e8447a (patch)
tree1101b10f388da284e626877856211ec8fb4d2d47 /tests/zfs-tests
parenta0ad7ca54e7803b31458c78bc755d41d22a6ee78 (diff)
Streamline the zpool_import tests
Don't create an ext4 file system atop $DEV_DISKDIR/$DISK2. There's likely to not be sufficient space for it to succeed. Instead, simply create the vdev files in the directory where it would have been mounted. Signed-off-by: Tim Chase <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #7459
Diffstat (limited to 'tests/zfs-tests')
-rwxr-xr-xtests/zfs-tests/tests/functional/cli_root/zpool_import/cleanup.ksh3
-rwxr-xr-xtests/zfs-tests/tests/functional/cli_root/zpool_import/setup.ksh7
2 files changed, 0 insertions, 10 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_import/cleanup.ksh b/tests/zfs-tests/tests/functional/cli_root/zpool_import/cleanup.ksh
index f4f317cbe..fd67dc769 100755
--- a/tests/zfs-tests/tests/functional/cli_root/zpool_import/cleanup.ksh
+++ b/tests/zfs-tests/tests/functional/cli_root/zpool_import/cleanup.ksh
@@ -40,9 +40,6 @@ for pool in "$TESTPOOL" "$TESTPOOL1"; do
destroy_pool "$pool"
done
-ismounted $DEVICE_DIR $NEWFS_DEFAULT_FS
-(( $? == 0 )) && log_must umount -f $DEVICE_DIR
-
for dir in "$TESTDIR" "$TESTDIR1" "$DEVICE_DIR" ; do
[[ -d $dir ]] && \
log_must rm -rf $dir
diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_import/setup.ksh b/tests/zfs-tests/tests/functional/cli_root/zpool_import/setup.ksh
index d81e66636..9f0ccfb6c 100755
--- a/tests/zfs-tests/tests/functional/cli_root/zpool_import/setup.ksh
+++ b/tests/zfs-tests/tests/functional/cli_root/zpool_import/setup.ksh
@@ -68,16 +68,9 @@ fi
log_must zfs create $TESTPOOL/$TESTFS
log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
-DISK2="$(echo $DISKS | nawk '{print $2}')"
-echo "y" | newfs -v $DEV_DSKDIR/$DISK2 >/dev/null 2>&1
-(( $? != 0 )) &&
- log_untested "Unable to setup a $NEWFS_DEFAULT_FS file system"
-
[[ ! -d $DEVICE_DIR ]] && \
log_must mkdir -p $DEVICE_DIR
-log_must mount $DEV_DSKDIR/$DISK2 $DEVICE_DIR
-
i=0
while (( i < $MAX_NUM )); do
log_must mkfile $FILE_SIZE ${DEVICE_DIR}/${DEVICE_FILE}$i