diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-05-05 12:30:57 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-05-05 12:30:57 +0300 |
commit | 97b1c943a98196143414760f9e616f93fccce89d (patch) | |
tree | fa8249812544bd199e8c96d75237f2bd92ebf446 /test | |
parent | 6d3c1c749c9380bd023f9bbed578e22548d6c3fb (diff) | |
parent | f64fd5e24e03182c225f9ec48ff13043ebede94d (diff) | |
download | egawk-97b1c943a98196143414760f9e616f93fccce89d.tar.gz egawk-97b1c943a98196143414760f9e616f93fccce89d.tar.bz2 egawk-97b1c943a98196143414760f9e616f93fccce89d.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 6 | ||||
-rw-r--r-- | test/Makefile.am | 6 | ||||
-rw-r--r-- | test/Makefile.in | 6 |
3 files changed, 14 insertions, 4 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 71a9887f..4d2d0098 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,9 @@ +2015-05-05 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (dbugeval): Wrap in test for interactive terminal + to avoid Mac OS X failure. Thanks to Nelson H.F. Beebe for + the report. + 2015-05-05 Andrew J. Schorr <aschorr@telemetry-investments.com> * Makefile.am (rebrackloc): New test. diff --git a/test/Makefile.am b/test/Makefile.am index b69e9e81..68ded6cd 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2081,8 +2081,10 @@ backsmalls2: dbugeval:: @echo $@ - @$(AWK) --debug -f /dev/null < "$(srcdir)"/$@.in > _$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + @if [ -t 0 ]; then \ + $(AWK) --debug -f /dev/null < "$(srcdir)"/$@.in > _$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ + $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ; \ + fi printhuge:: @echo $@ diff --git a/test/Makefile.in b/test/Makefile.in index a06fa07f..139d1e09 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2517,8 +2517,10 @@ backsmalls2: dbugeval:: @echo $@ - @$(AWK) --debug -f /dev/null < "$(srcdir)"/$@.in > _$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + @if [ -t 0 ]; then \ + $(AWK) --debug -f /dev/null < "$(srcdir)"/$@.in > _$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ + $(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ; \ + fi printhuge:: @echo $@ |