mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-04-17 08:54:52 +03:00
- mmp_concurrent_import: added test case to verify that concurrent import correctness. The pool may only be imported once. - mmp_exported_import: an activity check is now required for pools which were cleanly exported if the system and pool hostids don't match. - mmp_inactive_import: an activity check is now required for any pool which wasn't cleanly exported, even if the system and pool hostids match. - mmp_on_uberblocks: updated expected uberblocks to take in to account the value MMP_INTERVAL_DEFAULT is set too. - mmp_reset_interval: reduce the number of iterations from 10 to 3. This is sufficient to verify functionality and significantly speeds up the test. - mmp_on_uberblocks: adjust the thresholds and increase the runtime to avoid false positives observed in CI. - Update tests to use 'zhack action idle' instead of ztest to improve the reliability of the tests. - Add additional log_note messages to test cases which have multiple verification steps to make it clear which portion of a test failed when reviewing the logs. - Replace default_setup/cleanup_noexit calls with 'zpool create' and 'zpool destroy' calls to avoid additional unnecessary dataset creation work. - Update activity/noactivity check helper functions to use the ZFS_LOAD_INFO_DEBUG information now available from 'zpool import' to determine if this activity check ran and why. This is more reliable in the CI than measuring the runtime. - Removed all mmp tests from the zts-report.py exceptions list. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Olaf Faaland <faaland1@llnl.gov> Reviewed-by: Akash B <akash-b@hpe.com>
48 lines
1.2 KiB
INI
48 lines
1.2 KiB
INI
# SPDX-License-Identifier: CDDL-1.0
|
|
#
|
|
# CDDL HEADER START
|
|
#
|
|
# This file and its contents are supplied under the terms of the
|
|
# Common Development and Distribution License ("CDDL"), version 1.0.
|
|
# You may only use this file in accordance with the terms of version
|
|
# 1.0 of the CDDL.
|
|
#
|
|
# A full copy of the text of the CDDL should have accompanied this
|
|
# source. A copy of the CDDL is also available via the Internet at
|
|
# http://www.illumos.org/license/CDDL.
|
|
#
|
|
# CDDL HEADER END
|
|
#
|
|
|
|
#
|
|
# Copyright (c) 2017 by Lawrence Livermore National Security, LLC.
|
|
#
|
|
|
|
export PREV_UBER="$TEST_BASE_DIR/mmp-uber-prev.txt"
|
|
export CURR_UBER="$TEST_BASE_DIR/mmp-uber-curr.txt"
|
|
export DISK=${DISKS%% *}
|
|
|
|
export HOSTID_FILE="/etc/hostid"
|
|
export HOSTID1=01234567
|
|
export HOSTID2=89abcdef
|
|
export HOSTID3=aaaabbbb
|
|
export HOSTID4=ccccdddd
|
|
|
|
export TXG_TIMEOUT_LONG=5000
|
|
export TXG_TIMEOUT_DEFAULT=5
|
|
|
|
export MMP_POOL=mmppool
|
|
export MMP_DIR=$TEST_BASE_DIR/mmp
|
|
export MMP_CACHE=$MMP_DIR/zpool.cache
|
|
export MMP_ZHACK_LOG=$MMP_DIR/zhack.log
|
|
export MMP_HISTORY=100
|
|
export MMP_HISTORY_OFF=0
|
|
|
|
export MMP_INTERVAL_HOUR=$((60*60*1000))
|
|
export MMP_INTERVAL_DEFAULT=1000
|
|
export MMP_INTERVAL_MIN=100
|
|
|
|
export MMP_IMPORT_INTERVALS=20
|
|
export MMP_FAIL_INTERVALS_DEFAULT=10
|
|
export MMP_FAIL_INTERVALS_MIN=2
|