aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2011-08-09 17:42:18 +0300
committerArnold D. Robbins <arnold@skeeve.com>2011-08-09 17:42:18 +0300
commit657395eeea809730a56bb65bcfc62028deb06f73 (patch)
tree87b9415b0780941862bc5fee3c2deb440c15399d /test/Makefile.in
parent0b28764069fb268dd716251c71d310c0a321c600 (diff)
downloadegawk-657395eeea809730a56bb65bcfc62028deb06f73.tar.gz
egawk-657395eeea809730a56bb65bcfc62028deb06f73.tar.bz2
egawk-657395eeea809730a56bb65bcfc62028deb06f73.zip
Fix for ptys for coprocesses.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 4410670e..e7e920f9 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -761,6 +761,8 @@ EXTRA_DIST = \
prt1eval.ok \
prtoeval.awk \
prtoeval.ok \
+ pty1.awk \
+ pty1.ok \
rand.awk \
rand.ok \
range1.awk \
@@ -992,7 +994,8 @@ GAWK_EXT_TESTS = \
icasefs icasers igncdym igncfs ignrcas2 ignrcase indirectcall lint \
lintold lintwarn manyfiles match1 match2 match3 mbstr1 nastyparm \
next nondec nondec2 patsplit posix printfbad1 printfbad2 procinfs \
- profile1 profile2 profile3 rebuf regx8bit reint reint2 rsstart1 \
+ profile1 profile2 profile3 pty1 \
+ rebuf regx8bit reint reint2 rsstart1 \
rsstart2 rsstart3 rstest6 shadow sortfor sortu splitarg4 strftime \
strtonum switch2
@@ -2818,6 +2821,11 @@ procinfs:
@AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
@-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@
+pty1:
+ @echo pty1
+ @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
+ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@
+
rebuf:
@echo rebuf
@AWKPATH=$(srcdir) $(AWK) -f $@.awk < $(srcdir)/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@