Skip to content
Snippets Groups Projects
Unverified Commit a73ccefe authored by Michael Rohleder's avatar Michael Rohleder Committed by Mathieu Othacehe
Browse files

gnu: emacs-elisp-refs: Disable test failing on Emacs 27.1.


* gnu/packages/emacs-xyz.scm (emacs-elisp-refs)[arguments]:
Add phase to disable failing test "elisp-refs-next-match" on emacs27.

Signed-off-by: default avatarMathieu Othacehe <othacehe@gnu.org>
parent 08a8872f
No related branches found
No related tags found
No related merge requests found
...@@ -14827,7 +14827,17 @@ (define-public emacs-elisp-refs ...@@ -14827,7 +14827,17 @@ (define-public emacs-elisp-refs
("emacs-undercover" ,emacs-undercover))) ("emacs-undercover" ,emacs-undercover)))
(arguments (arguments
`(#:tests? #t `(#:tests? #t
#:test-command '("ert-runner"))) #:test-command '("ert-runner")
#:phases
(modify-phases %standard-phases
(add-before 'check 'disable-refs-next-match-test
;; Hack to disable the failing test for emacs27
;; https://github.com/Wilfred/elisp-refs/issues/29
(lambda _
(substitute* "test/unit-test.el"
(("ert-deftest elisp-refs-next-match")
"defun elisp-refs-next-match"))
#t)))))
(home-page "https://github.com/Wilfred/elisp-refs") (home-page "https://github.com/Wilfred/elisp-refs")
(synopsis "Find callers of elisp functions or macros") (synopsis "Find callers of elisp functions or macros")
(description "Find references to functions, macros or variables. Unlike a (description "Find references to functions, macros or variables. Unlike a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment