make testing more robust

This commit is contained in:
2025-10-03 22:05:00 +02:00
parent 8ada613a3e
commit 89b4dfa3e8
4 changed files with 14 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ test:
echo "No test files found!"; \
else \
echo "Compiling all test files into $(TESTBIN)..."; \
$(CC) $(CFLAGS) $$files -o $(TESTBIN) $(LDFLAGS); \
$(CC) $(CFLAGS) _allocator_impl.c $$files -o $(TESTBIN) $(LDFLAGS); \
echo "Running tests..."; \
$(TESTBIN); \
fi