From: fennecdjay Date: Tue, 8 Oct 2019 09:44:40 +0000 (+0200) Subject: :wrench: Only test import by script X-Git-Tag: nightly~2198^2~116 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=cad26498f8a5ff0988be5553cda08bb21ce2080f;p=gwion.git :wrench: Only test import by script --- 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