blob: b322342c81ce4ad75639fdb9172c44650c9e935b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# This makefile runs the tests as Travis runs them. Be sure to test
# locally before you push if you are under the impression that the
# patch should work. This will cut down on the number of commits in
# the repository that, essentially, patch patches.
#
# To test Emacs 24.1, for example, use
#
# make 24.1
#
# To test on all versions, of course, simply use
#
# make
#
# or
#
# make all
#
all: 24.1 24.2 24.3 24.4
.DEFAULT:
evm install emacs-$@-bin || true
emacs --version
emacs --batch -L . -l ert -l test/tests.el -f ert-run-tests-batch-and-exit
|