diff options
-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 |