diff options
author | Ryan Moeller <[email protected]> | 2021-04-08 16:21:53 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-08 13:21:53 -0700 |
commit | 383401589e0f4e11b31cbae64aa42afff7ed3132 (patch) | |
tree | bdf05e9b631cf32ab94e58e8f4a0dec7b482b64f /tests | |
parent | e778b0485baaddd55284b138a517e0a028bd15eb (diff) |
ZTS: Tests using zhack may fail on FreeBSD
As described in #11854, zhack is occasionally segfaulting on FreeBSD.
Debugging this is proving to be tricky. To avoid false positives in
the CI add entries for the tests that use zhack in zts-report to
accept that they may occasionally fail on FreeBSD.
Reviewed-by: John Kennedy <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Issue #11854
Closes #11855
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test-runner/bin/zts-report.py.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test-runner/bin/zts-report.py.in b/tests/test-runner/bin/zts-report.py.in index 5823d94c9..070d22db9 100755 --- a/tests/test-runner/bin/zts-report.py.in +++ b/tests/test-runner/bin/zts-report.py.in @@ -253,8 +253,15 @@ if sys.platform.startswith('freebsd'): 'cli_root/zfs_share/zfs_share_concurrent_shares': ['FAIL', known_reason], 'cli_root/zpool_import/zpool_import_012_pos': ['FAIL', known_reason], + 'cli_root/zpool_import/zpool_import_features_001_pos': + ['FAIL', '11854'], + 'cli_root/zpool_import/zpool_import_features_002_neg': + ['FAIL', '11854'], + 'cli_root/zpool_import/zpool_import_features_003_pos': + ['FAIL', '11854'], 'delegate/zfs_allow_003_pos': ['FAIL', known_reason], 'inheritance/inherit_001_pos': ['FAIL', '11829'], + 'pool_checkpoint/checkpoint_zhack_feat': ['FAIL', '11854'], 'removal/removal_condense_export': ['FAIL', known_reason], 'removal/removal_with_export': ['FAIL', known_reason], 'resilver/resilver_restart_001': ['FAIL', known_reason], |