mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-19 08:28:19 +00:00
ci: k8s: Skip empty dir tests also for TDX
Wainer noticed this is failing for the coco-qemu-dev case, and decided to skip it, notifying me that he didn't fully understand why it was not failing on TDX. Turns out, though, this is also failing on TDX, and we need to skip it there as well. Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
parent
72a71ff2bf
commit
03a7cf4b02
@ -18,6 +18,8 @@ assert_equal() {
|
||||
}
|
||||
|
||||
setup() {
|
||||
[ "${KATA_HYPERVISOR:-}" = "qemu-tdx" ] && \
|
||||
skip "This test has failed for ${KATA_HYPERVISOR:-}"
|
||||
[ "${KATA_HYPERVISOR:-}" = "qemu-coco-dev" ] && \
|
||||
skip "This test has failed for ${KATA_HYPERVISOR:-}"
|
||||
pod_name="sharevol-kata"
|
||||
@ -70,6 +72,8 @@ setup() {
|
||||
}
|
||||
|
||||
teardown() {
|
||||
[ "${KATA_HYPERVISOR:-}" = "qemu-tdx" ] && \
|
||||
skip "This test has failed for ${KATA_HYPERVISOR:-}"
|
||||
[ "${KATA_HYPERVISOR:-}" = "qemu-coco-dev" ] && \
|
||||
skip "This test has failed for ${KATA_HYPERVISOR:-}"
|
||||
# Debugging information
|
||||
|
Loading…
Reference in New Issue
Block a user