Tag some unstable tests, and skip by default (bug#24503)

* Makefile.in (check-all): New phony target.
* test/Makefile.in (SELECTOR_DEFAULT, SELECTOR_EXPENSIVE):
Also skip unstable tests.
(SELECTOR_ALL): New variable.
(check-all): New phony target.
* test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el
(eieio-test-method-order-list-6):
* test/lisp/emacs-lisp/eieio-tests/eieio-tests.el
(eieio-test-37-obsolete-name-in-constructor):
Mark as unstable rather than skipping on hydra.nixos.org.
This commit is contained in:
Glenn Morris 2018-01-09 19:59:04 -08:00
parent 7668717d6f
commit a9b884c60f
4 changed files with 19 additions and 10 deletions

View file

@ -192,7 +192,7 @@
(ert-deftest eieio-test-method-order-list-6 ()
;; FIXME repeated intermittent failures on hydra (bug#24503)
;; ((:STATIC C) (:STATIC C-base1) (:STATIC C-base2)) != ((:STATIC C))")
(skip-unless (not (getenv "EMACS_HYDRA_CI")))
:tags '(:unstable)
(let ((eieio-test-method-order-list nil)
(ans '(
(:STATIC C)

View file

@ -893,8 +893,8 @@ Subclasses to override slot attributes.")
(list newname 2))
(ert-deftest eieio-test-37-obsolete-name-in-constructor ()
;; FIXME repeated intermittent failures on hydra (bug#24503)
(skip-unless (not (getenv "EMACS_HYDRA_CI")))
;; FIXME repeated intermittent failures on hydra and elsewhere (bug#24503).
:tags '(:unstable)
(should (equal (eieio--testing "toto") '("toto" 2))))
(ert-deftest eieio-autoload ()