diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-06 23:42:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-06 23:42:09 +0100 |
commit | 8a2238440635d497dbdacceb6826c850582766ea (patch) | |
tree | 72e03b69c79e2f2cffc4e0a7d027effd36e9a9bc /test | |
parent | 3ac1219cbcfe8ccd83ed7b73b92e1d6f13abf550 (diff) | |
parent | 1941d45e327c54eb054d6f63d852dfebfe19c18b (diff) | |
download | podman-8a2238440635d497dbdacceb6826c850582766ea.tar.gz podman-8a2238440635d497dbdacceb6826c850582766ea.tar.bz2 podman-8a2238440635d497dbdacceb6826c850582766ea.zip |
Merge pull request #12758 from rhatdan/runtime
add OCI Runtime name to errors
Diffstat (limited to 'test')
-rw-r--r-- | test/system/030-run.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index d81a0758c..317026710 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -14,8 +14,8 @@ load helpers # ...but check the configured runtime engine, and switch to crun as needed run_podman info --format '{{ .Host.OCIRuntime.Path }}' if expr "$output" : ".*/crun"; then - err_no_such_cmd="Error: executable file.* not found in \$PATH: No such file or directory: OCI runtime attempted to invoke a command that was not found" - err_no_exec_dir="Error: open executable: Operation not permitted: OCI permission denied" + err_no_such_cmd="Error:.*executable file.* not found in \$PATH: No such file or directory: OCI runtime attempted to invoke a command that was not found" + err_no_exec_dir="Error:.*open executable: Operation not permitted: OCI permission denied" fi tests=" |