Skip to content

Commit fecdcbd

Browse files
committed
Fix filter-out
1 parent c07ec05 commit fecdcbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ PERFORMANCE_TESTS = $(shell ls $(ROOT_DIR)/test/performance/*.cpp)
12841284
ERROR_TESTS = $(shell ls $(ROOT_DIR)/test/error/*.cpp)
12851285
WARNING_TESTS = $(shell ls $(ROOT_DIR)/test/warning/*.cpp)
12861286
RUNTIME_TESTS = $(shell ls $(ROOT_DIR)/test/runtime/*.cpp)
1287-
FUZZ_TESTS = $(filter-out fuzz_main.cpp, $(shell ls $(ROOT_DIR)/test/fuzz/*.cpp))
1287+
FUZZ_TESTS = $(filter-out %fuzz_main.cpp, $(shell ls $(ROOT_DIR)/test/fuzz/*.cpp))
12881288
GENERATOR_EXTERNAL_TESTS := $(shell ls $(ROOT_DIR)/test/generator/*test.cpp)
12891289
GENERATOR_EXTERNAL_TEST_GENERATOR := $(shell ls $(ROOT_DIR)/test/generator/*_generator.cpp)
12901290
TUTORIALS = $(filter-out %_generate.cpp, $(shell ls $(ROOT_DIR)/tutorial/*.cpp))

0 commit comments

Comments
 (0)