diff options
Diffstat (limited to 'pc')
-rw-r--r-- | pc/Makefile.tst | 33 | ||||
-rw-r--r-- | pc/config.h | 6 |
2 files changed, 24 insertions, 15 deletions
diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 03ab3745..f0aab4ac 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -336,13 +336,14 @@ EXPECTED_FAIL_MINGW = \ # List of tests that fail on z/OS EXPECTED_FAIL_ZOS = \ aasort aasorti arraysort asort asorti backbigs1 backsmalls1 \ - backsmalls2 charasbytes concat4 dfamb1 double1 double2 fmttest \ - forcenum gsubtst5 ignrcas2 lc_num1 localenl mbfw1 mbprintf1 \ - mbprintf2 mbprintf3 mbprintf4 mbprintf5 mbstr1 mbstr2 numrange \ - printhuge profile5 regrange reint2 rri1 sigpipe1 sortfor sortu \ - subamp subi18n symtab1 symtab8 timeout wideidx wideidx2 \ - widesub widesub2 widesub3 widesub4 \ - beginfile1 beginfile2 clos1way6 errno getlndir nofile nonfatal2 space + backsmalls2 beginfile1 beginfile2 charasbytes clos1way6 concat4 \ + dfamb1 double1 double2 errno fmttest forcenum getlndir gsubtst5 \ + ignrcas2 lc_num1 localenl localenl mbfw1 mbprintf1 mbprintf2 \ + mbprintf3 mbprintf4 mbprintf5 mbstr1 mbstr2 mtchi18n nlstringtest \ + nofile nonfatal2 numrange printhuge profile5 profile5 rebt8b2 \ + regrange reint2 rri1 sigpipe1 sort1 sortfor sortu space sprintfc \ + subamp subi18n symtab1 symtab11 symtab8 timeout wideidx wideidx2 \ + widesub widesub2 widesub3 widesub4 # List of the files that appear in manual tests or are for reserve testing: @@ -3222,7 +3223,7 @@ symtab10: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ symtab11: - @echo $@ + @echo $@ $(ZOS_FAIL) @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @@ -3386,23 +3387,23 @@ mbprintf4: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ mtchi18n: - @echo $@ + @echo $@ $(ZOS_FAIL) @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=RUS_RUS.1251; export GAWKLOCALE; \ AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ rebt8b2: - @echo $@ + @echo $@ $(ZOS_FAIL) @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ sort1: - @echo $@ + @echo $@ $(ZOS_FAIL) @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ sprintfc: - @echo $@ + @echo $@ $(ZOS_FAIL) @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ @@ -3547,6 +3548,14 @@ diffout: fi ; \ done | more +# make things easier for z/OS +zos-diffout: + @for i in $(EXPECTED_FAIL_ZOS); do \ + if [ -f _$$i ]; then $(RM) -f _$$i ; \ + else echo $$i apparently passed! please check ; fi ; done + @echo checking for new failures ... + @-$(MAKE) diffout + # convenient way to scan valgrind results for errors valgrind-scan: @echo "Scanning valgrind log files for problems:" diff --git a/pc/config.h b/pc/config.h index 697e25ba..3683b469 100644 --- a/pc/config.h +++ b/pc/config.h @@ -461,7 +461,7 @@ #define PACKAGE_NAME "GNU Awk" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GNU Awk 5.0.63" +#define PACKAGE_STRING "GNU Awk 5.0.64" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gawk" @@ -470,7 +470,7 @@ #define PACKAGE_URL "http://www.gnu.org/software/gawk/" /* Define to the version of this package. */ -#define PACKAGE_VERSION "5.0.63" +#define PACKAGE_VERSION "5.0.64" /* Define to 1 if *printf supports %a format */ #define PRINTF_HAS_A_FORMAT 1 @@ -531,7 +531,7 @@ /* Version number of package */ -#define VERSION "5.0.63" +#define VERSION "5.0.64" /* Enable large inode numbers on Mac OS X 10.5. */ #ifndef _DARWIN_USE_64_BIT_INODE |