aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2018-08-08 19:57:54 +0200
committerMichael Albinus2018-08-08 19:57:54 +0200
commit5025fb617d19f08d907e89697616d4dfd912baa5 (patch)
tree37da7477d01e9096345b73eda0624c40a2cef74d
parentc85ff212dcd0817b833032650f1d52850e8a3c2e (diff)
downloademacs-5025fb617d19f08d907e89697616d4dfd912baa5.tar.gz
emacs-5025fb617d19f08d907e89697616d4dfd912baa5.zip
Fix problems in tramp-tests
* test/lisp/net/tramp-tests.el (tramp-test45-unload): Filter out tramp-archive objects. (Bug#32304) * test/lisp/net/tramp-tests.el (tramp-test43-auto-load): Add skip condition. (Bug#32304) (tramp-test43-unload): Tag as :unstable.
-rw-r--r--test/lisp/net/tramp-tests.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index da360fe566c..7ca680087a9 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -5056,6 +5056,8 @@ process sentinels. They shall not disturb each other."
5056;; This test is inspired by Bug#29163. 5056;; This test is inspired by Bug#29163.
5057(ert-deftest tramp-test43-auto-load () 5057(ert-deftest tramp-test43-auto-load ()
5058 "Check that Tramp autoloads properly." 5058 "Check that Tramp autoloads properly."
5059 (skip-unless (tramp--test-enabled))
5060
5059 (let ((default-directory (expand-file-name temporary-file-directory)) 5061 (let ((default-directory (expand-file-name temporary-file-directory))
5060 (code 5062 (code
5061 (format 5063 (format
@@ -5160,7 +5162,7 @@ process sentinels. They shall not disturb each other."
5160(ert-deftest tramp-test44-unload () 5162(ert-deftest tramp-test44-unload ()
5161 "Check that Tramp and its subpackages unload completely. 5163 "Check that Tramp and its subpackages unload completely.
5162Since it unloads Tramp, it shall be the last test to run." 5164Since it unloads Tramp, it shall be the last test to run."
5163 :tags '(:expensive-test) 5165 :tags '(:expensive-test :unstable)
5164 (skip-unless noninteractive) 5166 (skip-unless noninteractive)
5165 ;; The autoloaded Tramp objects are different since Emacs 26.1. We 5167 ;; The autoloaded Tramp objects are different since Emacs 26.1. We
5166 ;; cannot test older Emacsen, therefore. 5168 ;; cannot test older Emacsen, therefore.
@@ -5230,6 +5232,7 @@ Since it unloads Tramp, it shall be the last test to run."
5230;; * Fix `tramp-test29-start-file-process' on MS Windows (`process-send-eof'?). 5232;; * Fix `tramp-test29-start-file-process' on MS Windows (`process-send-eof'?).
5231;; * Fix `tramp-test30-interrupt-process', timeout doesn't work reliably. 5233;; * Fix `tramp-test30-interrupt-process', timeout doesn't work reliably.
5232;; * Fix Bug#16928 in `tramp-test42-asynchronous-requests'. 5234;; * Fix Bug#16928 in `tramp-test42-asynchronous-requests'.
5235;; * Check why `tramp-test44-unload' fails when running as only test.
5233 5236
5234(provide 'tramp-tests) 5237(provide 'tramp-tests)
5235;;; tramp-tests.el ends here 5238;;; tramp-tests.el ends here