From ffb78320c8040e10e754f1358476beb04c943510 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Tue, 8 Nov 2016 13:57:17 -0800 Subject: [PATCH] Skip test suites on 32-bit TEST builders The ztest, filebench, xfstests, and zfsstress test suites should be skipped when testing on 32-bit platforms until they pass reliably. Signed-off-by: Brian Behlendorf Closes #5381 --- TEST | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/TEST b/TEST index 1cdbde8aa..590109664 100644 --- a/TEST +++ b/TEST @@ -93,3 +93,14 @@ Ubuntu*) *) ;; esac + +### +# +# Disable the following test suites on 32-bit systems. +# +if [ $(getconf LONG_BIT) = "32" ]; then + TEST_ZTEST_SKIP="yes" + TEST_FILEBENCH_SKIP="yes" + TEST_XFSTESTS_SKIP="yes" + TEST_ZFSSTRESS_SKIP="yes" +fi