This commit is contained in:
2023-08-14 07:55:42 +02:00
parent 3b04af698f
commit 5d82ad37f7
10 changed files with 112 additions and 919 deletions

View File

@@ -37,7 +37,12 @@ common_SOURCES = \
run: $(sbin_PROGRAMS)
./cworker
test: check
test: $(bin_TESTS)
@for test in $(bin_TESTS); do \
echo === Test $${test} ==; \
./$${test}; \
echo === Done $${test} ==; \
done
bin_TESTS = \
cflexer_test \
@@ -49,7 +54,7 @@ bin_TESTS = \
rcache_test
noinst_PROGRAMS = $(bin_TESTS)
TESTS = $(bin_TESTS)
#TESTS = $(bin_TESTS)
cflexer_test_SOURCES = cflexer_test.c $(common_SOURCES)
cfparser_test_SOURCES = cfparser_test.c $(common_SOURCES)