]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests: fix newline glitch in FAIL details
authorViktor Szakats <commit@vsz.me>
Wed, 17 Jul 2024 22:53:19 +0000 (00:53 +0200)
committerViktor Szakats <commit@vsz.me>
Wed, 17 Jul 2024 23:10:29 +0000 (01:10 +0200)
Follow-up to bae555359979016999a9425a2d489f219a78abdd #14174

tests/runtests.pl

index a87c46ef3be551a7d1c3fcaad9a84daaff720c0c..9cc9ef1dfac4a46373c4f6ee862717dae74766a5 100755 (executable)
@@ -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";
     }
 }