aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-04-16 13:56:19 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-04-16 13:56:19 -0400
commit1e283dd31048e2d21c22784b1a438836ffbea7c4 (patch)
tree7084875fcca9ce2f57da65ca02e95e3304c87248
parentf290edbad9ba4e7c37b0fecc3ea798f553cb784d (diff)
Exit with 1 on failure
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 96c33f44..fa6e7957 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,7 @@ test: tomo
rm -f test/*.tm.[cho]
for f in $$(ls test/*.tm | shuf); do echo -e "\x1b[1;4m$$f\x1b[m"; \
if ! VERBOSE=0 CC=tcc ./tomo "$$f"; then \
- echo "FAILURE!"; break; \
+ echo "FAILURE!"; exit 1; \
fi; \
done; echo -e '\x1b[32;7m ALL TESTS PASSED! \x1b[m'