1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Skip TLS tests if we don't have openssl

* test/lisp/net/network-stream-tests.el (connect-to-tls): Skip
TLS tests if we don't have openssl and GnuTLS.
This commit is contained in:
Lars Ingebrigtsen 2016-02-08 18:28:00 +11:00
parent ea87d91d57
commit 04913ccfa9

View file

@ -163,6 +163,8 @@
"-www"))
(ert-deftest connect-to-tls ()
(skip-unless (executable-find "openssl"))
(skip-unless (gnutls-available-p))
(let ((server (make-tls-server))
(times 0)
proc status)