hopefully this crashes the tests

This commit is contained in:
2025-10-11 17:00:55 +02:00
parent 890cc04283
commit b02a62a46f
+1 -1
View File
@@ -16,7 +16,7 @@ test:
echo "Compiling all test files into $(TESTBIN)..."; \ echo "Compiling all test files into $(TESTBIN)..."; \
$(CC) $(CFLAGS) _allocator_impl.c $$files -o $(TESTBIN) $(LDFLAGS) || exit 1; \ $(CC) $(CFLAGS) _allocator_impl.c $$files -o $(TESTBIN) $(LDFLAGS) || exit 1; \
echo "Running tests..."; \ echo "Running tests..."; \
valgrind --trace-children=yes --error-exitcode=1 $(TESTBIN); \ valgrind --leak-check=full --show-leak-kinds=all --trace-children=yes --error-exitcode=1 $(TESTBIN); \
fi fi