From 98c78b2f14889a25f1652e5891398618f43b8da1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 26 Aug 2025 16:05:07 +0200 Subject: [PATCH] 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 --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.47.3