Skip to content
Snippets Groups Projects
Commit add885c8 authored by Lukas Lihotzki's avatar Lukas Lihotzki
Browse files

add test_mem target for valgrind memcheck

parent be0c3189
No related branches found
No related tags found
No related merge requests found
......@@ -225,6 +225,12 @@ test: build_tests
$$i || exit $$?; \
done
test_mem: build_tests
for i in $(TEST_BINARIES); do \
echo $$i; \
valgrind -q --leak-check=yes --exit-on-first-error=yes --error-exitcode=1 $$i || exit $$?; \
done
fuzzers: $(FUZZER_BINARIES) $(FUZZER_DEBUG_BINARIES)
.PHONY: fuzzers
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment