From 57c6a9174d9e1d3844181267e34d9510b1250b4a Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 3 Feb 2017 19:00:00 -0800 Subject: Disable sparse_001_pos / truncate_001_pos.ksh on 32-bit systems Commit 539d33c seems to have significantly increased the run time of the sparse_001_pos.ksh and truncate_001_pos.ksh test cases on 32-bit systems. This is likely due to dirty blocks from frees being deferred to later txgs. At the moment this is resulting in frequent failures on the 32-bit builders. Disable this test case until the issue can be analyzed and resolved. Reviewed-by: George Melikov Reviewed-by: Giuseppe Di Natale Signed-off-by: Brian Behlendorf Issue #5727 Closes #5728 --- tests/zfs-tests/tests/functional/sparse/sparse_001_pos.ksh | 5 +++++ tests/zfs-tests/tests/functional/truncate/truncate_001_pos.ksh | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/tests/zfs-tests/tests/functional/sparse/sparse_001_pos.ksh b/tests/zfs-tests/tests/functional/sparse/sparse_001_pos.ksh index f5d7546ae..0672b81ca 100755 --- a/tests/zfs-tests/tests/functional/sparse/sparse_001_pos.ksh +++ b/tests/zfs-tests/tests/functional/sparse/sparse_001_pos.ksh @@ -45,6 +45,11 @@ verify_runnable "global" +# See issue: https://github.com/zfsonlinux/zfs/issues/5727 +if is_32bit; then + log_unsupported "Test case slow on 32-bit systems" +fi + function cleanup { [[ -e $TESTDIR ]] && log_must $RM -rf $TESTDIR/* diff --git a/tests/zfs-tests/tests/functional/truncate/truncate_001_pos.ksh b/tests/zfs-tests/tests/functional/truncate/truncate_001_pos.ksh index a6b379a6d..c6c8d2b68 100755 --- a/tests/zfs-tests/tests/functional/truncate/truncate_001_pos.ksh +++ b/tests/zfs-tests/tests/functional/truncate/truncate_001_pos.ksh @@ -42,6 +42,11 @@ verify_runnable "global" +# See issue: https://github.com/zfsonlinux/zfs/issues/5727 +if is_32bit; then + log_unsupported "Test case slow on 32-bit systems" +fi + function cleanup { [[ -e $TESTDIR ]] && log_must $RM -rf $TESTDIR/* -- cgit v1.2.3