From 392a8f4ac59215b55cd8a488265e609cd979f4fe Mon Sep 17 00:00:00 2001 From: Ricardo Branco Date: Fri, 28 Mar 2025 12:53:42 +0100 Subject: [PATCH] test: Fix runc error message Signed-off-by: Ricardo Branco --- test/system/030-run.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 81b6e41422..348e1e962b 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -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