diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-30 21:27:35 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-10-30 21:27:35 +0200 |
commit | 13f1e85d9e0afc5ad03d0cb0a4dcab14cf9e4a29 (patch) | |
tree | f8379e6f15c91655128baac3c9079c286c33eecb | |
parent | 4e8bd99197f48cfaa79b095a34a88223f96f429d (diff) | |
download | egawk-13f1e85d9e0afc5ad03d0cb0a4dcab14cf9e4a29.tar.gz egawk-13f1e85d9e0afc5ad03d0cb0a4dcab14cf9e4a29.tar.bz2 egawk-13f1e85d9e0afc5ad03d0cb0a4dcab14cf9e4a29.zip |
Further fix to pipeio3.
-rw-r--r-- | test/ChangeLog | 12 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index beabad0d..55430ef4 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,8 +1,14 @@ +2013-10-30 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (pipeio3): Enhance test, again, to be more resilient + to variations in error messages produced by different Bourne shells + when a command is not found. This time for Cygwin. + 2013-10-22 Arnold D. Robbins <arnold@skeeve.com> - * Makefile.am (pipeio3): Enhance test to be more resilient to variations - in error messages produced by different Bourne shells when a command - is not found. + * Makefile.am (pipeio3): Enhance test to be more resilient to + variations in error messages produced by different Bourne shells + when a command is not found. Initially for Mac OS X. 2013-10-17 Arnold D. Robbins <arnold@skeeve.com> diff --git a/test/Makefile.am b/test/Makefile.am index ff3db193..04c25dfe 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1885,7 +1885,7 @@ backsmalls1: pipeio3: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @sed 's/sh.*cart:.*not found/sh: 1: cart: not found/' < _$@ >_x$@ ; mv _x$@ _$@ + @sed 's/.*sh.*cart:.*not found/sh: 1: cart: not found/' < _$@ >_x$@ ; mv _x$@ _$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ # Targets generated for other tests: diff --git a/test/Makefile.in b/test/Makefile.in index 2ab56a5e..26db046d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2279,7 +2279,7 @@ backsmalls1: pipeio3: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @sed 's/sh.*cart:.*not found/sh: 1: cart: not found/' < _$@ >_x$@ ; mv _x$@ _$@ + @sed 's/.*sh.*cart:.*not found/sh: 1: cart: not found/' < _$@ >_x$@ ; mv _x$@ _$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ Gt-dummy: # file Maketests, generated from Makefile.am by the Gentests program |