diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-03-12 20:50:16 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-03-12 20:50:16 +0000 |
commit | ae07fd2ba82d4029d65a199073b6fe0c930e9bfa (patch) | |
tree | 63e1b0a69bf292d160981f4a47b30ff53a19f0c5 | |
parent | d76a73404347d7c1112dded81ce9a1172ce07884 (diff) |
libcurl supplies its own crypto hash functions when SSL is disabled, so
'crypto' tests aren't dependent on SSL. Compiling with
--disable-crypto-auth will cause test failures, however.
-rwxr-xr-x | tests/runtests.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 53e4cd4e5..ca43309ca 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1045,9 +1045,6 @@ sub checksystem { if($feat =~ /SSL/i) { # ssl enabled $ssl_version=1; - # curl doesn't list cryptographic support separately, so treat - # it the same as SSL for the time being - $has_crypto=1; } if($feat =~ /Largefile/i) { # large file support @@ -1123,6 +1120,10 @@ sub checksystem { die "can't run torture tests since curl was not build with debug"; } + # curl doesn't list cryptographic support separately, so assume it's + # always available + $has_crypto=1; + my $hostname=`hostname`; my $hosttype=`uname -a`; |