use special valgrind option to detect memory leaks

I am hoping that this task fails now
This commit is contained in:
2025-10-11 03:18:34 +02:00
parent 86d5110b0b
commit 20cac1737e
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ test:
echo "Compiling all test files into $(TESTBIN)..."; \
$(CC) $(CFLAGS) _allocator_impl.c $$files -o $(TESTBIN) $(LDFLAGS) || exit 1; \
echo "Running tests..."; \
valgrind $(TESTBIN); \
valgrind --trace-children=yes $(TESTBIN); \
fi