]> git.proxmox.com Git - mirror_zfs.git/commitdiff
ZTS: Re-enable MMP tests
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 8 May 2018 04:08:33 +0000 (21:08 -0700)
committerGitHub <noreply@github.com>
Tue, 8 May 2018 04:08:33 +0000 (21:08 -0700)
Commit 7fab6361 inadvertently disabled the MMP test cases by creating
and not removing an /etc/hostid file in the new zpool_split_props test
case.  When the file exists the ZTS skips the entire MMP test group
rather than modify what may be a system which is already configured.
Update the test case to remove the file.

Additionally, because the MMP tests were disabled a regression slipped
in as part of commit 9eb7b46ed0.  Fix it.

Reviewed-by: Tim Chase <tim@chase2k.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: loli10K <ezomori.nozomu@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #7514

module/zfs/spa.c
tests/zfs-tests/tests/functional/cli_root/zpool_split/zpool_split_props.ksh

index 3b5582624aa2faceb2d42d1a2d9ec2eb81fd06ac..2309116df2490c76cabee4d9b95e157b0209efe3 100644 (file)
@@ -3180,6 +3180,7 @@ spa_ld_get_props(spa_t *spa)
                spa_prop_find(spa, ZPOOL_PROP_DELEGATION, &spa->spa_delegation);
                spa_prop_find(spa, ZPOOL_PROP_FAILUREMODE, &spa->spa_failmode);
                spa_prop_find(spa, ZPOOL_PROP_AUTOEXPAND, &spa->spa_autoexpand);
+               spa_prop_find(spa, ZPOOL_PROP_MULTIHOST, &spa->spa_multihost);
                spa_prop_find(spa, ZPOOL_PROP_DEDUPDITTO,
                    &spa->spa_dedup_ditto);
 
index 90cde544eae90438a62f2af1a6eb53dd2ae2b663..6176adf8bfb9ca3530c1eaa1c984be29d42c86f2 100755 (executable)
@@ -15,6 +15,7 @@
 #
 
 . $STF_SUITE/include/libtest.shlib
+. $STF_SUITE/tests/functional/mmp/mmp.kshlib
 
 #
 # DESCRIPTION:
@@ -33,6 +34,7 @@ function cleanup
        destroy_pool $TESTPOOL
        destroy_pool $TESTPOOL2
        rm -f $DEVICE1 $DEVICE2
+       log_must mmp_clear_hostid
 }
 
 function setup_mirror
@@ -45,6 +47,10 @@ function setup_mirror
 log_assert "'zpool split' can set new property values on the new pool"
 log_onexit cleanup
 
+if [ -e $HOSTID_FILE ]; then
+       log_unsupported "System has existing $HOSTID_FILE file"
+fi
+
 typeset good_props=('comment=text' 'ashift=12' 'multihost=on'
     'listsnapshots=on' 'autoexpand=on' 'autoreplace=on' 'dedupditto=1234'
     'delegation=off' 'failmode=continue')
@@ -57,7 +63,7 @@ DEVICE1="$TEST_BASE_DIR/device-1"
 DEVICE2="$TEST_BASE_DIR/device-2"
 
 # Needed to set multihost=on
-zgenhostid
+log_must mmp_set_hostid $HOSTID1
 
 # Verify we can set a combination of valid property values on the new pool
 for prop in "${good_props[@]}"
@@ -68,7 +74,10 @@ do
        log_must zpool split -o $prop $TESTPOOL $TESTPOOL2
        log_must zpool import -N -d $TEST_BASE_DIR $TESTPOOL2
        log_must test "$(get_pool_prop $propname $TESTPOOL2)" == "$propval"
-       cleanup
+
+       destroy_pool $TESTPOOL
+       destroy_pool $TESTPOOL2
+       rm -f $DEVICE1 $DEVICE2
 done
 
 # Verify we cannot set invalid property values