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 <behlendorf1@llnl.gov>
Closes #5381
This commit is contained in:
Brian Behlendorf 2016-11-08 13:57:17 -08:00 committed by GitHub
parent 976246fadd
commit ffb78320c8

11
TEST
View File

@ -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