From ecbb0808657e04c0e561e9d62c0ade39eb01351b Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sun, 2 Mar 2025 19:11:10 +0800 Subject: [PATCH] Exclude files under `infra' from automatic testing * test/Makefile.in (ELFILES): Exclude files within `infra'. Reported by Stefan Kangas . --- test/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))