From fda1e989e0c22433b0214ab537a61852d906fd4b Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 5 May 2026 05:12:11 -0500 Subject: test: tag integration suite :slow and unstick test-all MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I tagged the 15 end-to-end tests across `test-integration-chime-mode.el`, `test-integration-recurring-events-tooltip.el`, and `test-integration-startup.el` with `:tags '(:slow)`. The default `make test` now runs only the 652 fast unit tests; `make test-all` runs the full 667. While verifying, I hit a pre-existing bug in `tests/Makefile` where `test-all`'s `--eval '(ert-run-tests-batch-and-exit)'` came back from eask's argv passthrough with its quotes stripped, which broke shell parsing. Passing the explicit `t` selector dodges whatever eask does to no-arg single-quoted forms. The bug only mattered once integration tests were `:slow` — before that, `test-all` overlapped fully with `test-unit` plus `test-integration`, so nothing actually depended on it working. --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile index 8635861..7cd6c0b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -71,7 +71,7 @@ test-all: check-deps for testfile in $(ALL_TESTS); do \ echo " Testing $$testfile..."; \ $(EMACS_BATCH) -l ert -l "$$testfile" \ - --eval '(ert-run-tests-batch-and-exit)' || failed=$$((failed + 1)); \ + --eval '(ert-run-tests-batch-and-exit t)' || failed=$$((failed + 1)); \ done; \ if [ $$failed -eq 0 ]; then \ printf "$(GREEN)[✓] All tests passed$(NC)\n"; \ -- cgit v1.2.3