]> git.proxmox.com Git - mirror_zfs.git/commitdiff
OpenZFS 8072 - zfs-tests: several test cases incorrectly spell TESTPOOL
authorYuri Pankov <yuri.pankov@nexenta.com>
Tue, 16 May 2017 18:22:23 +0000 (11:22 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 25 May 2017 17:33:12 +0000 (10:33 -0700)
Authored by: Yuri Pankov <yuri.pankov@nexenta.com>
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed by: John Kennedy <jwk404@gmail.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Ported-by: Giuseppe Di Natale <dinatale2@llnl.gov>
OpenZFS-issue: https://www.illumos.org/issues/8072
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/56e4733
Closes #6137

tests/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_006_neg.ksh
tests/zfs-tests/tests/functional/cli_user/misc/misc.cfg
tests/zfs-tests/tests/functional/cli_user/misc/zfs_get_001_neg.ksh
tests/zfs-tests/tests/functional/cli_user/misc/zfs_promote_001_neg.ksh
tests/zfs-tests/tests/functional/cli_user/misc/zfs_set_001_neg.ksh

index ffe2c4356164290960f33c744c11630e26e8b331..cedfa676a1675ef81e82355a70f747a5a1d84b2f 100755 (executable)
@@ -53,7 +53,7 @@ snap=$TESTPOOL/$TESTFS@$TESTSNAP
 set -A args "" \
        "$TESTPOOL/blah" \
        "$TESTPOOL" "$TESTPOOL/$TESTFS" "$snap" \
-       "$TESTPOOL/$TESTVOL" "$TESTPOL $TESTPOOL/$TESTFS" \
+       "$TESTPOOL/$TESTVOL" "$TESTPOOL $TESTPOOL/$TESTFS" \
        "$clone $TESTPOOL/$TESTFS" "- $clone" "-? $clone"
 
 function cleanup
index 8054f0ed865b26f178166c2d87f230efd05b02e6..06d211ce183a7d2680dd1060a2d0da0dfa5c932a 100644 (file)
@@ -31,7 +31,7 @@
 if is_linux; then
        # these are the set of setable ZFS properties
        PROP_NAMES="\
-               aclinherit      acltype         atime            \
+               acltype         atime            \
                checksum        compression                     devices \
                exec            mountpoint      quota           readonly \
                recordsize      reservation     setuid           \
@@ -41,17 +41,17 @@ if is_linux; then
        # zfs get/set subcommands - ordered as per the list above so we
        # can iterate over both sets in an array
        PROP_VALS="\
-               secure          posixacl        on               \
+               posixacl        on               \
                fletcher2       on                              on \
                on              legacy          none            on \
-               128k            none            on               \
+               128K            none            on               \
                visible"
 
        # these are an alternate set of property values
        PROP_ALTVALS="\
-               noallow         noacl           off              \
+               noacl           off              \
                fletcher4       lzjb                            off \
-               off             /tmp/zfstest    100m            off \
+               off             /tmp/zfstest    100M            off \
                512             10m             off              \
                hidden"
 else
@@ -67,17 +67,17 @@ else
        # zfs get/set subcommands - ordered as per the list above so we
        # can iterate over both sets in an array
        PROP_VALS="\
-               secure          discard         on               \
+               passthrough     discard         on               \
                fletcher2       on                              on \
                on              legacy          none            on \
-               128k            none            on              on \
+               128K            none            on              on \
                visible"
 
        # these are an alternate set of property values
        PROP_ALTVALS="\
-               noallow         noacl           off              \
+               passthrough-x   groupmask       off              \
                fletcher4       lzjb                            off \
-               off             /tmp/zfstest    100m            off \
+               off             /tmp/zfstest    100M            off \
                512             10m             off             off \
                hidden"
 fi
index 439bc06ac9c0dfec832e90bb88402cfe7ab7a117..0657b9143670a3e8867af7235455571ab8fa4511 100755 (executable)
@@ -41,7 +41,6 @@
 # 1. Run zfs get with an array of different arguments
 # 2. Verify for each property, we get the value that's expected
 #
-#
 
 log_assert "zfs get works when run as a user"
 
@@ -50,16 +49,16 @@ typeset -i i=0
 set -A props $PROP_NAMES
 set -A prop_vals $PROP_VALS
 
-while [[ $i -lt ${#args[*]} ]]
+while [[ $i -lt ${#props[*]} ]]
 do
        PROP=${props[$i]}
        EXPECTED=${prop_vals[$i]}
-       ACTUAL=$( zfs get $PROP -o value -H snapdir $TESTPOOl/$TESTFS/prop )
+       ACTUAL=$(zfs get -H -o value $PROP $TESTPOOL/$TESTFS/prop)
        if [ "$ACTUAL" != "$EXPECTED" ]
        then
                log_fail "Property $PROP value was $ACTUAL, expected $EXPECTED"
        fi
-        i=$(( $i + 1 ))
+       i=$(( $i + 1 ))
 done
 
 log_pass "zfs get works when run as a user"
index a96979a4776d18af403fc9a77fa77fc30f44e9f5..dd92f534d3a125c0db327aff45cf102a7f2e9031 100755 (executable)
@@ -50,7 +50,7 @@ log_mustnot zfs promote $TESTPOOL/$TESTFS/clone
 # Now verify that the above command didn't do anything
 if datasetexists $TESTPOOL/$TESTFS/clone@snap
 then
-       log_fail "Clone $TESTPOOl/$TESTFS/clone was actually promoted!"
+       log_fail "Clone $TESTPOOL/$TESTFS/clone was actually promoted!"
 fi
 
 log_pass "zfs promote returns an error when run as a user"
index 54e7ee92d68140107b04db98ac8df7255d783a7b..9cfb79210b11db5ec98c6538041b55288b9df088 100755 (executable)
@@ -41,7 +41,6 @@
 # 1. Attempt to set an array of properties on a dataset
 # 2. Verify that those properties were not set and retain their original values.
 #
-#
 
 log_assert "zfs set returns an error when run as a user"
 
@@ -51,7 +50,7 @@ set -A props $PROP_NAMES
 set -A prop_vals $PROP_VALS
 set -A prop_new $PROP_ALTVALS
 
-while [[ $i -lt ${#args[*]} ]]
+while [[ $i -lt ${#props[*]} ]]
 do
        PROP=${props[$i]}
        EXPECTED=${prop_vals[$i]}
@@ -59,12 +58,12 @@ do
        log_mustnot zfs set $PROP=$NEW $TESTPOOL/$TESTFS/prop
 
        # Now verify that the above command did nothing
-       ACTUAL=$(zfs get $PROP -o value -H snapdir $TESTPOOl/$TESTFS/prop )
+       ACTUAL=$(zfs get -H -o value $PROP $TESTPOOL/$TESTFS/prop)
        if [ "$ACTUAL" != "$EXPECTED" ]
        then
                log_fail "Property $PROP was set to $ACTUAL, expected $EXPECTED"
        fi
-        i=$(( $i + 1 ))
+       i=$(( $i + 1 ))
 done
 
 log_pass "zfs set returns an error when run as a user"