Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/system/030-run.bats
Original file line number Diff line number Diff line change
Expand Up @@ -1638,7 +1638,7 @@ search | $IMAGE |
"$command --authfile=nonexistent-path"

if [[ "$command" != "logout" ]]; then
REGISTRY_AUTH_FILE=$bogus run_podman ? $command $args
REGISTRY_AUTH_FILE=$bogus run_podman '?' $command $args
assert "$output" !~ "credential file is not accessible" \
"$command REGISTRY_AUTH_FILE=nonexistent-path"

Expand Down
4 changes: 3 additions & 1 deletion test/system/130-kill.bats
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ load helpers
run_podman run --rm -d --name $cname $IMAGE top
run_podman kill $cname
is "$output" $cname
run_podman ? wait $cname
# Wait for the container to get removed to avoid the leak check from triggering,
# since it might have already been removed here ignore the exit code check.
run_podman '?' wait --condition=removing $cname
}

# bats test_tags=ci:parallel
Expand Down