diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-12-06 07:44:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-12-06 07:44:18 +0000 |
commit | e06afaeb7ae3823f9cfd9af61585a34ded91da66 (patch) | |
tree | f2b738ae6e15ee0e986f2e46b81a06c21c91ce07 /tests | |
parent | 8c6f654b2605b13708f685b6d88a555d3915405c (diff) |
Yang Tse: With last change logging directory needs to be created sooner.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 9b52e25b7..5ae341742 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -2036,6 +2036,13 @@ $TFTPPORT = $base + 7; # TFTP (UDP) port $TFTP6PORT = $base + 8; # TFTP IPv6 (UDP) port ####################################################################### +# clear and create logging directory: +# + +cleardir($LOGDIR); +mkdir($LOGDIR, 0777); + +####################################################################### # Output curl version and host info being tested # @@ -2044,12 +2051,6 @@ if(!$listonly) { } ####################################################################### -# clear and create logging directory: -# -cleardir($LOGDIR); -mkdir($LOGDIR, 0777); - -####################################################################### # If 'all' tests are requested, find out all test numbers # |