summaryrefslogtreecommitdiff
path: root/tests/df/skip-rootfs.sh
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2015-01-12 01:14:11 +0000
committerPádraig Brady <P@draigBrady.com>2015-01-12 01:24:29 +0000
commit924b1cadff3f2782475516d7eca9aabe856dbf0f (patch)
tree98bd0fe9735e2c442ff7243ffa815cd684d8dc51 /tests/df/skip-rootfs.sh
parenteef0cd62dd63c12e28b1c7779fb149a8a30f8fe7 (diff)
downloadcoreutils-924b1cadff3f2782475516d7eca9aabe856dbf0f.tar.xz
tests: avoid skipping some df tests with libmount
* tests/df/no-mtab-status.sh: Provide libmount placeholders, to avoid skipping the test when libmount is in use. * tests/df/skip-duplicates.sh: Likewise. * tests/df/skip-rootfs.sh: Comment that the test is moot when libmount (/proc/self/mountinfo) is being used.
Diffstat (limited to 'tests/df/skip-rootfs.sh')
-rwxr-xr-xtests/df/skip-rootfs.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/df/skip-rootfs.sh b/tests/df/skip-rootfs.sh
index 9bb142406..ed5364eb3 100755
--- a/tests/df/skip-rootfs.sh
+++ b/tests/df/skip-rootfs.sh
@@ -22,8 +22,10 @@ print_ver_ df
df || skip_ "df fails"
# Verify that rootfs is in mtab (and shown when the -a option is specified).
+# Note this is the case when /proc/self/mountinfo is parsed
+# rather than /proc/mounts. I.E. when libmount is being used.
df -a >out || fail=1
-grep '^rootfs' out || skip_ "no rootfs in mtab"
+grep '^rootfs' out || skip_ 'no rootfs in mtab'
# Ensure that rootfs is suppressed when no options is specified.
df >out || fail=1