Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2026-04-21 Mats Lidell <matsl@gnu.org>

* Makefile (COVERAGE_TESTSPEC): Use test= for specifying the test selector
to be used when running coverage check. Defaults to t.

2026-04-16 Mats Lidell <matsl@gnu.org>

* test/hyrolo-tests.el (hyrolo-tests--tab-through-matches): Verifies
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -728,12 +728,12 @@ docker-clean:
# coverage for the specified file.
#
# Usage:
# make coverage file=<file> testspec=<testspec>
# make coverage file=<file> test=<testspec>

# Specify file to inspect for coverage while running tests given by testspec
COVERAGE_FILE = ${file}
ifeq ($(origin testspec), command line)
COVERAGE_TESTSPEC = ${testspec}
ifeq ($(origin test), command line)
COVERAGE_TESTSPEC = ${test}
else
COVERAGE_TESTSPEC = t
endif
Expand Down