From 0697f83adef349ec111d23d1480be70bd43c7960 Mon Sep 17 00:00:00 2001 From: Tiago Oliveira Date: Thu, 8 Aug 2024 10:22:40 +0100 Subject: [PATCH] test: Makefile: do not export FILTER --- test/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index e080d6fa..fcb03053 100644 --- a/test/Makefile +++ b/test/Makefile @@ -67,9 +67,8 @@ EXT := ../ext RANDSRC := $(COMMON)/notrandombytes.c FILTER ?= $(SRC)/crypto_% -export FILTER - JAZZ ?= $(filter $(FILTER), $(filter-out $(addprefix $(SRC)/,$(EXCLUDE)), $(sort $(dir $(shell test -d $(SRC) && find $(SRC) -name '*.jazz'))))) + TESTDIR := $(subst $(SRC),$(BIN), $(JAZZ)) CHECKSUMSMALL := $(addsuffix checksumsmall, $(TESTDIR)) @@ -123,7 +122,7 @@ reporter-and-err: $(MAKE) CI=1 err $(SRC): - $(shell ../scripts/extract-all.sh > /dev/null) + ../scripts/extract-all.sh # -------------------------------------------------------------------- $(TESTS):