Files
apfstests/tests/generic/275
T

83 lines
2.2 KiB
Bash
Raw Normal View History

2011-11-08 11:41:45 +08:00
#! /bin/bash
2018-06-09 11:35:42 +10:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2011-2012 Fujitsu, Inc. All Rights Reserved.
#
2011-11-08 11:41:45 +08:00
# FS QA Test No. 275
#
2012-09-10 20:46:10 -05:00
# The posix write test. When write size is larger than disk free size,
# should write as much as possible until ENOSPC.
2011-11-08 11:41:45 +08:00
#
#creator
seq=`basename $0`
seqres=$RESULT_DIR/$seq
2011-11-08 11:41:45 +08:00
echo "QA output created by $seq"
here=`pwd`
tmp=/tmp/$$
2012-09-10 20:46:10 -05:00
status=1 # failure is the default!
2011-11-08 11:41:45 +08:00
trap "_cleanup; exit \$status" 0 1 2 3 15
_cleanup()
{
cd /
_scratch_unmount
}
2013-03-15 12:28:04 +00:00
. ./common/rc
. ./common/filter
2011-11-08 11:41:45 +08:00
# real QA test starts here
_supported_fs generic
_supported_os Linux
2011-11-08 11:41:45 +08:00
_require_scratch
echo "------------------------------"
2012-09-10 20:46:10 -05:00
echo "write until ENOSPC test"
2011-11-08 11:41:45 +08:00
echo "------------------------------"
rm -f $seqres.full
2011-11-08 11:41:45 +08:00
2015-12-21 18:07:43 +11:00
_scratch_unmount 2>/dev/null
_scratch_mkfs_sized $((2 * 1024 * 1024 * 1024)) >>$seqres.full 2>&1
2011-11-08 11:41:45 +08:00
_scratch_mount
# this file will get removed to create 256k of free space after ENOSPC
# conditions are created.
dd if=/dev/zero of=$SCRATCH_MNT/tmp1 bs=256K count=1 >>$seqres.full 2>&1
2012-09-10 20:46:10 -05:00
[ $? -ne 0 ] && _fail "Error creating file"
2011-11-08 11:41:45 +08:00
2012-09-10 20:46:10 -05:00
# Attempt to completely fill fs
dd if=/dev/zero of=$SCRATCH_MNT/tmp2 bs=1M >>$seqres.full 2>&1
2011-11-08 11:41:45 +08:00
sync
dd if=/dev/zero of=$SCRATCH_MNT/tmp3 bs=4K >>$seqres.full 2>&1
2011-11-08 11:41:45 +08:00
sync
2012-09-10 20:46:10 -05:00
# Last effort, use O_SYNC
dd if=/dev/zero of=$SCRATCH_MNT/tmp4 bs=4K oflag=sync >>$seqres.full 2>&1
2012-09-10 20:46:10 -05:00
# Save space usage info to the full file
echo "Pre rm space:" >> $seqres.full
2013-10-29 09:25:24 +00:00
$DF_PROG $SCRATCH_MNT >>$seqres.full 2>&1
2011-11-08 11:41:45 +08:00
2012-09-10 20:46:10 -05:00
# Should leave approx 256k free
rm -f $SCRATCH_MNT/tmp1
sync
echo "Post rm space:" >> $seqres.full
2013-10-29 09:25:24 +00:00
$DF_PROG $SCRATCH_MNT >>$seqres.full 2>&1
_freespace=`$DF_PROG -k $SCRATCH_MNT | tail -n 1 | awk '{print $5}'`
2012-09-10 20:46:10 -05:00
[ $_freespace -gt 1024 ] && _fail "could not sufficiently fill filesystem"
# Try to write more than available space in chunks that will allow at least one
# full write to succeed.
dd if=/dev/zero of=$SCRATCH_MNT/tmp1 bs=128k count=8 >>$seqres.full 2>&1
echo "Bytes written until ENOSPC:" >>$seqres.full
du $SCRATCH_MNT/tmp1 >>$seqres.full
2012-09-10 20:46:10 -05:00
# And at least some of it should succeed.
2019-11-01 18:28:21 +08:00
_filesize=`_get_filesize $SCRATCH_MNT/tmp1`
[ $_filesize -lt $((128 * 1024)) ] && \
_fail "Partial write until enospc failed; wrote $_filesize bytes."
2011-11-08 11:41:45 +08:00
echo "done"
2012-09-10 20:46:10 -05:00
status=0
2011-11-08 11:41:45 +08:00
exit