summaryrefslogtreecommitdiff
path: root/tests/ls
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-12-05 17:41:28 +0100
committerJim Meyering <meyering@redhat.com>2009-12-06 08:48:51 +0100
commitd8cadda3b9b656870d54fe89dc94e72ecd496013 (patch)
treec7b102ffff03cf954023f5b57b064a978a0b2d3b /tests/ls
parentafd087d4140a40a1ff9db84be5bcb5c7c49084c8 (diff)
downloadcoreutils-d8cadda3b9b656870d54fe89dc94e72ecd496013.tar.xz
tests: readdir-mountpoint-inode avoid false-positive w/virtualbox
* tests/ls/readdir-mountpoint-inode: With some systems, stat can succeed on a mount point and report that the inode number is 0. Since ls displays "?" for those, that would otherwise show up as a difference. Skip such mount points. Reported by Sergei Steshenko in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/19142
Diffstat (limited to 'tests/ls')
-rwxr-xr-xtests/ls/readdir-mountpoint-inode2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ls/readdir-mountpoint-inode b/tests/ls/readdir-mountpoint-inode
index c0214732a..979b579b0 100755
--- a/tests/ls/readdir-mountpoint-inode
+++ b/tests/ls/readdir-mountpoint-inode
@@ -65,6 +65,8 @@ inode_via_readdir()
for dir in $mount_points; do
readdir_inode=$(inode_via_readdir $dir)
stat_inode=$(env stat --format=%i $dir)
+ # If stat fails or says the inode is 0, skip $dir.
+ case $stat_inode in 0|'') continue;; esac
test "$readdir_inode" = "$stat_inode" || fail=1
done