summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2021-02-09 15:21:25 +0100
committerAzul <azul@riseup.net>2021-02-09 18:21:49 +0100
commit500355bca3ca8d8bd128cdbbe0746cb92b744db8 (patch)
tree91ea2446b3ba75f83408e0af9b06c54a1275ecea
parent637ac05522a50a438695a4815a37ad4e3b96414c (diff)
make: Pass on exit codes in test task so it can fail.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1db21164..69bc1629 100644
--- a/Makefile
+++ b/Makefile
@@ -73,8 +73,8 @@ test check:
then \
echo 'WARNING: Not running other tests, because $$CARGO_PACKAGES specifies a package.'; \
else \
- $(MAKE) -Copenpgp-ffi test; \
- $(MAKE) -Cffi test; \
+ $(MAKE) -Copenpgp-ffi test && \
+ $(MAKE) -Cffi test && \
$(MAKE) examples; \
fi