diff options
author | Brian Behlendorf <[email protected]> | 2021-12-22 09:37:27 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-22 09:37:27 -0800 |
commit | 9ba5d8d204ad22c51d590edba1e7a5fb5ae2e82e (patch) | |
tree | ec10e078cdf09d86510f9c7bc2c3c684d0f3fbf8 /tests/zfs-tests | |
parent | 2f411512be54ef626536d5eb2c8b24e60e636142 (diff) |
ZTS: Fix refreserv_raidz.ksh
The rerefreserv_raidz test was failing on Linux because the sync being
issued doesn't guarantee a pool sync. Switch to using the sync_pool
function and remove the ZTS exception for Linux.
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: John Kennedy <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #12897
Diffstat (limited to 'tests/zfs-tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/refreserv/refreserv_raidz.ksh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/zfs-tests/tests/functional/refreserv/refreserv_raidz.ksh b/tests/zfs-tests/tests/functional/refreserv/refreserv_raidz.ksh index 22891ef1d..056c7916d 100755 --- a/tests/zfs-tests/tests/functional/refreserv/refreserv_raidz.ksh +++ b/tests/zfs-tests/tests/functional/refreserv/refreserv_raidz.ksh @@ -110,7 +110,7 @@ for parity in 1 2 3; do block_device_wait "/dev/zvol/$vol" log_must dd if=/dev/zero of=/dev/zvol/$vol \ bs=1024k count=$volsize - sync + sync_pool $TESTPOOL ref=$(zfs get -Hpo value referenced "$vol") refres=$(zfs get -Hpo value refreservation "$vol") |