X-Git-Url: https://git.llucax.com/software/posixx.git/blobdiff_plain/7b35c34eaa3ee421eb5effc63801aeff69a9ffe8..8877e1ffc8f4d31dfaee8a2e66f7d55b25d4f197:/test/Makefile?ds=sidebyside diff --git a/test/Makefile b/test/Makefile index 94e3b2c..3f644f7 100644 --- a/test/Makefile +++ b/test/Makefile @@ -10,7 +10,7 @@ TESTCMD = ./$(TESTPRG) --detect_memory_leak=1 --report_level=short \ VALGRIND = valgrind --tool=memcheck --leak-check=yes --db-attach=no \ --num-callers=24 --leak-resolution=high --track-fds=yes \ - --suppressions=valgrind.suppressions + --suppressions=valgrind.suppressions --error-exitcode=1 SOURCES = $(shell find -name '*.cpp') @@ -36,9 +36,9 @@ endif ifneq ($(V), 1) NICE_CXX = @echo " CXX $@"; $(CXX) NICE_LINK = @echo " LINK $@"; $(CXX) -NICE_TEST = @echo " TEST"; $(TESTCMD) > /dev/null 2>&1 +NICE_TEST = @echo " TEST"; $(TESTCMD) > test_suite.log 2>&1 NICE_MEMTEST = @echo " MEMTEST"; $(VALGRIND) --log-file=valgrind.log \ - $(TESTCMD) > /dev/null 2>&1 + $(TESTCMD) > valgrind.test_suite.log 2>&1 NICE_CLEAN = @echo " CLEAN"; $(RM) else NICE_CXX = $(CXX)