Skip to content

Commit

Permalink
remove flet from test-batch make target
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandwalker committed May 23, 2014
1 parent df5831e commit de77f44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -161,9 +161,9 @@ test-batch :
(for test_lib in *-test.el; do \
$(RESOLVED_EMACS) $(EMACS_BATCH) -L . -L .. -l cl \
-l '$(TEST_DEP_1)' -l "$$test_lib" --eval \
"(flet ((ert--print-backtrace (&rest args) \
(insert \"no backtrace in batch mode\"))) \
(ert-run-tests-batch-and-exit '(and \"$(TESTS)\" (not (tag :interactive)))))" || exit 1; \
"(progn \
(fset 'ert--print-backtrace 'ignore) \
(ert-run-tests-batch-and-exit '(and \"$(TESTS)\" (not (tag :interactive)))))" || exit 1; \
done)

test-interactive : test-prep
Expand Down

0 comments on commit de77f44

Please sign in to comment.