diff options
-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 $@ |