summaryrefslogtreecommitdiff
path: root/tests/dd/skip-seek-past-dev
diff options
context:
space:
mode:
Diffstat (limited to 'tests/dd/skip-seek-past-dev')
-rwxr-xr-xtests/dd/skip-seek-past-dev6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/dd/skip-seek-past-dev b/tests/dd/skip-seek-past-dev
index c5b7aab30..9e910e8ee 100755
--- a/tests/dd/skip-seek-past-dev
+++ b/tests/dd/skip-seek-past-dev
@@ -23,9 +23,10 @@ fi
. $srcdir/test-lib.sh
-# need write access to device
+# need write access to local device
# (even though we don't actually write anything)
require_root_
+require_local_dir_
get_device_size() {
BLOCKDEV=blockdev
@@ -36,8 +37,7 @@ get_device_size() {
# Get path to device the current dir is on.
# Note df can only get fs size, not device size.
-device=$(df -P --local . | tail -n1 | cut -d' ' -f1) ||
- skip_test_ 'this test runs only on local file systems'
+device=$(df -P . | tail -n1 | cut -d' ' -f1) || framework_failure
dev_size=$(get_device_size "$device") ||
skip_test_ "failed to determine size of $device"