Skip to content

Commit aec01d8

Browse files
committed
make : more verbose test results
1 parent adf3b20 commit aec01d8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,14 @@ test: $(TEST_TARGETS)
5353
elif [ "$$test_target" = "tests/test-tokenizer-1" ]; then \
5454
continue; \
5555
else \
56+
echo "Running test $$test_target..."; \
5657
./$$test_target; \
5758
fi; \
5859
if [ $$? -ne 0 ]; then \
60+
echo "Test $$test_target FAILED!"; \
5961
failures=$$(( failures + 1 )); \
62+
else \
63+
echo "Test $$test_target passed."; \
6064
fi; \
6165
done; \
6266
if [ $$failures -gt 0 ]; then \

0 commit comments

Comments
 (0)