ZTS: remove skips for zvol_misc tests
Last commit should fix the underlying problem, so these should be passing reliably again. Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Sponsored-by: Klara, Inc. Sponsored-by: Wasabi Technology, Inc. Signed-off-by: Rob Norris <rob.norris@klarasystems.com> Closes #16364
This commit is contained in:
parent
670147be53
commit
6c7d41a643
|
@ -351,10 +351,6 @@ elif sys.platform.startswith('linux'):
|
||||||
'mmp/mmp_active_import': ['FAIL', known_reason],
|
'mmp/mmp_active_import': ['FAIL', known_reason],
|
||||||
'mmp/mmp_exported_import': ['FAIL', known_reason],
|
'mmp/mmp_exported_import': ['FAIL', known_reason],
|
||||||
'mmp/mmp_inactive_import': ['FAIL', known_reason],
|
'mmp/mmp_inactive_import': ['FAIL', known_reason],
|
||||||
'zvol/zvol_misc/zvol_misc_fua': ['SKIP', 14872],
|
|
||||||
'zvol/zvol_misc/zvol_misc_snapdev': ['FAIL', 12621],
|
|
||||||
'zvol/zvol_misc/zvol_misc_trim': ['SKIP', 14872],
|
|
||||||
'zvol/zvol_misc/zvol_misc_volmode': ['FAIL', known_reason],
|
|
||||||
})
|
})
|
||||||
|
|
||||||
# Not all Github actions runners have scsi_debug module, so we may skip
|
# Not all Github actions runners have scsi_debug module, so we may skip
|
||||||
|
|
|
@ -45,15 +45,6 @@ fi
|
||||||
|
|
||||||
if ! is_linux ; then
|
if ! is_linux ; then
|
||||||
log_unsupported "Only linux supports dd with oflag=dsync for FUA writes"
|
log_unsupported "Only linux supports dd with oflag=dsync for FUA writes"
|
||||||
else
|
|
||||||
if [[ $(linux_version) -gt $(linux_version "6.2") ]]; then
|
|
||||||
log_unsupported "Disabled while issue #14872 is being worked"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Disabled for the CentOS 9 kernel
|
|
||||||
if [[ $(linux_version) -eq $(linux_version "5.14") ]]; then
|
|
||||||
log_unsupported "Disabled while issue #14872 is being worked"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
typeset datafile1="$(mktemp zvol_misc_fua1.XXXXXX)"
|
typeset datafile1="$(mktemp zvol_misc_fua1.XXXXXX)"
|
||||||
|
|
|
@ -44,15 +44,6 @@
|
||||||
verify_runnable "global"
|
verify_runnable "global"
|
||||||
|
|
||||||
if is_linux ; then
|
if is_linux ; then
|
||||||
if [[ $(linux_version) -gt $(linux_version "6.2") ]]; then
|
|
||||||
log_unsupported "Disabled while issue #14872 is being worked"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Disabled for the CentOS 9 kernel
|
|
||||||
if [[ $(linux_version) -eq $(linux_version "5.14") ]]; then
|
|
||||||
log_unsupported "Disabled while issue #14872 is being worked"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# We need '--force' here since the prior tests may leave a filesystem
|
# We need '--force' here since the prior tests may leave a filesystem
|
||||||
# on the zvol, and blkdiscard will see that filesystem and print a
|
# on the zvol, and blkdiscard will see that filesystem and print a
|
||||||
# warning unless you force it.
|
# warning unless you force it.
|
||||||
|
|
Loading…
Reference in New Issue