diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2014-01-24 23:14:19 +0100 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2014-01-24 23:35:44 +0100 |
commit | 0d959c64b24a8a82d409bbba78882960d9f39b52 (patch) | |
tree | fe66a3b6e0dfc7685201815163ded8a2a9ce1419 | |
parent | 606e67c812aebe1c2d84c77cd6f30ed791179b10 (diff) |
runtests: Don't log command every torture iteration in verbose
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 9fd49ad31..b459c33ac 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 |