branch: externals/hyperbole commit 00aea740e14bb2f0b375ea0622cf47b0dd505457 Author: Mats Lidell <mats.lid...@lidells.se> Commit: GitHub <nore...@github.com>
Add target for interactive test run with summary output (#171) --- ChangeLog | 5 +++++ Makefile | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ed978b94ea..75b5886cbb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2022-02-19 Mats Lidell <ma...@gnu.org> + +* Makefile (test-all-output): Add target for interactive tests with + summary output. + 2022-02-18 Mats Lidell <ma...@gnu.org> * test/kcell-tests.el (kcell-tests--ref-to-id): Add test for diff --git a/Makefile b/Makefile index 679f2f999f..8d99e49c79 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # Author: Bob Weiner # # Orig-Date: 15-Jun-94 at 03:42:38 -# Last-Mod: 13-Feb-22 at 10:35:20 by Bob Weiner +# Last-Mod: 19-Feb-22 at 10:43:51 by Mats Lidell # # Copyright (C) 1994-2021 Free Software Foundation, Inc. # See the file HY-COPY for license information. @@ -450,6 +450,9 @@ else $(EMACS) --quick $(PRELOADS) --eval "(load-file \"test/hy-test-dependencies.el\")" --eval "(let ((auto-save-default)) $(LOAD_TEST_ERT_FILES) (ert-run-tests-interactively t))" endif +test-all-output: + $(EMACS) --quick $(PRELOADS) --eval "(load-file \"test/hy-test-dependencies.el\")" --eval "(let ((auto-save-default) (ert-quiet t)) $(LOAD_TEST_ERT_FILES) (ert-run-tests-interactively t) (with-current-buffer \"*ert*\" (append-to-file (point-min) (point-max) \"ERT-OUTPUT\")) (kill-emacs))" + # Hyperbole install tests - Verify that hyperbole can be installed # using different sources. See folder "install-test" .PHONY: install-elpa install-elpa-devel install-tarball install-straight install-all