feat(tree): started standard binary tree
This commit is contained in:
parent
df50f96983
commit
98f158e1f5
6 changed files with 182 additions and 7 deletions
4
Makefile
4
Makefile
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Reference in a new issue