mirror of
https://github.com/curl/curl.git
synced 2026-07-26 10:17:17 +03:00
runtests: log more commands in verbose mode
... to aid tracking down failures
This commit is contained in:
parent
4dc2d965d6
commit
27777949a0
1 changed files with 3 additions and 1 deletions
|
|
@ -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\'");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue