diff options
author | Brian Behlendorf <[email protected]> | 2016-12-14 09:36:14 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2016-12-14 09:36:14 -0800 |
commit | db2c364ffde84125de5aceb0c3eb6062abb0199c (patch) | |
tree | 69d88d22e6c58036e1af580ff968e0af3daad44d /TEST | |
parent | c6ced7261c1986aac7ced7f46a960025a4e053a2 (diff) |
Skip xfstests on Ubuntu 16.04 and CentOS 7
The ZFS enabled versions of xfstests fails to build cleanly on
Ubuntu 16.04 and CentOS 7. This issue should be resolved by
rebasing the ZFS patches against the latest xfstests and pushing
those patches upstream. This would allow us to use an unmodified
xfstests.
Reviewed-by: Giuseppe Di Natale <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #5481
Closes #5482
Diffstat (limited to 'TEST')
-rw-r--r-- | TEST | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -76,7 +76,13 @@ TEST_ZCONFIG_OPTIONS="-c -s10" case "$BB_NAME" in Amazon*) ;; -CentOS*) +CentOS-7*) + # ZFS enabled xfstests fails to build + TEST_XFSTESTS_SKIP="yes" + # Sporadic VERIFY(!zilog_is_dirty(zilog)) failed + TEST_ZILTEST_SKIP="yes" + ;; +CentOS-6*) # Sporadic VERIFY(!zilog_is_dirty(zilog)) failed TEST_ZILTEST_SKIP="yes" ;; @@ -88,6 +94,11 @@ RHEL*) ;; SUSE*) ;; +Ubuntu-16.04*) + # ZFS enabled xfstests fails to build + TEST_XFSTESTS_SKIP="yes" + TEST_FILEBENCH_SKIP="yes" + ;; Ubuntu*) ;; *) |