]> granicus.if.org Git - zfs/commitdiff
Fix some style nits in tests
authorRyan Moeller <ryan@freqlabs.com>
Fri, 11 Oct 2019 16:49:48 +0000 (12:49 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 11 Oct 2019 16:49:48 +0000 (09:49 -0700)
Mostly whitespace changes, no functional changes intended.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #9447

tests/zfs-tests/tests/functional/cli_root/zfs/zfs_002_pos.ksh
tests/zfs-tests/tests/functional/cli_root/zfs_send/zfs_send_006_pos.ksh
tests/zfs-tests/tests/functional/cli_root/zfs_unmount/zfs_unmount_008_neg.ksh
tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create.shlib
tests/zfs-tests/tests/functional/history/history_001_pos.ksh
tests/zfs-tests/tests/functional/history/history_common.kshlib
tests/zfs-tests/tests/functional/inheritance/inherit_001_pos.ksh

index b21b6c657dfe4c3d3a0274a14e0a3e2baca938f9..92382aa11d6374d9988ad87fd82d6d4e0c5d240f 100755 (executable)
@@ -62,7 +62,7 @@ log_assert "With ZFS_ABORT set, all zfs commands can abort and generate a " \
     "core file."
 log_onexit cleanup
 
-#preparation work for testing
+# Preparation work for testing
 corepath=$TESTDIR/core
 if [[ -d $corepath ]]; then
        rm -rf $corepath
index 5d3d7cf0dbd6fdf248fb949af6fafea93c115cb9..7dac6798d123a2a1ef5ab83b9af8401199dffa49 100755 (executable)
@@ -55,7 +55,7 @@ function get_estimate_size
        typeset snapshot=$1
        typeset option=$2
        typeset base_snapshot=${3:-""}
-       if [[ -z $3 ]];then
+       if [[ -z $3 ]]; then
                typeset total_size=$(zfs send $option $snapshot 2>&1 | tail -1)
        else
                typeset total_size=$(zfs send $option $base_snapshot $snapshot \
index e83e8d5165eb296cee7bcafb5e6403fdb158939b..afec9d89629489450892031a46079a14ebdf207c 100755 (executable)
@@ -95,15 +95,14 @@ for arg in ${badargs[@]}; do
        log_mustnot eval "zfs unmount $arg $fs >/dev/null 2>&1"
 done
 
-
-#Testing invalid datasets
+# Testing invalid datasets
 for ds in $snap $vol "blah"; do
        for opt in "" "-f"; do
                log_mustnot eval "zfs unmount $opt $ds >/dev/null 2>&1"
        done
 done
 
-#Testing invalid mountpoint
+# Testing invalid mountpoint
 dir=foodir.$$
 file=foo.$$
 fs1=$TESTPOOL/fs.$$
@@ -119,20 +118,20 @@ for mpt in "./$dir" "./$file" "/tmp"; do
 done
 cd $curpath
 
-#Testing null argument and too many arguments
+# Testing null argument and too many arguments
 for opt in "" "-f"; do
        log_mustnot eval "zfs unmount $opt >/dev/null 2>&1"
        log_mustnot eval "zfs unmount $opt $fs $fs1 >/dev/null 2>&1"
 done
 
-#Testing already unmounted filesystem
+# Testing already unmounted filesystem
 log_must zfs unmount $fs1
 for opt in "" "-f"; do
        log_mustnot eval "zfs unmount $opt $fs1 >/dev/null 2>&1"
        log_mustnot eval "zfs unmount /tmp/$dir >/dev/null 2>&1"
 done
 
-#Testing legacy mounted filesystem
+# Testing legacy mounted filesystem
 log_must zfs set mountpoint=legacy $fs1
 if is_linux; then
        log_must mount -t zfs $fs1 /tmp/$dir
index 3f3f4472990d5524dbda797aaa0ba34086a138f4..31244f4ecb8b1f25f7905d7006ae028cc6c5cdba 100644 (file)
@@ -45,7 +45,7 @@ function create_pool_test
        typeset vdevs
        eval "typeset -a diskarray=($3)"
 
-       for vdevs in "${diskarray[@]}";do
+       for vdevs in "${diskarray[@]}"; do
                create_pool $pool $keywd $vdevs
                log_must poolexists $pool
                destroy_pool $pool
index e22aaa33dbc602e30487e9ef7e34ce32c152f6b0..f33265185d5ca4328e91e3328458b7f2ef40296a 100755 (executable)
@@ -115,7 +115,7 @@ import_dir=$TEST_BASE_DIR/import_dir.$$
 log_must mkdir $import_dir
 log_must cp $STF_SUITE/tests/functional/history/zfs-pool-v4.dat.Z $import_dir
 log_must uncompress $import_dir/zfs-pool-v4.dat.Z
-upgrade_pool=$(zpool import -d $import_dir | grep "pool:" | awk '{print $2}')
+upgrade_pool=$(zpool import -d $import_dir | awk '/pool:/ { print $2 }')
 log_must zpool import -d $import_dir $upgrade_pool
 run_and_verify -p "$upgrade_pool" "zpool upgrade $upgrade_pool"
 
index d97e015fcfef391cac0baf34412cc7af3ea2ab78..b82c60cbb6939e0efecee89a2be02594321982a6 100644 (file)
@@ -110,7 +110,7 @@ function verify_long
        fi
 
        typeset suffix=""
-       if [ is_linux ]; then
+       if is_linux; then
                suffix=":linux"
        fi
 
index 76bd05ce57de2eb9762eecf276b44b6d54c2ef9b..b1c24fa3a74fb92aabc70887749e0f2a1a03dc19 100755 (executable)
@@ -401,18 +401,17 @@ set -A local_val "off" "on" "off" \
 #
 # Add system specific values
 #
-
-if ! is_linux; then
+if is_linux; then
+       prop+=("acltype" "")
+       def_val+=("off")
+       local_val+=("off")
+else
        prop+=("aclmode" "" \
                "mountpoint" "")
        def_val+=("discard" \
                "")
        local_val+=("groupmask" \
                "$TESTDIR")
-else
-       prop+=("acltype" "")
-       def_val+=("off")
-       local_val+=("off")
 fi