diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-01-08 09:32:41 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-08 09:32:41 +0000 | 
| commit | b545ac6391e317bfff5b10a5fda1f566c9a56531 (patch) | |
| tree | 108f753bc7f7045ce66891322389e1f158ef7091 | |
| parent | a922132e4a81d9efa0d4ef686be66b5c3a0304df (diff) | |
test case 38 added a few new requirements
| -rwxr-xr-x | tests/runtests.pl | 16 | 
1 files changed, 13 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index be8cb87c7..d905c9b7b 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -483,9 +483,17 @@ sub singletest {          writearray($filename, \@inputfile);      } +    my %cmdhash = getpartattr("client", "command"); +      my $out=""; -    if (!@validstdout) { -        $out="--output $CURLOUT "; + +    if($cmdhash{'option'} eq "no-output") { +        #print "*** We don't slap on --output\n"; +    } +    else { +        if (!@validstdout) { +            $out="--output $CURLOUT "; +        }      }      # run curl, add -v for debug information output @@ -832,7 +840,9 @@ if($testthis[0] ne "") {  # Output curl version and host info being tested  # -displaydata(); +if(!$listonly) { +    displaydata(); +}  #######################################################################  # clear and create logging directory:  | 
