Skip to content

Commit 59888c8

Browse files
manphizbbatsov
authored andcommitted
Don't use custom logic to find source directory of clojure-mode.el
* Or this will prevent buttercup tests from working with installed clojure-mode under ELPA directories. * A bit more background: in Debian there is autopkgtest which tests the installed package. dh-elpa enables a mode that runs the same ERT or Buttercup tests against the installed package instead of the source tree. In this case, it will let the tests pass during build phase, but autopkgtest will fail as this custom code will still try to locate the source code which will no longer be available. * I have tested under Debian sbuild that removing the code will let the buttercup tests pass under autopkgtest, but not sure whether this is still required for Eldev to work.
1 parent 9c2f967 commit 59888c8

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

test/utils/test-helper.el

-7
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,6 @@
2525

2626
(message "Running tests on Emacs %s" emacs-version)
2727

28-
(let* ((current-file (if load-in-progress load-file-name (buffer-file-name)))
29-
(source-directory (locate-dominating-file current-file "Eldev"))
30-
;; Do not load outdated byte code for tests
31-
(load-prefer-newer t))
32-
;; Load the file under test
33-
(load (expand-file-name "clojure-mode" source-directory)))
34-
3528
(defmacro with-clojure-buffer (text &rest body)
3629
"Create a temporary buffer, insert TEXT, switch to clojure-mode and evaluate BODY."
3730
(declare (indent 1))

0 commit comments

Comments
 (0)