From: Viktor Szakats Date: Wed, 17 Jul 2024 22:53:19 +0000 (+0200) Subject: runtests: fix newline glitch in FAIL details X-Git-Tag: curl-8_9_0~33 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1dd71312bf6d42ca89772942665af6209e33a552;p=thirdparty%2Fcurl.git runtests: fix newline glitch in FAIL details Follow-up to bae555359979016999a9425a2d489f219a78abdd #14174 --- 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"; } }