Skip to content

Commit

Permalink
Fix error return code
Browse files Browse the repository at this point in the history
  • Loading branch information
pranith committed Jun 29, 2016
1 parent d9d1052 commit 94f8aef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bindings/python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ TESTS += test_ppc.py test_sparc.py test_systemz.py test_x86.py test_xcore.py tes
check:
@for t in $(TESTS); do \
echo Check $$t ... ; \
./$$t > /dev/null && echo OK || (echo FAILED; exit 1;) \
./$$t > /dev/null; \
if [ $$? -eq 0 ]; then echo OK; else echo FAILED; exit 1; fi \
done

0 comments on commit 94f8aef

Please sign in to comment.