mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00: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:
parent
857c5c24d6
commit
c0abae57f6
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue