aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-03-17 20:04:23 +0200
committerArnold D. Robbins <arnold@skeeve.com>2019-03-17 20:04:23 +0200
commit24fc32d8f0038a18562cd269e824928e5cd4cb9d (patch)
treebaf902ed1b0ef4bff53431b93bba023191d25780
parenteccb8aac0f64eb98279e76cbbe995ac1bad024f5 (diff)
downloadegawk-24fc32d8f0038a18562cd269e824928e5cd4cb9d.tar.gz
egawk-24fc32d8f0038a18562cd269e824928e5cd4cb9d.tar.bz2
egawk-24fc32d8f0038a18562cd269e824928e5cd4cb9d.zip
Fix mbprintf5 to keep going in case of failure.
-rw-r--r--test/ChangeLog5
-rw-r--r--test/Makefile.am2
-rw-r--r--test/Makefile.in2
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 ; \