Merge pull request #25718 from ricardobranco777/runc

test: Fix runc error message
This commit is contained in:
openshift-merge-bot[bot] 2025-03-28 13:19:13 +00:00 committed by GitHub
commit 4f7b95de54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1665,7 +1665,7 @@ search | $IMAGE |
runtime=$(podman_runtime)
case "$runtime" in
crun) expect='\(executable file `` not found in $PATH\|cannot find `` in $PATH\): No such file or directory: OCI runtime attempted to invoke a command that was not found' ;;
runc) expect='runc: runc create failed: unable to start container process: exec: "": executable file not found in $PATH: OCI runtime attempted to invoke a command that was not found' ;;
runc) expect='runc: runc create failed: unable to start container process:.* exec: "": executable file not found in $PATH: OCI runtime attempted to invoke a command that was not found' ;;
*) skip "Unknown runtime '$runtime'" ;;
esac