diff --git a/tests/runner.pm b/tests/runner.pm index fa15accda3..48f5734763 100644 --- a/tests/runner.pm +++ b/tests/runner.pm @@ -1466,10 +1466,7 @@ sub ipcrecv { # print "ipcrecv $funcname\n"; # Synchronously call the desired function my @res; - if($funcname eq "runner_clearlocks") { - @res = runner_clearlocks(@$argsarrayref); - } - elsif($funcname eq "runner_shutdown") { + if($funcname eq "runner_shutdown") { runner_shutdown(@$argsarrayref); # Special case: no response will be forthcoming return 1; @@ -1503,16 +1500,6 @@ sub ipcrecv { return 0; } -################################################################### -# Kill the server processes that still have lock files in a directory -sub runner_clearlocks { - if(clearlogs()) { - logmsg "Warning: log messages were lost\n"; - } - return clearlogs(); -} - - ################################################################### # Kill all server processes sub runner_stopservers {