runtests: log more commands in verbose mode
authorDaniel Stenberg <daniel@haxx.se>
Thu, 25 Apr 2013 21:40:01 +0000 (23:40 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 25 Apr 2013 21:40:01 +0000 (23:40 +0200)
... to aid tracking down failures

tests/runtests.pl

index ae6ce278e883725533b23962b61b964050266bcc..809230ce54cd8fa7669bc62f14f2ba2e71fa75f0 100755 (executable)
@@ -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\'");