From 2148dca72ef17b29e7c60c91fab7f017edbc4d99 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 12 Oct 2015 10:59:06 +0200 Subject: [PATCH] make makefile in test fail on build or test error --- test/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/Makefile b/test/Makefile index cbeaab0fc..7c64dfdf5 100644 --- a/test/Makefile +++ b/test/Makefile @@ -12,24 +12,23 @@ SUBDIRS = \ sdp_client \ security_manager \ -# security_manager \ - -EXCLUDED = ios - subdirs: echo Building all tests + @set -e; \ for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir; \ done clean: echo Clean all test + @set -e; \ for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir clean; \ done test: echo Run all test + @set -e; \ for dir in $(SUBDIRS); do \ $(MAKE) -C $$dir test; \ done