diff options
-rw-r--r-- | extension/ChangeLog | 4 | ||||
-rw-r--r-- | extension/rwarray.c | 2 | ||||
-rw-r--r-- | pc/ChangeLog | 6 | ||||
-rw-r--r-- | pc/Makefile.tst | 11 |
4 files changed, 19 insertions, 4 deletions
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 <arnold@skeeve.com> + + * rwarray.c: Increase the version. + 2017-09-17 Arnold D. Robbins <arnold@skeeve.com> * filefuncs.c: Move include of <sys/stat.h> 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; 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 <juan.guerrero@gmx.de> + + * pc/Makefile.tst (mbprintf5, beginfile1, sigpipe1, backw, nonfatal1) + (nonfatal2, nonfatal3, timeout): Update the expected failure messages + for DJGPP. + 2017-09-16 Eli Zaretskii <eliz@gnu.org> * 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 _$@ |