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
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2026-03-14 Mats Lidell <matsl@gnu.org>

* Makefile (coverage): enable-local-variables :all so test suite can execute
with no user interaction.

* test/hycontrol-tests.el (hycontrol-tests--move-frame): Use stub since
frame-position is called differenty in headless and native environment.

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Author: Bob Weiner
#
# Orig-Date: 15-Jun-94 at 03:42:38
# Last-Mod: 14-Mar-26 at 14:00:08 by Bob Weiner
# Last-Mod: 14-Mar-26 at 22:47:11 by Mats Lidell
#
# Copyright (C) 1994-2026 Free Software Foundation, Inc.
# See the file HY-COPY for license information.
Expand Down Expand Up @@ -735,7 +735,7 @@ COVERAGE_TESTSPEC = t
endif
.PHONY: coverage
coverage:
$(EMACS) --quick $(PRELOADS) \
$(EMACS) --quick $(PRELOADS) --eval "(setq enable-local-variables :all)" \
--eval "(load-file \"test/hy-test-dependencies.el\")" \
--eval "(load-file \"test/hy-test-coverage.el\")" \
--eval "(hy-test-coverage-file \"${file}\" \"${COVERAGE_TESTSPEC}\")"
Loading