Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily exclude known-failing tests #12849

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/test-runner/bin/zts-report.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,10 @@ elif sys.platform.startswith('linux'):
'casenorm/sensitive_formd_lookup': ['FAIL', '7633'],
'casenorm/sensitive_formd_delete': ['FAIL', '7633'],
'removal/removal_with_zdb': ['SKIP', known_reason],
'cli_root/zpool_import/import_rewind_device_replaced':
['FAIL', '12848'],
'mmp/mmp_inactive_import': ['FAIL', '12848'],
'no_space/enospc_002_pos': ['FAIL', '12848'],
})


Expand Down Expand Up @@ -294,8 +298,6 @@ elif sys.platform.startswith('linux'):
'mmp/mmp_active_import': ['FAIL', known_reason],
'mmp/mmp_exported_import': ['FAIL', known_reason],
'mmp/mmp_inactive_import': ['FAIL', known_reason],
'refreserv/refreserv_raidz': ['FAIL', known_reason],
'snapshot/rollback_003_pos': ['FAIL', known_reason],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Both of these exceptions were recently removed from master (#12897, #12898), so you can drop this hunk with a rebase. In fact, looking more carefully I see all three of the remaining tests are already included in the exceptions. So it seems like we could just close out this PR as no longer needed.

That said, I seem to be able to reliably reproduce the enospc_002_pos failure so I'm going to have a look at that.

'zvol/zvol_misc/zvol_misc_snapdev': ['FAIL', '12621'],
'zvol/zvol_misc/zvol_misc_volmode': ['FAIL', known_reason],
})
Expand Down