aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2017-12-15 09:37:42 +0100
committerMichael Albinus2017-12-15 09:37:42 +0100
commit95606af8b06129f82efef54714bb95d6e95c0836 (patch)
tree505aabc5ed017dc833816287f5b5d5a3d1ead6b9
parent9bf66c6beec81927e960d31e78b7b3bad060c63e (diff)
downloademacs-95606af8b06129f82efef54714bb95d6e95c0836.tar.gz
emacs-95606af8b06129f82efef54714bb95d6e95c0836.zip
Fix Bug#29712 in tramp-tests.el
* test/lisp/net/tramp-tests.el (tramp-test32-environment-variables-and-port-numbers): Skip for macOS. (Bug#29712)
-rw-r--r--test/lisp/net/tramp-tests.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index 1261a81378d..c1577008d31 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -3637,6 +3637,8 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
3637(ert-deftest tramp-test32-environment-variables-and-port-numbers () 3637(ert-deftest tramp-test32-environment-variables-and-port-numbers ()
3638 "Check that two connections with separate ports are different." 3638 "Check that two connections with separate ports are different."
3639 (skip-unless (tramp--test-enabled)) 3639 (skip-unless (tramp--test-enabled))
3640 ;; Bug#29712.
3641 (skip-unless (not (eq system-type 'darwin)))
3640 ;; We test it only for the mock-up connection; otherwise there might 3642 ;; We test it only for the mock-up connection; otherwise there might
3641 ;; be problems with the used ports. 3643 ;; be problems with the used ports.
3642 (skip-unless (and (eq tramp-syntax 'default) 3644 (skip-unless (and (eq tramp-syntax 'default)