From 0d89c9096dca6f1e2dc35bb2e2aa5747b89a815c Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Wed, 16 Aug 2023 18:20:11 -0700 Subject: [PATCH] runtests: slightly increase the longest log file displayed The new limit provides enough space for a 64 KiB data block to be logged in a trace file, plus a few lines at the start and end for context. This happens to be the amount of data sent at a time in a PUT request. --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index 01a8a0aa68..5c3643f994 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2672,7 +2672,7 @@ sub displaylogcontent { logmsg " $line\n"; } $linecount++; - $truncate = $linecount > 1000; + $truncate = $linecount > 1200; } } close($single);