diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2022-07-18 15:48:14 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2022-07-18 15:48:14 +0200 |
commit | e4ce9e514f0243b9dd5295453a01480ce7adfac2 (patch) | |
tree | 3c3b0d8c7261557e2955328867740586a7371527 /test/lisp/net | |
parent | 50d96b95f0aa7e81309d5a4684ef1239d9b4c3fa (diff) | |
download | emacs-e4ce9e514f0243b9dd5295453a01480ce7adfac2.tar.gz emacs-e4ce9e514f0243b9dd5295453a01480ce7adfac2.tar.bz2 emacs-e4ce9e514f0243b9dd5295453a01480ce7adfac2.zip |
Adapt Tramp new test macros
* test/lisp/net/tramp-tests.el (tramp--test-deftest-with-stat)
(tramp--test-deftest-with-perl, tramp--test-deftest-with-ls):
Skip for all methods but those from tramp-sh.el.
Diffstat (limited to 'test/lisp/net')
-rw-r--r-- | test/lisp/net/tramp-tests.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index 2e2f9333ba9..551a70a21ad 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -3569,6 +3569,7 @@ This tests also `access-file', `file-readable-p', ;; "\nUse the \"stat\" command.") :tags '(:expensive-test) (skip-unless (tramp--test-enabled)) + (skip-unless (tramp--test-sh-p)) (skip-unless (tramp-get-remote-stat tramp-test-vec)) (let ((default-directory ert-remote-temporary-file-directory) (ert-test (ert-get-test ',test)) @@ -3587,6 +3588,7 @@ This tests also `access-file', `file-readable-p', ;; "\nUse the \"perl\" command.") :tags '(:expensive-test) (skip-unless (tramp--test-enabled)) + (skip-unless (tramp--test-sh-p)) (skip-unless (tramp-get-remote-perl tramp-test-vec)) (let ((default-directory ert-remote-temporary-file-directory) (ert-test (ert-get-test ',test)) @@ -3608,6 +3610,7 @@ This tests also `access-file', `file-readable-p', ;; "\nUse the \"ls\" command.") :tags '(:expensive-test) (skip-unless (tramp--test-enabled)) + (skip-unless (tramp--test-sh-p)) (let ((default-directory ert-remote-temporary-file-directory) (ert-test (ert-get-test ',test)) (tramp-connection-properties |