diff options
author | Brian Behlendorf <[email protected]> | 2022-03-01 08:47:30 -0800 |
---|---|---|
committer | Tony Hutter <[email protected]> | 2022-03-01 13:16:43 -0800 |
commit | e2fddf07bdaeb1db448a25d3b28fcfa63fce02d8 (patch) | |
tree | 0d6e9f21743e7cba28033d7bfe3fbb4992a23f62 | |
parent | 4cb88d7fdccfff1486840a379cdddcb4e0f027b0 (diff) |
ZTS: Modify receive-o-x_props_override.ksh exception
As previously noted in #12272 the receive-o-x_props_override.ksh test
reliably fails on FreeBSD. Since we don't expect this test to pass
move the exception from the "maybe" to "known" section. This way we
don't retry the FAILED test when it is not expected to pass.
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Ryan Moeller <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #13167
-rwxr-xr-x | tests/test-runner/bin/zts-report.py.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-runner/bin/zts-report.py.in b/tests/test-runner/bin/zts-report.py.in index 6a8553d03..e8100d0aa 100755 --- a/tests/test-runner/bin/zts-report.py.in +++ b/tests/test-runner/bin/zts-report.py.in @@ -181,6 +181,8 @@ known = { if sys.platform.startswith('freebsd'): known.update({ + 'cli_root/zfs_receive/receive-o-x_props_override': + ['FAIL', known_reason], 'cli_root/zpool_wait/zpool_wait_trim_basic': ['SKIP', trim_reason], 'cli_root/zpool_wait/zpool_wait_trim_cancel': ['SKIP', trim_reason], 'cli_root/zpool_wait/zpool_wait_trim_flag': ['SKIP', trim_reason], @@ -268,8 +270,6 @@ if sys.platform.startswith('freebsd'): maybe.update({ 'cli_root/zfs_copies/zfs_copies_002_pos': ['FAIL', known_reason], 'cli_root/zfs_inherit/zfs_inherit_001_neg': ['FAIL', known_reason], - 'cli_root/zfs_receive/receive-o-x_props_override': - ['FAIL', known_reason], 'cli_root/zfs_share/zfs_share_011_pos': ['FAIL', known_reason], 'cli_root/zfs_share/zfs_share_concurrent_shares': ['FAIL', known_reason], |