diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-19 22:08:18 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-19 22:08:18 +0200 |
commit | adc4e4b4a6466236adb1759a79183afb7501b8de (patch) | |
tree | b8db584d05599ca5d2ba175f36fed9b58512dd72 /test | |
parent | adb0a3271736be1b8c9a899d7e42ac9777837688 (diff) | |
download | egawk-adc4e4b4a6466236adb1759a79183afb7501b8de.tar.gz egawk-adc4e4b4a6466236adb1759a79183afb7501b8de.tar.bz2 egawk-adc4e4b4a6466236adb1759a79183afb7501b8de.zip |
Simplify readdir extension.
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 } |