diff options
author | Yiming Jing <jingyiming@baidu.com> | 2018-09-10 13:11:23 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-13 08:26:45 +0200 |
commit | dd8151d016acecb8e8c2c91ab4811e517dea5bc4 (patch) | |
tree | 3fc8cfd0a9df09cd63cbcce7558d77ea294c80e8 | |
parent | 57348eb97d1b8fc3742e02c6587d2d02ff592da5 (diff) |
runtests.pl: run tests against the MesaLink vtls backend
-rwxr-xr-x | tests/runtests.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index de0fd8587..7258fdf31 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -251,6 +251,7 @@ my $has_darwinssl; # built with DarwinSSL (Secure Transport) my $has_boringssl; # built with BoringSSL my $has_libressl; # built with libressl my $has_mbedtls; # built with mbedTLS +my $has_mesalink; # built with MesaLink my $has_sslpinning; # built with a TLS backend that supports pinning @@ -2747,6 +2748,10 @@ sub checksystem { $has_cares=1; $resolver="c-ares"; } + if ($libcurl =~ /mesalink/i) { + $has_mesalink=1; + $ssllib="MesaLink"; + } } elsif($_ =~ /^Protocols: (.*)/i) { # these are the protocols compiled in to this libcurl |