diff options
author | Brian Behlendorf <[email protected]> | 2016-12-02 10:10:23 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2016-12-02 10:10:23 -0700 |
commit | 4dec26e49a8c2fefb357158a87c9756f14c31697 (patch) | |
tree | a1acdaefed1799ac56b019427e6f2f83ec514073 /tests | |
parent | b0319c1faae5a77e553ae74bf899efbc6629674d (diff) |
Skip zpool_scrub_004_pos on 32-bit systems
The zpool_scrub_004_pos test case currently fails when testing on
a 32-bit system. Conditionally skip this test case on 32-bit
systems until the root cause is identified and resolved.
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #5444
Closes #5445
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos.ksh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos.ksh b/tests/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos.ksh index ca07769ec..16e27a0ca 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_004_pos.ksh @@ -48,6 +48,11 @@ verify_runnable "global" +# See issue: https://github.com/zfsonlinux/zfs/issues/5444 +if is_32bit; then + log_unsupported "Test case fails on 32-bit systems" +fi + log_assert "Resilver prevent scrub from starting until the resilver completes" log_must $ZPOOL detach $TESTPOOL $DISK2 |