We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c74c08 commit 6bc9b73Copy full SHA for 6bc9b73
1 file changed
tests/smoke.sh
@@ -318,7 +318,10 @@ grep -Fxq 'inline:app' "$VM_HOME_ROOT/dvm-app/home/inline-ran"
318
"$TMP/local-bin/dvm-test" list >"$TMP/list.out"
319
grep -Fq app "$TMP/list.out"
320
grep -Fq '3000:3000,5173:5173' "$TMP/list.out"
321
-! grep -Fq '5355' "$TMP/list.out"
+if grep -Fq '5355' "$TMP/list.out"; then
322
+ echo "ignored port 5355 leaked into dvm list output" >&2
323
+ exit 1
324
+fi
325
326
cat >"$DVM_CONFIG/vms/app.sh" <<CONFIG
327
DVM_GUEST_HOME="$VM_HOME_ROOT/dvm-app/home"
0 commit comments