diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index ab4849dd..f58a2ef3 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2016-04-24 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (pty1): Ignore errors. + 2016-04-17 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (pty1): Really disable test on z/OS. diff --git a/test/Makefile.am b/test/Makefile.am index c2efb066..09bcc769 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2226,7 +2226,7 @@ watchpoint1: pty1: @echo $@ - @case `uname` in \ + @-case `uname` in \ *[Oo][Ss]/390*) : ;; \ *) AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ;; \ diff --git a/test/Makefile.in b/test/Makefile.in index d3065fa0..9a03ce74 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -271,6 +271,7 @@ pkgextensiondir = @pkgextensiondir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ +runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -2664,7 +2665,7 @@ watchpoint1: pty1: @echo $@ - @case `uname` in \ + @-case `uname` in \ *[Oo][Ss]/390*) : ;; \ *) AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ;; \ |