disable non-functional test_c

This commit is contained in:
Brendan Haines 2021-09-09 00:20:20 -06:00
parent 7ab99bb5ff
commit a9c5f815ba

View File

@ -1,17 +1,18 @@
all: verify all: verify
# BENCHES = $(filter-out common/, $(sort $(dir $(wildcard */)))) BENCH ?= $(sort $(dir $(wildcard test_*/)))
BENCHES = basic_test
$(info $$BENCHES is [${BENCHES}]) # override bench to disable test_c
BENCH = test_basic
verify: verify:
make -C test_basic verify $(foreach dir, $(BENCH), make -C $(dir) verify;)
make -C test_c verify
clean: clean:
make -C test_basic clean $(foreach dir, $(BENCH), make -C $(dir) clean;)
make -C test_c clean
help:
$(info BENCH options: [${BENCH}])
.SECONDARY: .SECONDARY:
.PHONY: all clean verify .PHONY: all clean verify help