mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
bfdd1e72b3
Added -P option to $DF_PROG and changed the invocation of
'df' command in generic/{251,260,273,275} testcases
with $DF_PROG.
Otherwise the testcases will fail if the scratch
device has a long name (for example, if it's an LVM volume).
Because df outputs its usage stats with two lines:
/dev/mapper/xfstests-disk1
3030800 4608 2868908 1% /tmp/mnt/disk1
Signed-off-by: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
Reviewed-by: Rich Johnston <rjohnston@sgi.com>
Signed-off-by: Rich Johnston <rjohnston@sgi.com>
144 lines
2.7 KiB
Bash
Executable File
144 lines
2.7 KiB
Bash
Executable File
#! /bin/bash
|
|
# FS QA Test No. 273
|
|
#
|
|
# reservation test with heavy cp workload
|
|
#
|
|
#-----------------------------------------------------------------------
|
|
# Copyright (c) 2011-2012 Fujitsu, Inc. All Rights Reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope that it would be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write the Free Software Foundation,
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
#
|
|
#-----------------------------------------------------------------------
|
|
#
|
|
#creator
|
|
|
|
seq=`basename $0`
|
|
seqres=$RESULT_DIR/$seq
|
|
echo "QA output created by $seq"
|
|
|
|
here=`pwd`
|
|
tmp=/tmp/$$
|
|
status=0 # success is the default!
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
_cleanup()
|
|
{
|
|
cd /
|
|
rm -rf $tmp.*
|
|
_scratch_unmount
|
|
}
|
|
|
|
. ./common/rc
|
|
. ./common/filter
|
|
|
|
threads=50
|
|
count=2
|
|
|
|
_threads_set()
|
|
{
|
|
_cpu_num=`$here/src/feature -o`
|
|
threads=$(($_cpu_num * 50))
|
|
if [ $threads -gt 200 ]
|
|
then
|
|
threads=200
|
|
fi
|
|
}
|
|
|
|
_file_create()
|
|
{
|
|
_i=0
|
|
|
|
if ! mkdir $SCRATCH_MNT/origin
|
|
then
|
|
echo "mkdir origin err"
|
|
status=1
|
|
exit
|
|
fi
|
|
|
|
cd $SCRATCH_MNT/origin
|
|
|
|
_disksize=`$DF_PROG --block-size=1 $SCRATCH_DEV | awk -v sd=$SCRATCH_DEV 'BEGIN{c=0}{for(i=1;i<=NF;++i){a[c]=$i;++c}}END{for(entry in a){if(a[entry] ~ sd){print a[entry + 3]; break}}}'`
|
|
_disksize=$(($_disksize / 3))
|
|
_num=$(($_disksize / $count / $threads / 4096))
|
|
_count=$count
|
|
while [ $_i -lt $_num ]
|
|
do
|
|
dd if=/dev/zero of=file_$_i bs=4096 count=$_count >/dev/null 2>&1
|
|
_i=$(($_i + 1))
|
|
done
|
|
|
|
cd $here
|
|
}
|
|
|
|
_porter()
|
|
{
|
|
_suffix=$1
|
|
|
|
if ! mkdir $SCRATCH_MNT/sub_$_suffix
|
|
then
|
|
echo "mkdir sub_xxx err"
|
|
status=1
|
|
exit
|
|
fi
|
|
|
|
cp -r $SCRATCH_MNT/origin $SCRATCH_MNT/sub_$_suffix >>$seqres.full 2>&1
|
|
if [ $? -ne 0 ]
|
|
then
|
|
echo "_porter $_suffix not complete"
|
|
fi
|
|
|
|
sync
|
|
}
|
|
|
|
_do_workload()
|
|
{
|
|
_pids=""
|
|
_pid=1
|
|
|
|
_threads_set
|
|
_file_create
|
|
|
|
_threads=$threads
|
|
|
|
while [ $_pid -lt $_threads ]
|
|
do
|
|
_porter $_pid &
|
|
_pids="$_pids $!"
|
|
_pid=$(($_pid + 1))
|
|
done
|
|
|
|
wait $_pids
|
|
}
|
|
|
|
# real QA test starts here
|
|
_supported_fs generic
|
|
_supported_os IRIX Linux
|
|
_require_scratch
|
|
|
|
echo "------------------------------"
|
|
echo "start the workload"
|
|
echo "------------------------------"
|
|
|
|
rm -f $seqres.full
|
|
|
|
_scratch_unmount 2>/dev/null
|
|
_scratch_mkfs_sized $((2 * 1024 * 1024 * 1024)) >>$seqres.full 2>&1
|
|
_scratch_mount
|
|
|
|
_do_workload
|
|
|
|
_check_scratch_fs
|
|
status=$?
|
|
exit
|