From: Daniel Stenberg Date: Tue, 26 Aug 2025 14:05:07 +0000 (+0200) Subject: runtests: remove warning message X-Git-Tag: curl-8_16_0~80 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=98c78b2f14889a25f1652e5891398618f43b8da1;p=thirdparty%2Fcurl.git runtests: remove warning message Every time we first run runtests with -j and then again *without* -j, this message was shown: "Warning: $runnerid: cleardir(log) failed" Not anymore. Closes #18404 --- diff --git a/tests/runtests.pl b/tests/runtests.pl index fd62327102..4945e94cda 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1921,7 +1921,7 @@ sub singletest { my $logdir = getrunnerlogdir($runnerid); # first, remove all lingering log & lock files if(!cleardir($logdir)) { - logmsg "Warning: $runnerid: cleardir($logdir) failed\n"; + #logmsg "Warning: $runnerid: cleardir($logdir) failed\n"; } if(!cleardir("$logdir/$LOCKDIR")) { logmsg "Warning: $runnerid: cleardir($logdir/$LOCKDIR) failed\n";