feat(tree): started standard binary tree

This commit is contained in:
Jef Roosens 2023-01-19 22:23:19 +01:00
parent df50f96983
commit 98f158e1f5
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
6 changed files with 182 additions and 7 deletions

View file

@ -66,6 +66,10 @@ $(TARGETS_TEST): test-%: %
$(TARGETS_MEM_TEST): test-mem-%: %
valgrind --tool=memcheck --error-exitcode=1 --track-origins=yes --leak-check=full ./$^
test-mem: build-test
@ $(foreach bin,$(BINS_TEST),valgrind --tool=memcheck --error-exitcode=1 \
--track-origins=yes --leak-check=full ./$(bin);)
.PHONY: build-test
build-test: $(BINS_TEST)