Files
apfstests/tests/generic/476
T

50 lines
986 B
Bash
Raw Normal View History

#! /bin/bash
2018-06-09 11:35:42 +10:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2017 Oracle, Inc. All Rights Reserved.
#
# FS QA Test No. 476
#
# Run an all-writes fsstress run with multiple threads to shake out
# bugs in the write path.
#
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.*
$KILLALL_PROG -9 fsstress > /dev/null 2>&1
}
# get standard environment, filters and checks
. ./common/rc
# Modify as appropriate.
_supported_fs generic
_supported_os Linux
_require_scratch
_require_command "$KILLALL_PROG" "killall"
rm -f $seqres.full
echo "Silence is golden."
_scratch_mkfs > $seqres.full 2>&1
_scratch_mount >> $seqres.full 2>&1
nr_cpus=$((LOAD_FACTOR * 4))
nr_ops=$((25000 * nr_cpus * TIME_FACTOR))
$FSSTRESS_PROG $FSSTRESS_AVOID -w -d $SCRATCH_MNT -n $nr_ops -p $nr_cpus >> $seqres.full
# success, all done
status=0
exit