From 9f6d3a84d8f55c296d3cc15574ad75ec738b4d01 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 30 Mar 2020 17:17:01 -0700 Subject: [PATCH] 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. --- test/lisp/net/tramp-tests.el | 3 +++ 1 file changed, 3 insertions(+) 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)) -- 2.39.5