diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-07-29 13:29:06 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-07-29 13:29:06 +0300 |
commit | 0b28764069fb268dd716251c71d310c0a321c600 (patch) | |
tree | a1f7f3dade198691cd70a91be8c8f9e59b5101d8 | |
parent | 5a0b7f9953f24dc034eca4052214da49fbad8bd0 (diff) | |
download | egawk-0b28764069fb268dd716251c71d310c0a321c600.tar.gz egawk-0b28764069fb268dd716251c71d310c0a321c600.tar.bz2 egawk-0b28764069fb268dd716251c71d310c0a321c600.zip |
Fix next test to send output to file.
-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: |