Skip to content

Commit

Permalink
Added test make rules for Emacs 23
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomohiro Matsuyama committed Aug 29, 2012
1 parent 6ee9134 commit 598055f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.elc
/test/ert.el
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
.PHONY: test
.PHONY: test test-nw test-emacs23 test-emacs23-nw

test:
emacs -Q -L . -l test/popwin-test.el

test-nw:
emacs -Q -nw -L . -l test/popwin-test.el

test-emacs23: test/ert.el
emacs23 -Q -L . -l test/ert.el -l test/popwin-test.el

test-emacs23-nw: test/ert.el
emacs23 -Q -nw -L . -l test/ert.el -l test/popwin-test.el

test/ert.el:
wget https://git.savannah.gnu.org/cgit/emacs.git/plain/lisp/emacs-lisp/ert.el -O $@

0 comments on commit 598055f

Please sign in to comment.