From f11052fc7941032599b97e636266f9e98e5d5294 Mon Sep 17 00:00:00 2001 From: makefu Date: Tue, 17 Dec 2013 09:26:59 +0100 Subject: make -C util test exits with errorcode if one of the test failed --- util/Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/Makefile b/util/Makefile index d70ca057..3c20f550 100644 --- a/util/Makefile +++ b/util/Makefile @@ -4,14 +4,22 @@ test: @export PATH="$(CURDIR)/bin:$(PATH)"; \ tests="`find t -type f -executable`"; \ i=1; \ + pids="";\ n=`echo "$$tests" | wc -l`; \ echo $$i..$$n; \ for exe in $$tests; do \ { \ ./$$exe; \ - case $$? in 0) result=ok;; *) result='not ok';; esac; \ + ret=$$?; \ + case $$ret in 0) result=ok;; *) result='not ok';; esac; \ echo $$result $$i - $$exe; \ + exit $$ret;\ } & \ + pids="$${pids} $$!" \ i=$$(( i+1 )); \ done; \ - wait + ret=0;\ + for pid in $$pids; do \ + wait $$pid || ret=23;\ + done; \ + exit $$ret; -- cgit v1.2.3