]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Skip test suites on 32-bit TEST builders
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 8 Nov 2016 21:57:17 +0000 (13:57 -0800)
committerGitHub <noreply@github.com>
Tue, 8 Nov 2016 21:57:17 +0000 (13:57 -0800)
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 <behlendorf1@llnl.gov>
Closes #5381

TEST

diff --git a/TEST b/TEST
index 1cdbde8aa2e53a223feeee9cf7f2e20dd888f39d..590109664610481d9cb0d91fc895bfe6ad012289 100644 (file)
--- 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