diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-20 11:52:18 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-20 11:52:18 +0300 |
commit | 9ae6060d30ac47b5eeb88b6643807f52c0967f21 (patch) | |
tree | 562ced7caa0a2ee220bc0809215d44c666580173 | |
parent | 1d62718f4b4abaa030ff3b34723fc62c7c231f78 (diff) | |
parent | 80f5ff05db1a2e3fa67c81eb1caf120156d3634f (diff) | |
download | egawk-9ae6060d30ac47b5eeb88b6643807f52c0967f21.tar.gz egawk-9ae6060d30ac47b5eeb88b6643807f52c0967f21.tar.bz2 egawk-9ae6060d30ac47b5eeb88b6643807f52c0967f21.zip |
Merge branch 'gawk-5.1-stable'
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/Makefile.am | 1 | ||||
-rw-r--r-- | test/Makefile.in | 3 | ||||
-rw-r--r-- | test/Maketests | 2 |
4 files changed, 8 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 735d6b9c..311614ed 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2020-07-20 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (EXPECTED_FAIL_ZOS): Add posix_compare to the list. + 2020-07-12 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (EXTRA_DIST): Remove arrdbug-mpfr.ok and diff --git a/test/Makefile.am b/test/Makefile.am index 94f6775b..85342f05 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1554,6 +1554,7 @@ EXPECTED_FAIL_ZOS = \ ignrcas2 lc_num1 localenl localenl mbfw1 mbprintf1 mbprintf2 \ mbprintf3 mbprintf4 mbprintf5 mbstr1 mbstr2 mtchi18n nlstringtest \ nofile nonfatal2 numrange printhuge profile5 profile5 rebt8b2 \ + posix_compare \ regrange reint2 rri1 sigpipe1 sort1 sortfor sortu space sprintfc \ subamp subi18n symtab1 symtab11 symtab8 timeout wideidx wideidx2 \ widesub widesub2 widesub3 widesub4 diff --git a/test/Makefile.in b/test/Makefile.in index 6d0637b6..838f1087 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1820,6 +1820,7 @@ EXPECTED_FAIL_ZOS = \ ignrcas2 lc_num1 localenl localenl mbfw1 mbprintf1 mbprintf2 \ mbprintf3 mbprintf4 mbprintf5 mbstr1 mbstr2 mtchi18n nlstringtest \ nofile nonfatal2 numrange printhuge profile5 profile5 rebt8b2 \ + posix_compare \ regrange reint2 rri1 sigpipe1 sort1 sortfor sortu space sprintfc \ subamp subi18n symtab1 symtab11 symtab8 timeout wideidx wideidx2 \ widesub widesub2 widesub3 widesub4 @@ -3695,7 +3696,7 @@ pcntplus: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ posix_compare: - @echo $@ + @echo $@ $(ZOS_FAIL) @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE; \ AWKPATH="$(srcdir)" $(AWK) -f $@.awk --posix >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ diff --git a/test/Maketests b/test/Maketests index 2ef37caf..3433c651 100644 --- a/test/Maketests +++ b/test/Maketests @@ -801,7 +801,7 @@ pcntplus: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ posix_compare: - @echo $@ + @echo $@ $(ZOS_FAIL) @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=en_US.UTF-8; export GAWKLOCALE; \ AWKPATH="$(srcdir)" $(AWK) -f $@.awk --posix >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ |