diff options
| author | Po Lu | 2025-03-02 19:11:10 +0800 |
|---|---|---|
| committer | Po Lu | 2025-03-02 19:11:10 +0800 |
| commit | ecbb0808657e04c0e561e9d62c0ade39eb01351b (patch) | |
| tree | 648813545a644c311fc31fb58262ee84d3ae09ac | |
| parent | c4232a08f135b347a24cb75bb901659d45c61787 (diff) | |
| download | emacs-ecbb0808657e04c0e561e9d62c0ade39eb01351b.tar.gz emacs-ecbb0808657e04c0e561e9d62c0ade39eb01351b.zip | |
Exclude files under `infra' from automatic testing
* test/Makefile.in (ELFILES): Exclude files within `infra'.
Reported by Stefan Kangas <skangas@gmail.com>.
| -rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 842c0517b98..3d8a8b87cd9 100644 --- a/test/Makefile.in +++ b/test/Makefile.in | |||
| @@ -203,7 +203,7 @@ EXCLUDE_TESTS = | |||
| 203 | SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el | 203 | SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el |
| 204 | 204 | ||
| 205 | ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \ | 205 | ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \ |
| 206 | -name data -prune -o \ | 206 | -name data -prune -o -name infra -prune -o \ |
| 207 | -name "*resources" -prune -o \ | 207 | -name "*resources" -prune -o \ |
| 208 | ${maybe_exclude_module_tests} \ | 208 | ${maybe_exclude_module_tests} \ |
| 209 | -name "*.el" ! -name ".*" -print)) | 209 | -name "*.el" ! -name ".*" -print)) |