We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd6e42 commit 815c155Copy full SHA for 815c155
1 file changed
test-suites/full-stack-compose/scripts/runner.sh
@@ -115,7 +115,7 @@ wait_vm_stopped() {
115
local id=$1 deadline=$((SECONDS + 180)) status
116
while (( SECONDS < deadline )); do
117
status=$("${VMM_CLI[@]}" info "$id" --json 2>/dev/null | jq -r '.status // ""' || true)
118
- [[ "$status" != running && "$status" != starting ]] && return
+ [[ "$status" == stopped || "$status" == exited ]] && return
119
sleep 2
120
done
121
die "VM $id did not stop"
0 commit comments