diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-17 05:57:28 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-17 05:57:28 +0300 |
commit | 815bfc8ca15cbbac1288a9bc9e06f23890f494c4 (patch) | |
tree | 7bad063bba38f34d0763144fb54b775d177d8aee /test | |
parent | 7512c31b991b506de74f6e2971737d51418ccf68 (diff) | |
parent | df4688e6a576822b39ee5db4c4b0770246635169 (diff) | |
download | egawk-815bfc8ca15cbbac1288a9bc9e06f23890f494c4.tar.gz egawk-815bfc8ca15cbbac1288a9bc9e06f23890f494c4.tar.bz2 egawk-815bfc8ca15cbbac1288a9bc9e06f23890f494c4.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 65c60388..ab4849dd 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2016-04-17 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (pty1): Really disable test on z/OS. + 2016-04-11 Arnold D. Robbins <arnold@skeeve.com> * clos1way2.ok, clos1way3.ok, clos1way4.ok, clos1way5.ok: Update diff --git a/test/Makefile.am b/test/Makefile.am index b0b24b7d..c2efb066 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2227,7 +2227,7 @@ watchpoint1: pty1: @echo $@ @case `uname` in \ - openedition*) : ;; \ + *[Oo][Ss]/390*) : ;; \ *) AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ;; \ esac diff --git a/test/Makefile.in b/test/Makefile.in index 8eaa7299..d3065fa0 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2665,7 +2665,7 @@ watchpoint1: pty1: @echo $@ @case `uname` in \ - openedition*) : ;; \ + *[Oo][Ss]/390*) : ;; \ *) AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ;; \ esac |