mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
56 lines
1.0 KiB
Bash
56 lines
1.0 KiB
Bash
|
|
#! /bin/bash
|
||
|
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
# Copyright (c) 2018 Oracle. All Rights Reserved.
|
||
|
|
#
|
||
|
|
# FS QA Test No. 522
|
||
|
|
#
|
||
|
|
# Long-soak buffered fsx test
|
||
|
|
#
|
||
|
|
seq=`basename $0`
|
||
|
|
seqres=$RESULT_DIR/$seq
|
||
|
|
echo "QA output created by $seq"
|
||
|
|
|
||
|
|
here=`pwd`
|
||
|
|
tmp=/tmp/$$
|
||
|
|
status=1 # failure is the default!
|
||
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
||
|
|
|
||
|
|
_cleanup()
|
||
|
|
{
|
||
|
|
cd /
|
||
|
|
rm -f $tmp.*
|
||
|
|
}
|
||
|
|
|
||
|
|
# get standard environment, filters and checks
|
||
|
|
. ./common/rc
|
||
|
|
. ./common/filter
|
||
|
|
|
||
|
|
# remove previous $seqres.full before test
|
||
|
|
rm -f $seqres.full
|
||
|
|
|
||
|
|
# real QA test starts here
|
||
|
|
|
||
|
|
# Modify as appropriate.
|
||
|
|
_supported_fs generic
|
||
|
|
_supported_os Linux
|
||
|
|
_require_test
|
||
|
|
|
||
|
|
# Run fsx for a million ops or more
|
||
|
|
nr_ops=$((1000000 * TIME_FACTOR))
|
||
|
|
op_sz=$((128000 * LOAD_FACTOR))
|
||
|
|
file_sz=$((600000 * LOAD_FACTOR))
|
||
|
|
fsx_file=$TEST_DIR/fsx.$seq
|
||
|
|
|
||
|
|
fsx_args=(-q)
|
||
|
|
fsx_args+=(-N $nr_ops)
|
||
|
|
fsx_args+=(-p $((nr_ops / 100)))
|
||
|
|
fsx_args+=(-o $op_sz)
|
||
|
|
fsx_args+=(-l $file_sz)
|
||
|
|
|
||
|
|
run_fsx "${fsx_args[@]}" | sed -e '/^fsx.*/d'
|
||
|
|
|
||
|
|
# success, all done
|
||
|
|
echo Silence is golden
|
||
|
|
status=0
|
||
|
|
exit
|