diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-30 21:39:35 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-30 21:39:35 +0200 |
commit | 1922c58b200686f05cf2e13d53f053e88f0d5d22 (patch) | |
tree | 2792ef9af38e6b1d1ba946ef8553fb6d59ad697f /test/Makefile.in | |
parent | 40e7cd90d7efebb47f9d13d15f622a511e9ed304 (diff) | |
download | egawk-1922c58b200686f05cf2e13d53f053e88f0d5d22.tar.gz egawk-1922c58b200686f05cf2e13d53f053e88f0d5d22.tar.bz2 egawk-1922c58b200686f05cf2e13d53f053e88f0d5d22.zip |
Make 'make check' exit non-zero if failure, for buildbots.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 7e55db72..8a4ce41d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -3637,7 +3637,7 @@ pass-fail: @COUNT=`ls _* 2>/dev/null | wc -l` ; \ if test $$COUNT = 0 ; \ then echo ALL TESTS PASSED ; \ - else echo $$COUNT TESTS FAILED ; \ + else echo $$COUNT TESTS FAILED ; exit 1; \ fi # This target for my convenience to look at all the results |