aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2017-08-26 18:18:34 +0200
committerXavier Leroy <xavier.leroy@inria.fr>2017-08-26 18:18:34 +0200
commitbfb8a3c330ae3f7cdaa64fd668a65cd102bbe749 (patch)
tree173a26669a31add35a48127e752ca5b6e01358e0 /test/Makefile
parentdb9e62aa52fe611d28a168ebbce4c454e349830c (diff)
downloadcompcert-kvx-bfb8a3c330ae3f7cdaa64fd668a65cd102bbe749.tar.gz
compcert-kvx-bfb8a3c330ae3f7cdaa64fd668a65cd102bbe749.zip
test/ : stop at first error in "make all"
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 6e9a78d8..e53dfd83 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,7 +1,7 @@
DIRS=c compression raytracer spass regression
all:
- for i in $(DIRS); do $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $$i all; done
+ set -e; for i in $(DIRS); do $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $$i all; done
test:
set -e; for i in $(DIRS); do $(MAKE) SIMU='$(SIMU)' -C $$i test; done