From: Alan T. DeKok Date: Tue, 11 Jul 2023 14:26:41 +0000 (-0400) Subject: filter based on test existence, not one process_foo modules X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28dc56f3143340964e4b4bcc57564cf8040d1184;p=thirdparty%2Ffreeradius-server.git filter based on test existence, not one process_foo modules --- diff --git a/src/tests/process/all.mk b/src/tests/process/all.mk index 23e5572ff2e..6ad93e41406 100644 --- a/src/tests/process/all.mk +++ b/src/tests/process/all.mk @@ -24,7 +24,8 @@ TEST := test.process # # We're left with a set of files to run the tests on. # -FILES := $(filter-out %.ignore %.conf %.md %.attrs %.mk %~ %.rej,$(subst $(DIR)/,,$(wildcard $(patsubst %,$(DIR)/%/*,$(basename $(subst process_,,$(filter process%,$(ALL_TGTS)))))))) +PROTOCOLS := $(subst /server.conf,,$(subst $(DIR)/,,$(wildcard $(DIR)/*/server.conf))) +FILES := $(filter-out %.ignore %.conf %.md %.attrs %.mk %~ %.rej,$(subst $(DIR)/,,$(wildcard $(DIR)/${PROTOCOLS}/*))) $(eval $(call TEST_BOOTSTRAP))