[tests] Re-added debug mode in tests

The EXTRA_FLAGS needs some clean before running tests.
This commit allows to compile twice for this situation, but it is not perfect
because EXTRA_CFLAGS can still cause some problems. The tests Makefile should
be able to detect this and to group builds and tests with each own EXTRA flags.
This commit is contained in:
hsaturn
2022-10-31 02:12:13 +01:00
parent 3839a0a830
commit 354aec239f

View File

@@ -11,7 +11,9 @@ debugtest:
$(MAKE) -C debug-mode -j; \ $(MAKE) -C debug-mode -j; \
debug-mode/debug-tests.out debug-mode/debug-tests.out
runtests: clean tests runtests: debugtest
$(MAKE) clean
$(MAKE) tests
set -e; \ set -e; \
for i in *-tests/Makefile; do \ for i in *-tests/Makefile; do \
echo '==== Running:' $$(dirname $$i); \ echo '==== Running:' $$(dirname $$i); \