diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 3de264e3..3399016b 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -352,6 +352,8 @@ EXTRA_DIST = \ devfd1.awk \ devfd1.ok \ devfd2.ok \ + dfastress.awk \ + dfastress.ok \ double1.awk \ double1.ok \ double2.awk \ @@ -945,9 +947,9 @@ BASIC_TESTS = \ aryprm8 arysubnm asgext awkpath back89 backgsub childin clobber \ closebad clsflnam compare compare2 concat1 concat2 concat3 \ concat4 convfmt datanonl defref delargv delarpm2 delarprm delfunc \ - dynlj eofsplit exitval1 exitval2 fcall_exit fcall_exit2 fldchg \ - fldchgnf fnamedat fnarray fnarray2 fnaryscl fnasgnm fnmisc fordel \ - forref forsimp fsbs fsrs fsspcoln fstabplus funsemnl funsmnam \ + dfastress dynlj eofsplit exitval1 exitval2 fcall_exit fcall_exit2 \ + fldchg fldchgnf fnamedat fnarray fnarray2 fnaryscl fnasgnm fnmisc \ + fordel forref forsimp fsbs fsrs fsspcoln fstabplus funsemnl funsmnam \ funstack getline getline2 getline3 getlnbuf getnr2tb getnr2tm \ gsubasgn gsubtest gsubtst2 gsubtst3 gsubtst4 gsubtst5 gsubtst6 \ hex hsprint inputred intest intprec iobug1 leaddig leadnl litoct \ @@ -1914,6 +1916,11 @@ delfunc: @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ +dfastress: + @echo dfastress + @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ + dynlj: @echo dynlj @AWKPATH=$(srcdir) $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |