mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfsqa: fix size specification for scratch mkfs
When making a specifically sized scratch filesystem, we need to calculate the size rather than assigning the caclculation expression to a variable and passing that into the _scratch_mkfs_sized function. Currently sized filesystems are failing to be made and the code is falling back to full sized filesystems so we are not testing enospc issues correctly. Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
@@ -62,7 +62,7 @@ rm -f $seq.full
|
||||
umount $SCRATCH_DEV >/dev/null 2>&1
|
||||
echo "*** MKFS ***" >>$seq.full
|
||||
echo "" >>$seq.full
|
||||
let SIZE=50*1024*1024
|
||||
SIZE=`expr 50 \* 1024 \* 1024`
|
||||
_scratch_mkfs_sized $SIZE >>$seq.full 2>&1 \
|
||||
|| _fail "mkfs failed"
|
||||
_scratch_mount >>$seq.full 2>&1 \
|
||||
|
||||
@@ -40,7 +40,7 @@ _supported_os Linux
|
||||
|
||||
_require_scratch
|
||||
|
||||
SIZE=104*1024*1024
|
||||
SIZE=`expr 104 \* 1024 \* 1024`
|
||||
_scratch_mkfs_sized $SIZE &> /dev/null
|
||||
_scratch_mount
|
||||
|
||||
|
||||
Reference in New Issue
Block a user