diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-09-12 21:40:30 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-09-12 21:40:30 +0300 |
commit | e636e98fc58220b20ccac510dcad8724106d7cf5 (patch) | |
tree | 3ba06e7213aee3cc6373812d1056c42cdbfb3a5b | |
parent | 6052835e569e75c5d5505eeabe69b461ca34af1d (diff) | |
download | egawk-e636e98fc58220b20ccac510dcad8724106d7cf5.tar.gz egawk-e636e98fc58220b20ccac510dcad8724106d7cf5.tar.bz2 egawk-e636e98fc58220b20ccac510dcad8724106d7cf5.zip |
Improve filesystem warning message for readdir test.
-rw-r--r-- | test/ChangeLog | 6 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 391828ae..29b4181a 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,9 @@ +2017-09-12 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (readdir): Add to message that test can fail on + a JFS fileystem also. Thanks to Nelson Beebe for the info + and suggestion. + 2017-08-28 Arnold D. Robbins <arnold@skeeve.com> * nonfatal1.ok: Update after code change. diff --git a/test/Makefile.am b/test/Makefile.am index 99b9fade..7976fcda 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2218,7 +2218,7 @@ getfile: readdir: @if [ "`uname`" = Linux ] && [ "`stat -f . 2>/dev/null | awk 'NR == 2 { print $$NF }'`" = nfs ]; then \ - echo This test may fail on GNU/Linux systems when run on an NFS filesystem.; \ + echo This test may fail on GNU/Linux systems when run on NFS or JFS filesystems.; \ echo If it does, try rerunning on an ext'[234]' filesystem. ; \ fi @echo $@ diff --git a/test/Makefile.in b/test/Makefile.in index 7493f439..abb3b341 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2657,7 +2657,7 @@ getfile: readdir: @if [ "`uname`" = Linux ] && [ "`stat -f . 2>/dev/null | awk 'NR == 2 { print $$NF }'`" = nfs ]; then \ - echo This test may fail on GNU/Linux systems when run on an NFS filesystem.; \ + echo This test may fail on GNU/Linux systems when run on NFS or JFS filesystems.; \ echo If it does, try rerunning on an ext'[234]' filesystem. ; \ fi @echo $@ |