diff options
| author | Frank Fischer <frank.fischer@mathematik.tu-chemnitz.de> | 2012-11-02 11:33:47 +0100 |
|---|---|---|
| committer | Frank Fischer <frank.fischer@mathematik.tu-chemnitz.de> | 2012-11-02 11:33:47 +0100 |
| commit | 0c3c4d2a18b90ff9a140ad98d6882f542d93c53b (patch) | |
| tree | 70a6eb0cb46d2468a58da9eae1a4b7f9afc90c1d /Makefile | |
| parent | 05be35aeff02cfe31ee099a085331518b08665d1 (diff) | |
Run `make tests` with terminal window
Several test cases require the window environment to be initialized
properly. Running the test suite with `make tests` now always uses a
terminal window like `make term` but runs non-interactively otherwise.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -53,14 +53,14 @@ clean: # make test TAG=repeat # This will only run tests pertaining to the repeat system. test: - $(EMACS) --batch -Q -L . $(LIBS) -l evil-tests.el \ + $(EMACS) -nw -Q -L . $(LIBS) -l evil-tests.el \ --eval "(evil-tests-initialize '(${TAG}) '(${PROFILER}))" # Byte-compile Evil and run all tests. tests: compile - $(EMACS) --batch -Q -L . $(LIBS) -l evil-tests.el \ + $(EMACS) -nw -Q -L . $(LIBS) -l evil-tests.el \ --eval "(evil-tests-initialize '(${TAG}) '(${PROFILER}))" - rm -f *.elc + rm -f *.elc .depend # Load Evil in a fresh instance of Emacs and run all tests. emacs: |
