aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-04-04 00:07:26 +0200
committerDaniel Stenberg <daniel@haxx.se>2012-04-04 00:07:26 +0200
commit13c7b911331579d1e5196742bfa6650bb038e7a0 (patch)
treed31d20506236073306e7bb55b21b2c19230998d6 /tests
parent950b0b770ebc4736f7623b0bd3c038cf9e26ad6f (diff)
runtests: yassl and polarssl are not openssl
Don't set the "has_openssl" variable if yassl or polarssl is found as they will simply not work as 100% drop-in replacements for some of the stuff the "OpenSSL" feature is used for. I spotted this problem when doing test runs with PolarSSL builds.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 7ee7d60a3..a984e8cce 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -2269,12 +2269,10 @@ sub checksystem {
}
elsif ($libcurl =~ /yassl/i) {
$has_yassl=1;
- $has_openssl=1;
$ssllib="yassl";
}
elsif ($libcurl =~ /polarssl/i) {
$has_polarssl=1;
- $has_openssl=1;
$ssllib="polarssl";
}
elsif ($libcurl =~ /axtls/i) {