diff options
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index ae6ce278e..809230ce5 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\'"); |