diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-05 14:03:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-05 14:03:48 +0000 |
commit | 1717963e3d43a7de110903c6e24b060f89b9952f (patch) | |
tree | b023c28797b47ff1601673c9a5c9b4914011df0e | |
parent | 4646a1ffa9e351a8645e206fe8a35487122d27b3 (diff) |
show the ftp server invoke line when -d is used
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index e2590ab01..748ec7fb5 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -154,6 +154,10 @@ sub runftpserver { if ($RUNNING != 1) { my $flag=$debugprotocol?"-v ":""; + if($debugprotocol) { + print "* Starts ftp server verbose:\n"; + print "perl $srcdir/ftpserver.pl $flag $FTPPORT &\n"; + } system("perl $srcdir/ftpserver.pl $flag $FTPPORT &"); sleep 1; # give it a little time to start } |