From 27777949a09c362abc921d15a6260d42e99cd377 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 25 Apr 2013 23:40:01 +0200 Subject: [PATCH] runtests: log more commands in verbose mode ... to aid tracking down failures --- tests/runtests.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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\'"); -- 2.40.0