From 6724d5c1c9924f07cc5f81215e406d641acbc4bf Mon Sep 17 00:00:00 2001 From: utam0k Date: Sat, 21 Aug 2021 15:54:09 +0900 Subject: [PATCH] exclude blkio test case in runtime-tools bacause it doesn't support linux kernel 5.0 or later. --- README.md | 2 +- integration_test.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ef9c16d7..e2b4b4244 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ youki is not at the practical stage yet. However, it is getting closer to practi | Seccomp | Filtering system calls | WIP on [#25](https://github.com/containers/youki/issues/25) | | Hooks | Add custom processing during container creation | ✅ | | Rootless | Running a container without root privileges | It works, but cgroups isn't supported. WIP on [#77](https://github.com/containers/youki/issues/77) | -| OCI Compliance | Compliance with OCI Runtime Spec | 37 out of 57 test cases passing | +| OCI Compliance | Compliance with OCI Runtime Spec | 37 out of 55 test cases passing | # Getting Started diff --git a/integration_test.sh b/integration_test.sh index f9c04cb08..df7b49279 100755 --- a/integration_test.sh +++ b/integration_test.sh @@ -17,6 +17,8 @@ test_cases=( "kill/kill.t" "kill_no_effect/kill_no_effect.t" "killsig/killsig.t" + # This case includes checking for features that are excluded from linux kernel 5.0, so even runc doesn't pass it. + # ref. https://github.com/docker/cli/pull/2908 # "linux_cgroups_blkio/linux_cgroups_blkio.t" "linux_cgroups_cpus/linux_cgroups_cpus.t" "linux_cgroups_devices/linux_cgroups_devices.t" @@ -24,6 +26,8 @@ test_cases=( "linux_cgroups_memory/linux_cgroups_memory.t" "linux_cgroups_network/linux_cgroups_network.t" "linux_cgroups_pids/linux_cgroups_pids.t" + # This case includes checking for features that are excluded from linux kernel 5.0, so even runc doesn't pass it. + # ref. https://github.com/docker/cli/pull/2908 # "linux_cgroups_relative_blkio/linux_cgroups_relative_blkio.t" "linux_cgroups_relative_cpus/linux_cgroups_relative_cpus.t" "linux_cgroups_relative_devices/linux_cgroups_relative_devices.t"