Update test/Makefile not to exit on error

This commit is contained in:
clanmills 2018-01-29 09:13:58 +00:00
parent c082537967
commit 552247c3d0

View File

@ -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: