From: Hugh Dickins Date: Sun, 28 Feb 2016 23:17:34 +0000 (+1100) Subject: generic/312: remove dependency on /proc/partitions X-Git-Tag: v2022.05.01~2590 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=ab0fd68ff08827442fb383c3f2c91bfd7af3d8d6;p=xfstests-dev.git generic/312: remove dependency on /proc/partitions We don't need to do this test at all, since _scratch_mkfs_sized will do this check for us. This allows this test to work with tmpfs. Signed-off-by: Theodore Ts'o Reviewed-by: Christoph Hellwig Signed-off-by: Dave Chinner --- diff --git a/tests/generic/312 b/tests/generic/312 index b5708143..669e19b4 100755 --- a/tests/generic/312 +++ b/tests/generic/312 @@ -51,11 +51,6 @@ _require_scratch # 5G in byte fssize=$((2**30 * 5)) -required_blocks=$(($fssize / 1024)) -dev_blocks=$(grep -w $(_short_dev $SCRATCH_DEV) /proc/partitions | $AWK_PROG '{print $3}') -if [ $required_blocks -gt $dev_blocks ];then - _notrun "this test requires \$SCRATCH_DEV has ${fssize}B space" -fi rm -f $seqres.full _scratch_mkfs_sized $fssize >>$seqres.full 2>&1