diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 28566ae8..884d353d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -670,6 +670,8 @@ EXTRA_DIST = \ functab3.ok \ functab4.awk \ functab4.ok \ + functab5.awk \ + functab5.ok \ funlen.awk \ funlen.in \ funlen.ok \ @@ -1720,7 +1722,7 @@ LOCALE_CHARSET_TESTS = \ SHLIB_TESTS = \ apiterm \ - filefuncs fnmatch fork fork2 fts functab4 \ + filefuncs fnmatch fork fork2 fts functab4 functab5 \ getfile \ inplace1 inplace2 inplace2bcomp inplace3 inplace3bcomp \ ordchr ordchr2 \ @@ -5123,6 +5125,11 @@ functab4: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +functab5: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + ordchr: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |