diff options
author | Brian Behlendorf <[email protected]> | 2016-11-08 13:57:17 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2016-11-08 13:57:17 -0800 |
commit | ffb78320c8040e10e754f1358476beb04c943510 (patch) | |
tree | e7d7df8060bf7706509b1c15f8352653f901635c /TEST | |
parent | 976246fadde25790cec3de50c01c689d98d84e0c (diff) |
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 <[email protected]>
Closes #5381
Diffstat (limited to 'TEST')
-rw-r--r-- | TEST | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |