Merge pull request #16972 from edsantiago/fix_unquoted_glob

System tests: fix unquoted question marks
This commit is contained in:
OpenShift Merge Robot
2023-01-03 04:49:57 -05:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ function teardown() {
done < $SNAME_FILE
rm -f $SNAME_FILE
run_podman ? rmi -f \
run_podman '?' rmi -f \
quay.io/libpod/alpine:latest \
quay.io/libpod/busybox:latest \
quay.io/libpod/localtest:latest \
@ -35,7 +35,7 @@ function teardown() {
# The rollback tests may leave some dangling images behind, so let's prune
# them to leave a clean state.
run_podman ? image prune -f
run_podman '?' image prune -f
basic_teardown
}

View File

@ -116,7 +116,7 @@ $c2[ ]\+tcp://localhost:54321[ ]\+true" \
wait_for_port localhost $_SERVICE_PORT
local timeout=10
while [[ $timeout -gt 1 ]]; do
_run_podman_remote ? info --format '{{.Host.RemoteSocket.Path}}'
_run_podman_remote '?' info --format '{{.Host.RemoteSocket.Path}}'
if [[ $status == 0 ]]; then
break
fi