diff options
author | Brian Behlendorf <[email protected]> | 2019-01-13 10:01:31 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2019-01-13 10:01:31 -0800 |
commit | 99b0b5bc3fe5a566d73ed2eed53137f97d684e84 (patch) | |
tree | a8e02d5723b0d4e83c0ffefeb898ab5106874925 /tests | |
parent | 6955b40138b959af724a332df32ae64c872d876b (diff) |
ZTS: zpool_resilver_restart
Since the vdev initialize feature was integrated the ZTS
zpool_resilver_restart test has been hitting its internal
timeout more frequently. This happens most often on
the coverage builder but not exclusively. Increasing the
timeout for this test case prevents any false positives.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #8273
Diffstat (limited to 'tests')
-rw-r--r-- | tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver.cfg | 2 | ||||
-rwxr-xr-x | tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_restart.ksh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver.cfg b/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver.cfg index 5c013c723..2a942d69f 100644 --- a/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver.cfg +++ b/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver.cfg @@ -27,4 +27,4 @@ export DISK1=$(echo $DISKS | nawk '{print $1}') export DISK2=$(echo $DISKS | nawk '{print $2}') export DISK3=$(echo $DISKS | nawk '{print $3}') -export MAXTIMEOUT=80 +export MAXTIMEOUT=300 diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_restart.ksh b/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_restart.ksh index 4f98ced96..cfafbb6b5 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_restart.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_restart.ksh @@ -33,7 +33,7 @@ # "Verify 'zpool resilver' restarts in-progress resilvers" # # STRATEGY: -# 1. Write some data and detatch the first drive so it has resilver +# 1. Write some data and detach the first drive so it has resilver # work to do # 2. Repeat the process with a second disk # 3. Reattach the drives, causing the second drive's resilver to be @@ -56,7 +56,7 @@ log_assert "Verify 'zpool resilver' restarts in-progress resilvers" mntpnt=$(get_prop mountpoint $TESTPOOL/$TESTFS) -# 1. Write some data and detatch the first drive so it has resilver work to do +# 1. Write some data and detach the first drive so it has resilver work to do log_must file_write -b 524288 -c 1024 -o create -d 0 -f $mntpnt/biggerfile1 log_must sync log_must zpool detach $TESTPOOL $DISK2 |