From 552247c3d0196bc6b13dbe7b6411d30d31dca9ee Mon Sep 17 00:00:00 2001 From: clanmills Date: Mon, 29 Jan 2018 09:13:58 +0000 Subject: [PATCH] Update test/Makefile not to exit on error --- test/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 62b6d1d0..ad19eb16 100644 --- a/test/Makefile +++ b/test/Makefile @@ -105,8 +105,9 @@ test: echo Running $$p ...; \ ./$$p; \ rc=$$?; \ - if [ $$rc -ne 0 ]; then echo result = $$rc ; fi ; \ - if [ $$rc -gt 2 ]; then exit $$rc ; fi ; \ + if [ $$rc -ne 0 ]; then echo '********************************' ; fi ; \ + if [ $$rc -ne 0 ]; then echo '***' $$p result = $$rc '***' ; fi ; \ + if [ $$rc -ne 0 ]; then echo '********************************' ; fi ; \ done testv: