Skip to content

Commit 2362be8

Browse files
committed
Rename test file
Name it "<package>-tests.el" like for all my other test files.
1 parent 151622e commit 2362be8

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

test/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ LOAD_PATH += -L ../lisp
55

66
test: lisp
77
@printf " Testing...\n"
8-
@$(EMACS_BATCH) -l $(PKG)-test -f ert-run-tests-batch-and-exit
8+
@$(EMACS_BATCH) -l $(PKG)-tests -f ert-run-tests-batch-and-exit
99

1010
test-interactive:
11-
@$(EMACS_INTR) -l $(PKG)-test --eval "(ert t)"
11+
@$(EMACS_INTR) -l $(PKG)-tests --eval "(ert t)"
1212

13-
lisp: $(addprefix ../lisp/,$(ELCS)) $(PKG)-test.elc
13+
lisp: $(addprefix ../lisp/,$(ELCS)) $(PKG)-tests.elc
1414

1515
%.elc: %.el
1616
@printf "Compiling $<\n"
1717
@$(EMACS_BATCH) --funcall batch-byte-compile $<
1818

1919
clean:
2020
@printf " Cleaning test/*...\n"
21-
@rm -rf $(PKG)-test.elc
21+
@rm -rf $(PKG)-tests.elc
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; llama-tests.el --- Tests for Llama -*- lexical-binding:t -*-
1+
;;; transient-tests.el --- Tests for Transient -*- lexical-binding:t -*-
22

33
;; Copyright (C) 2018-2025 Jonas Bernoulli
44

0 commit comments

Comments
 (0)