diff options
-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 21ccf3e6..3706630b 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2011-07-29 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (next): Redirect output to output file! + 2011-07-28 Arnold D. Robbins <arnold@skeeve.com> * sortu.awk, sortu.ok: Modified to make numeric comparison do diff --git a/test/Makefile.am b/test/Makefile.am index 9780e791..a640c14f 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1383,7 +1383,7 @@ posix2008sub: next: @echo $@ - @-AWK="$(AWKPROG)" $(srcdir)/$@.sh + @-AWK="$(AWKPROG)" $(srcdir)/$@.sh > _$@ 2>&1 @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ exit: diff --git a/test/Makefile.in b/test/Makefile.in index f2ff79fb..4410670e 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1734,7 +1734,7 @@ posix2008sub: next: @echo $@ - @-AWK="$(AWKPROG)" $(srcdir)/$@.sh + @-AWK="$(AWKPROG)" $(srcdir)/$@.sh > _$@ 2>&1 @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ exit: |