diff options
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 33e2b0bf..c827340d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1168,6 +1168,7 @@ EXTRA_DIST = \ readbuf.ok \ readdir.awk \ readdir0.awk \ + readdir_retest.awk \ readfile2.awk \ readfile2.ok \ rebrackloc.awk \ @@ -1579,7 +1580,7 @@ SHLIB_TESTS = \ getfile \ inplace1 inplace2 inplace3 \ ordchr ordchr2 \ - readdir readdir_test readfile readfile2 revout \ + readdir readdir_test readdir_retest readfile readfile2 revout \ revtwoway rwarray \ testext time @@ -2711,6 +2712,12 @@ readdir_test: @$(AWK) -lreaddir_test '{printf "[%s] [%s] [%s] [%s]\n", $$1, $$2, $$3, $$4}' "$(top_srcdir)" > _$@ @-$(CMP) $@.ok _$@ && rm -f $@.ok _$@ +readdir_retest: + @echo $@ + @$(AWK) -lreaddir -F/ -f $@.awk "$(top_srcdir)" > $@.ok + @$(AWK) -lreaddir_test -F/ -f $@.awk "$(top_srcdir)" > _$@ + @-$(CMP) $@.ok _$@ && rm -f $@.ok _$@ + fts: @case `uname` in \ IRIX) \ @@ -4666,6 +4673,7 @@ Maketests: $(srcdir)/Makefile.am $(srcdir)/Gentests clean-local: rm -fr _* core core.* fmtspcl.ok junk strftime.ok test1 test2 \ seq *~ readfile.ok fork.tmp.* testext.awk fts.ok readdir.ok \ + readdir_test.ok readdir_retest.ok \ profile1.ok # An attempt to print something that can be grepped for in build logs |