]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* tests/ls/stat-vs-dirent: Too many (losing) systems trigger the
authorJim Meyering <jim@meyering.net>
Fri, 11 Aug 2006 08:40:11 +0000 (08:40 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 11 Aug 2006 08:40:11 +0000 (08:40 +0000)
failure that this test checks for (stat/dirent inode mismatch at
a mount point), so continue to give a diagnostic about the failure,
but don't actually count it as a failure.

ChangeLog
tests/ls/stat-vs-dirent

index b7227294b3757b2e7e61a8c772014c1ba514be4e..b67f220e44ca0033ee7197f18357c458d1050293 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-08-11  Jim Meyering  <jim@meyering.net>
+
+       * tests/ls/stat-vs-dirent: Too many (losing) systems trigger the
+       failure that this test checks for (stat/dirent inode mismatch at
+       a mount point), so continue to give a diagnostic about the failure,
+       but don't actually count it as a failure.
+
 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
 
        * ABOUT-NLS: Update from gettext 0.15.
index 2e0c0282d48d582674c54e5735e0f8d82c17d213..048ba5fc4463bf351a5f5abae57cd2c71ed057d6 100755 (executable)
@@ -46,7 +46,16 @@ while :; do
       echo "$0: test failed: $t/$file: d_ino($d_ino) != st_ino($st_ino)" 1>&2
       echo "$0: This may indicate a flaw in your kernel or" \
             "file system implementation." 1>&2
-      fail=1
+      echo "$0: This flaw won't impact coreutils, but it may well"
+            "affect other tools,"
+      echo "$0: so you should report it to your operating system vendor." 1>&2
+
+      # This test fails too often, and we don't want to be distracted
+      # with reports, since the code that could be affected by the losing
+      # behavior (pwd and getcwd) works around any mismatch.
+      # So do continue to issue the warning, but don't count it as a
+      # real failure.
+      # fail=1
       break
     fi
   fi