runtests: fix newline glitch in FAIL details

Follow-up to bae5553599 #14174
This commit is contained in:
Viktor Szakats 2024-07-18 00:53:19 +02:00
parent bae5553599
commit 1dd71312bf
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -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";
}
}