Revert "added Makefile targets to check single tests"

This reverts commit 2c5251f0da.
This commit is contained in:
Achim Gratz 2013-11-05 18:50:06 +01:00
parent 1f498c93f2
commit 9b6cff94aa
2 changed files with 4 additions and 8 deletions

View File

@ -60,7 +60,8 @@ BTEST = $(BATCH) \
-l testing/org-test.el \
$(foreach ob-lang,$(BTEST_OB_LANGUAGES),$(req-ob-lang)) \
$(foreach req,$(BTEST_EXTRA),$(req-extra)) \
--eval '(setq org-confirm-babel-evaluate nil)'
--eval '(setq org-confirm-babel-evaluate nil)' \
-f org-test-run-batch-tests
# Using emacs in batch mode.
# BATCH = $(EMACS) -batch -vanilla # XEmacs

View File

@ -94,15 +94,10 @@ compile compile-dirty::
all clean-install::
$(foreach dir, $(SUBDIRS), $(MAKE) -C $(dir) $@;)
check test single-test:: compile
check test:: compile
check test test-dirty::
-$(MKDIR) $(testdir)
TMPDIR=$(testdir) $(BTEST) -f org-test-run-batch-tests
single-test single-test-dirty::
-$(MKDIR) $(testdir)
TMPDIR=$(testdir) $(BTEST) --eval "(org-test-load)" --eval "(ert '$(TEST))"
TMPDIR=$(testdir) $(BTEST)
ifeq ($(TEST_NO_AUTOCLEAN),) # define this variable to leave $(testdir) around for inspection
$(MAKE) cleantest
endif