mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
common: fix _require_fs_space on remote file systems
Remove the -l flag to df so that it works properly on NFS and co. This fixes various failures in new COW tests on NFS. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
committed by
Dave Chinner
parent
d172db236c
commit
b7441181b1
@@ -1927,7 +1927,7 @@ _require_fs_space()
|
||||
BLOCKS=$2 # in units of 1024
|
||||
let GB=$BLOCKS/1024/1024
|
||||
|
||||
FREE_BLOCKS=`df -klP $MNT | grep -v Filesystem | awk '{print $4}'`
|
||||
FREE_BLOCKS=`df -kP $MNT | grep -v Filesystem | awk '{print $4}'`
|
||||
[ $FREE_BLOCKS -lt $BLOCKS ] && \
|
||||
_notrun "This test requires at least ${GB}GB free on $MNT to run"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user