diff options
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 71e0ff2b..de10e221 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2019-03-17 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (mbprintf5): Add a minus so that the tests + will keep going if this one fails. + 2019-03-03 Arnold D. Robbins <arnold@skeeve.com> * badargs.ok: Update after code changes. diff --git a/test/Makefile.am b/test/Makefile.am index 96cbdd64..37d49848 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1898,7 +1898,7 @@ mixed1:: mbprintf5:: @echo $@ $(ZOS_FAIL) - @case `uname` in \ + @-case `uname` in \ CYGWIN* | MINGW32* | *MS-DOS*) echo this test fails on this system --- skipping $@ ;; \ *) \ [ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE ; \ diff --git a/test/Makefile.in b/test/Makefile.in index d068b726..b4c62c15 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2347,7 +2347,7 @@ mixed1:: mbprintf5:: @echo $@ $(ZOS_FAIL) - @case `uname` in \ + @-case `uname` in \ CYGWIN* | MINGW32* | *MS-DOS*) echo this test fails on this system --- skipping $@ ;; \ *) \ [ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE ; \ |