Merge pull request #10874 from stevenhorsman/skip-consistently-failing-block-volume-test

tests: Skip block volume test on fc, stratovirt
This commit is contained in:
Steve Horsman 2025-02-13 15:39:45 +00:00 committed by GitHub
commit 0a39f59a9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,13 @@ load "${BATS_TEST_DIRNAME}/../../common.bash"
load "${BATS_TEST_DIRNAME}/tests_common.sh"
setup() {
[ "${KATA_HYPERVISOR}" == "qemu-runtime-rs" ] && skip "See: https://github.com/kata-containers/kata-containers/issues/10373"
case "${KATA_HYPERVISOR}" in
qemu-runtime-rs)
skip "See: https://github.com/kata-containers/kata-containers/issues/10373" ;;
fc|stratovirt)
skip "See: https://github.com/kata-containers/kata-containers/issues/10873" ;;
esac
get_pod_config_dir
node="$(get_one_kata_node)"
@ -66,7 +72,12 @@ setup() {
}
teardown() {
[ "${KATA_HYPERVISOR}" == "qemu-runtime-rs" ] && skip "See: https://github.com/kata-containers/kata-containers/issues/10373"
case "${KATA_HYPERVISOR}" in
qemu-runtime-rs)
skip "See: https://github.com/kata-containers/kata-containers/issues/10373" ;;
fc|stratovirt)
skip "See: https://github.com/kata-containers/kata-containers/issues/10873" ;;
esac
# Debugging information
kubectl describe "pod/$pod_name"