From: Dan Fandrich Date: Fri, 24 Jan 2014 22:14:19 +0000 (+0100) Subject: runtests: Don't log command every torture iteration in verbose X-Git-Tag: curl-7_35_0~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d959c64b24a8a82d409bbba78882960d9f39b52;p=thirdparty%2Fcurl.git runtests: Don't log command every torture iteration in verbose --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 9fd49ad319..b459c33ac9 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -501,7 +501,7 @@ sub checktestcmd { sub runclient { my ($cmd)=@_; my $ret = system($cmd); - print "CMD ($ret): $cmd\n" if($verbose); + print "CMD ($ret): $cmd\n" if($verbose && !$torture); return $ret; # This is one way to test curl on a remote machine