From: Po Lu Date: Sun, 2 Mar 2025 11:11:10 +0000 (+0800) Subject: Exclude files under `infra' from automatic testing X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3899cdb5d89f3e1bdc95e6b6217c53a1aec08685;p=emacs.git Exclude files under `infra' from automatic testing * test/Makefile.in (ELFILES): Exclude files within `infra'. Reported by Stefan Kangas . (cherry picked from commit ecbb0808657e04c0e561e9d62c0ade39eb01351b) --- 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 = SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el ELFILES := $(sort $(shell find ${srcdir} -name manual -prune -o \ - -name data -prune -o \ + -name data -prune -o -name infra -prune -o \ -name "*resources" -prune -o \ ${maybe_exclude_module_tests} \ -name "*.el" ! -name ".*" -print))