From: Lars Magne Ingebrigtsen Date: Sat, 5 Mar 2016 15:46:42 +0000 (+0100) Subject: Don't run ipv6 test on systems without ipv6 X-Git-Tag: emacs-26.0.90~2366 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=76b97fb0f9674fb0d0a888bc3aefc79a03faab70;p=emacs.git Don't run ipv6 test on systems without ipv6 * test/lisp/net/network-stream-tests.el (connect-to-tls-ipv6-nowait): Skip on systems without ipv6. --- diff --git a/test/lisp/net/network-stream-tests.el b/test/lisp/net/network-stream-tests.el index c6a20b09690..dbbf40bfac1 100644 --- a/test/lisp/net/network-stream-tests.el +++ b/test/lisp/net/network-stream-tests.el @@ -238,6 +238,7 @@ (skip-unless (executable-find "gnutls-serv")) (skip-unless (gnutls-available-p)) (skip-unless (not (eq system-type 'windows-nt))) + (skip-unless (featurep 'make-network-process '(family ipv6))) (let ((server (make-tls-server 44333)) (times 0) proc status)