From 1dd71312bf6d42ca89772942665af6209e33a552 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 18 Jul 2024 00:53:19 +0200 Subject: [PATCH] runtests: fix newline glitch in FAIL details Follow-up to bae555359979016999a9425a2d489f219a78abdd #14174 --- tests/runtests.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index a87c46ef3b..9cc9ef1dfa 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3070,7 +3070,8 @@ if($total) { if($failed && ($ok != $total)) { my $failedsorted = numsortwords($failed); - testnumdetails("\nFAIL", $failedsorted); + logmsg "\n"; + testnumdetails("FAIL", $failedsorted); logmsg "\nTESTFAIL: These test cases failed: $failedsorted\n\n"; } } -- 2.47.3