diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index f5450ff3..357f3b16 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1502,6 +1502,12 @@ EXTRA_DIST = \ typedregex3.ok \ typedregex4.awk \ typedregex4.ok \ + typedregex5.awk \ + typedregex5.in \ + typedregex5.ok \ + typedregex6.awk \ + typedregex6.in \ + typedregex6.ok \ typeof1.awk \ typeof1.ok \ typeof2.awk \ @@ -1643,6 +1649,7 @@ GAWK_EXT_TESTS = \ splitarg4 strftfld strftime strtonum strtonum1 switch2 symtab1 symtab2 \ symtab3 symtab4 symtab5 symtab6 symtab7 symtab8 symtab9 symtab10 \ timeout typedregex1 typedregex2 typedregex3 typedregex4 \ + typedregex5 typedregex6 \ typeof1 typeof2 typeof3 typeof4 typeof5 \ watchpoint1 @@ -4793,6 +4800,16 @@ typedregex3: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +typedregex5: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + +typedregex6: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + typeof1: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |