X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=test%2Flib%2FExim%2FRuntest.pm;h=8d22544bfdcdd7de26d5a0d8e2ce688e82f22619;hb=c9eab729ed1dfc555a784aa98d4e58f004ef1e42;hp=ce91084f40b9d42a9d3ecc4e125c4e70ea2c4218;hpb=29f4bf00aa25030ba3454be2e318a0e7ef543a7a;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/lib/Exim/Runtest.pm b/test/lib/Exim/Runtest.pm index ce91084f4..8d22544bf 100644 --- a/test/lib/Exim/Runtest.pm +++ b/test/lib/Exim/Runtest.pm @@ -64,8 +64,10 @@ sub dynamic_socket { sub exim_binary { # two simple cases, absolute path or relative path and executable - return @_ if $_[0] =~ /^\//; - return Cwd::abs_path(shift), @_ if -x $_[0]; + if (@_) { + return @_ if $_[0] =~ /^\//; + return Cwd::abs_path(shift), @_ if -x $_[0]; + } # so we're still here, if the simple approach didn't help.