Update test/Makefile not to exit on error
This commit is contained in:
parent
c082537967
commit
552247c3d0
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user