From 7290efe0696d0ae73d59e47d85a78626e044b0d5 Mon Sep 17 00:00:00 2001 From: Ratstail91 Date: Tue, 22 Aug 2023 00:43:48 +1000 Subject: [PATCH] Tweaked valgrind test @add00 you'll want to merge these and test them --- test/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/makefile b/test/makefile index 4910461..c0ceb7e 100644 --- a/test/makefile +++ b/test/makefile @@ -15,7 +15,7 @@ all: $(OBJ) $(TESTS:%.c=../$(TOY_OUTDIR)/%.exe) ../$(TOY_OUTDIR)/%.exe: $(ODIR)/%.o @$(CC) -o $@ $< $(TARGETS:../source/%.c=$(ODIR)/%.o) $(CFLAGS) $(LIBS) ifeq ($(shell uname)$(DISABLE_VALGRIND),Linux) - valgrind --leak-check=full --track-origins=yes $@ + valgrind --leak-check=full --track-origins=yes --show-leak-kinds=all $@ else $@ endif