aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorVegard Øye <vegard_oye@hotmail.com>2011-03-08 10:56:48 +0100
committerVegard Øye <vegard_oye@hotmail.com>2011-03-08 10:56:48 +0100
commit44ac132892796d3cf20849bbcf7c2793cbce127a (patch)
treea68e598c63177dd49f8cc42052692ebc1f63eab8 /Makefile
parenta54e5813210d0fdc99fc3110e3b45ca77b750d78 (diff)
Use t as test selector in "make emacs" and "make terminal"
Since these rules load a clean Emacs into memory, all defined tests will be Evil tests.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b0d36c4..fb85381 100644
--- a/Makefile
+++ b/Makefile
@@ -22,11 +22,11 @@ clean:
.PHONY: emacs
emacs: clean
- emacs -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(call-interactively 'evil-tests-run)" &
+ emacs -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(ert-run-tests-interactively t)" &
.PHONY: term
term: terminal
.PHONY: terminal
terminal: clean
- emacs -nw -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(call-interactively 'evil-tests-run)"
+ emacs -nw -Q -L . -l evil-tests.el --eval "(evil-mode 1)" --eval "(ert-run-tests-interactively t)"