projects
/
platform
/
upstream
/
curl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4dc2d96
)
runtests: log more commands in verbose mode
author
Daniel Stenberg
<daniel@haxx.se>
Thu, 25 Apr 2013 21:40:01 +0000
(23:40 +0200)
committer
Daniel Stenberg
<daniel@haxx.se>
Thu, 25 Apr 2013 21:40:01 +0000
(23:40 +0200)
... to aid tracking down failures
tests/runtests.pl
patch
|
blob
|
history
diff --git
a/tests/runtests.pl
b/tests/runtests.pl
index ae6ce278e883725533b23962b61b964050266bcc..809230ce54cd8fa7669bc62f14f2ba2e71fa75f0 100755
(executable)
--- 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\'");