diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-16 19:50:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-16 19:50:39 +0000 |
commit | 3aa92010dfd56fcc674fb998ad2d8551acf0cba9 (patch) | |
tree | 8bfce9f3532872ae042563ed7af0e2d6f597f32f | |
parent | 3dace12777e27a7732acb25ae78f86ced8ae04da (diff) | |
parent | 06b3a4c1cfac4bc1d56ddb77df3b0dcc7e5f91b4 (diff) | |
download | podman-3aa92010dfd56fcc674fb998ad2d8551acf0cba9.tar.gz podman-3aa92010dfd56fcc674fb998ad2d8551acf0cba9.tar.bz2 podman-3aa92010dfd56fcc674fb998ad2d8551acf0cba9.zip |
Merge pull request #15345 from edsantiago/runc_fix
system tests: fix broken runc test
-rw-r--r-- | test/system/410-selinux.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/410-selinux.bats b/test/system/410-selinux.bats index 082482c7a..cc86f282a 100644 --- a/test/system/410-selinux.bats +++ b/test/system/410-selinux.bats @@ -212,7 +212,7 @@ function check_label() { # https://github.com/opencontainers/selinux/pull/148/commits/a5dc47f74c56922d58ead05d1fdcc5f7f52d5f4e # from failed to set /proc/self/attr/keycreate on procfs # to write /proc/self/attr/keycreate: invalid argument - runc) expect="OCI runtime error: .*: \(failed to set|write\) /proc/self/attr/keycreate" ;; + runc) expect="OCI runtime error: .*: \(failed to set\|write\) /proc/self/attr/keycreate.*" ;; *) skip "Unknown runtime '$runtime'";; esac |