From 0805fcf11770e2cd091c7ef59df7d046daba65a3 Mon Sep 17 00:00:00 2001 From: Kian Kasad Date: Wed, 15 May 2024 16:05:40 -0700 Subject: [PATCH] Don't run fuzz_size_bounds in 'make check' --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 404757e..ec2fd54 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,7 @@ TESTS = \ collect \ transform_reverse \ fuzz_size_bounds +NORUN = fuzz_size_bounds TESTS_BIN = $(addprefix tests/,$(TESTS)) TESTS_REPORTS = $(addsuffix .out,$(TESTS_BIN)) @@ -170,4 +171,4 @@ uninstall: .PHONY: check check: ./tests/run.sh $(TESTS_BIN) - @$< $(TESTS) + @$< $(filter-out $(NORUN),$(TESTS))