diff --git a/tests/runtests.pl b/tests/runtests.pl index ae6ce278e883725533b23962b61b964050266bcc..809230ce54cd8fa7669bc62f14f2ba2e71fa75f0 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -494,7 +494,9 @@ sub checktestcmd { # sub runclient { my ($cmd)=@_; - return system($cmd); + my $ret = system($cmd); + print "CMD ($ret): $cmd\n" if($verbose); + return $ret; # This is one way to test curl on a remote machine # my $out = system("ssh $CLIENTIP cd \'$pwd\' \\; \'$cmd\'");