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 <behlendorf1@llnl.gov> Issue #5444 Closes #5445
This commit is contained in:
parent
b0319c1faa
commit
4dec26e49a
|
@ -48,6 +48,11 @@
|
||||||
|
|
||||||
verify_runnable "global"
|
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_assert "Resilver prevent scrub from starting until the resilver completes"
|
||||||
|
|
||||||
log_must $ZPOOL detach $TESTPOOL $DISK2
|
log_must $ZPOOL detach $TESTPOOL $DISK2
|
||||||
|
|
Loading…
Reference in New Issue