From bfb8a3c330ae3f7cdaa64fd668a65cd102bbe749 Mon Sep 17 00:00:00 2001 From: Xavier Leroy Date: Sat, 26 Aug 2017 18:18:34 +0200 Subject: test/ : stop at first error in "make all" --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit