From 18241cd6e334b90389f5a0b789b7633d7cc42731 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Tue, 19 Sep 2017 21:54:44 +0300 Subject: Bump version in rwarray.c. --- extension/ChangeLog | 4 ++++ extension/rwarray.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/extension/ChangeLog b/extension/ChangeLog index ed70e3c2..df9bea10 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,7 @@ +2017-09-19 Arnold D. Robbins + + * rwarray.c: Increase the version. + 2017-09-17 Arnold D. Robbins * filefuncs.c: Move include of to after include diff --git a/extension/rwarray.c b/extension/rwarray.c index 8c6ef4bf..2e82ca76 100644 --- a/extension/rwarray.c +++ b/extension/rwarray.c @@ -61,7 +61,7 @@ static const gawk_api_t *api; /* for convenience macros to work */ static awk_ext_id_t *ext_id; -static const char *ext_version = "rwarray extension: version 1.1"; +static const char *ext_version = "rwarray extension: version 1.2"; static awk_bool_t (*init_func)(void) = NULL; int plugin_is_GPL_compatible; -- cgit v1.2.3 From de168f836cb143561c54e0e9cc5315ce1e98ae1f Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Tue, 19 Sep 2017 21:55:03 +0300 Subject: Add more DJGPP failure messages in pc/Makefile.tst. --- pc/ChangeLog | 6 ++++++ pc/Makefile.tst | 11 ++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/pc/ChangeLog b/pc/ChangeLog index cd4203c2..95d70f59 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,9 @@ +2017-09-18 Juan Manuel Guerrero + + * pc/Makefile.tst (mbprintf5, beginfile1, sigpipe1, backw, nonfatal1) + (nonfatal2, nonfatal3, timeout): Update the expected failure messages + for DJGPP. + 2017-09-16 Eli Zaretskii * config.h (HAVE_GAI_STRERROR) [__MINGW32__]: Define to 1. Update diff --git a/pc/Makefile.tst b/pc/Makefile.tst index a842981b..58610a17 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -864,7 +864,7 @@ mbprintf4:: mbprintf5:: @echo $@ @case `uname` in \ - CYGWIN* | MINGW32*) echo this test fails on this system --- skipping $@ ;; \ + CYGWIN* | MINGW32* | *MS-DOS*) echo this test fails on this system --- skipping $@ ;; \ *) \ GAWKLOCALE=en_US.UTF-8 ; export GAWKLOCALE ; \ $(AWK) -f "$(srcdir)"/$@.awk "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >> _$@ ; \ @@ -904,7 +904,7 @@ printfbad2: printfbad2.ok beginfile1:: @echo $@ - @echo Expect beginfile1 to fail with DJGPP + @echo Expect beginfile1 to fail with DJGPP due to error message differences. @AWKPATH="$(srcdir)" $(AWK) -f $@.awk "$(srcdir)"/$@.awk . ./no/such/file Makefile >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @@ -2294,6 +2294,7 @@ sclifin: sigpipe1: @echo $@ + @echo Expect sigpipe1 to fail with DJGPP. @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @@ -2487,6 +2488,7 @@ arraysort: backw: @echo $@ + @echo Expect backw to fail with DJGPP. @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @@ -2799,16 +2801,19 @@ nondec: nonfatal1: @echo $@ + @echo Expect nonfatal1 to fail with DJGPP. @AWKPATH="$(srcdir)" $(AWK) -f $@.awk 2>&1 | $(AWK) '{print gensub(/invalid.*$$/, "invalid", 1, $$0)}' >_$@ || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ nonfatal2: @echo $@ + @echo Expect nonfatal2 to fail with DJGPP due to error message differences. @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ nonfatal3: @echo $@ + @echo Expect nonfatal3 to fail with DJGPP. @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @@ -2995,7 +3000,7 @@ typeof5: timeout: @echo $@ - @echo Expect timeout to fail with MinGW + @echo Expect timeout to fail with DJGPP and MinGW @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ -- cgit v1.2.3