From cad26498f8a5ff0988be5553cda08bb21ce2080f Mon Sep 17 00:00:00 2001 From: fennecdjay Date: Tue, 8 Oct 2019 11:44:40 +0200 Subject: [PATCH] :wrench: Only test import by script --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1cfa127e..f4eeb0fc 100644 --- a/Makefile +++ b/Makefile @@ -20,10 +20,11 @@ util_src := $(wildcard src/util/*.c) emit_src := $(wildcard src/emit/*.c) opt_src := $(wildcard opt/*.c) -test_dir := $(filter-out tests/benchmark, $(wildcard tests/*)) -test_dir := $(filter-out tests/import, $(wildcard tests/*)) +test_dir_all := $(wildcard tests/*) +test_ignore = tests/benchmark tests/import +test_dir := $(filter-out $(test_ignore), $(test_dir_all)) test_dir += examples -# add boolean + ifeq (${DEBUG_STACK}, 1) CFLAGS += -DDEBUG_STACK endif -- 2.43.0