From 7c7be67ddf264281f192084521af23a1c429dd99 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Thu, 4 Dec 2025 22:59:34 +0100 Subject: test: Expand tmux right status bar to fit pass/fail/skipped counter and time I recently realised I couldn't see seconds elapsing in asciinema test recordings. That's because now that we display a SKIPPED counter, we need some extra room for characters, 64 in total: PASS: xxx | FAIL: xxx | SKIPPED: xxx | YYYY-MM-DDThh:mm:ss+00:00 Fixes: 4234ace84cdf ("test: Display count of skipped tests in status and summary") Signed-off-by: Stefano Brivio Reviewed-by: David Gibson --- test/lib/term | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/term b/test/lib/term index 79aa2b7..f596364 100755 --- a/test/lib/term +++ b/test/lib/term @@ -707,7 +707,7 @@ term() { tmux set window-status-current-style 'bg=colour1 fg=colour233 bold' tmux set status-right '#(TZ="UTC" date -Iseconds)' - tmux set status-right-length 50 + tmux set status-right-length 64 tmux set status-right-style 'bg=colour1 fg=colour233 bold' tmux set history-limit 500000 -- cgit v1.2.3