diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 1 | ||||
-rw-r--r-- | test/Makefile.in | 1 | ||||
-rw-r--r-- | test/readdir.awk | 4 |
4 files changed, 7 insertions, 4 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 8d9c814e..2b669517 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2012-11-19 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (readdir): Add a 'this could fail message'. + * readdir.awk: Revise to match simplified behavior of the extension. + 2012-11-13 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (GAWK_EXTRA_TESTS): Move to sorted order of tests. diff --git a/test/Makefile.am b/test/Makefile.am index 0f78c442..fc1a1076 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1680,6 +1680,7 @@ assignconst: @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ readdir: + @echo This test can fail on some filesystems. @echo $@ @ls -fli $(top_srcdir) | sed 1d | $(AWK) -f $(srcdir)/readdir0.awk > $@.ok @$(AWK) -f $(srcdir)/readdir.awk $(top_srcdir) > _$@ diff --git a/test/Makefile.in b/test/Makefile.in index 28fc43ce..040b49f2 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2061,6 +2061,7 @@ assignconst: @-$(CMP) $(srcdir)/$@.ok _$@ && rm -f _$@ readdir: + @echo This test can fail on some filesystems. @echo $@ @ls -fli $(top_srcdir) | sed 1d | $(AWK) -f $(srcdir)/readdir0.awk > $@.ok @$(AWK) -f $(srcdir)/readdir.awk $(top_srcdir) > _$@ diff --git a/test/readdir.awk b/test/readdir.awk index 2e3df453..d407bbce 100644 --- a/test/readdir.awk +++ b/test/readdir.awk @@ -1,7 +1,3 @@ @load "readdir" -BEGIN { - readdir_do_ftype("stat") -} - { print } |