From: Glenn Morris Date: Tue, 31 Mar 2020 00:17:01 +0000 (-0700) Subject: Mark recently failing Tramp tests on hydra X-Git-Tag: emacs-28.0.90~7685 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9f6d3a84d8f55c296d3cc15574ad75ec738b4d01;p=emacs.git Mark recently failing Tramp tests on hydra * test/lisp/net/tramp-tests.el (tramp-test29-start-file-process) (tramp-test30-make-process, tramp-test33-environment-variables): Expect failure on hydra.nixos.org, since March 29 Tramp cache changes. --- diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index e6c6b28c58a..2deab9af250 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -4252,6 +4252,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." (ert-deftest tramp-test29-start-file-process () "Check `start-file-process'." + :expected-result (if (getenv "EMACS_HYDRA_CI") :failed :passed) :tags '(:expensive-test) (skip-unless (tramp--test-enabled)) (skip-unless (or (tramp--test-adb-p) (tramp--test-sh-p))) @@ -4325,6 +4326,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." (ert-deftest tramp-test30-make-process () "Check `make-process'." + :expected-result (if (getenv "EMACS_HYDRA_CI") :failed :passed) :tags '(:expensive-test) (skip-unless (tramp--test-enabled)) (skip-unless (or (tramp--test-adb-p) (tramp--test-sh-p))) @@ -4741,6 +4743,7 @@ INPUT, if non-nil, is a string sent to the process." ;; This test is inspired by Bug#23952. (ert-deftest tramp-test33-environment-variables () "Check that remote processes set / unset environment variables properly." + :expected-result (if (getenv "EMACS_HYDRA_CI") :failed :passed) :tags '(:expensive-test) (skip-unless (tramp--test-enabled)) (skip-unless (tramp--test-sh-p))