From ac90898a4662e565cfb9515e47757b01b8d0b8d4 Mon Sep 17 00:00:00 2001 From: be-nj Date: Wed, 26 Aug 2026 14:34:18 +0200 Subject: [PATCH] Smoke test: truncate the demo server log per run --- tests/smoke.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/smoke.sh b/tests/smoke.sh index 593c102..1489f85 100755 --- a/tests/smoke.sh +++ b/tests/smoke.sh @@ -35,6 +35,9 @@ done mkdir -p "$RUNS/screenshots" LOG="$RUNS/smoke.log" : > "$LOG" +# The player retries the fake demo stream for as long as it is on screen, so +# without this the request log grows by a few hundred KB per run. +: > "$RUNS/http.log" step() { printf '\n== %s\n' "$1" | tee -a "$LOG"; } fail() { printf '\nFAIL: %s\n' "$1" | tee -a "$LOG" >&2; exit 1; }