diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-30 21:40:07 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-30 21:40:07 +0200 |
commit | 8d6b9ebe7983bd45dc28819c40e2acdafcde2a70 (patch) | |
tree | c612cf9ec1113a05ffabbc888629cdb7d0702e16 /test | |
parent | cb76bbdd0ecd2990900e6c0b68b166425f8df6fd (diff) | |
parent | 1922c58b200686f05cf2e13d53f053e88f0d5d22 (diff) | |
download | egawk-8d6b9ebe7983bd45dc28819c40e2acdafcde2a70.tar.gz egawk-8d6b9ebe7983bd45dc28819c40e2acdafcde2a70.tar.bz2 egawk-8d6b9ebe7983bd45dc28819c40e2acdafcde2a70.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 7 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index f011bba4..adc8cd66 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -3,9 +3,16 @@ * Makefile.am (pipeio3): Enhance test, again, to be more resilient to variations in error messages produced by different Bourne shells when a command is not found. This time for Cygwin. + + Unrelated: + (charasbytes): Translit any tabs to spaces. Should help on some System V systems such as Solaris. We hope. + Unrelated: + + (pass-fail): Exit non-zero if tests fail. Useful for buildbots. + 2013-10-22 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (pipeio3): Enhance test to be more resilient to diff --git a/test/Makefile.am b/test/Makefile.am index 179c5e0d..597267f9 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1912,7 +1912,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 diff --git a/test/Makefile.in b/test/Makefile.in index 55cd3af5..d192c171 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -3644,7 +3644,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 |