2005-02-14 13:52:05 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
# FS QA Test No. 113
|
|
|
|
|
#
|
|
|
|
|
# aio-stress
|
|
|
|
|
#
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
# Copyright (c) 2005 Silicon Graphics, Inc. All Rights Reserved.
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# creator
|
|
|
|
|
owner=nathans@sgi.com
|
|
|
|
|
|
|
|
|
|
seq=`basename $0`
|
|
|
|
|
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 -f $testdir/aio-stress.$$.*
|
|
|
|
|
_cleanup_testdir
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
|
|
|
|
. ./common.rc
|
|
|
|
|
. ./common.filter
|
|
|
|
|
|
|
|
|
|
_do_test()
|
|
|
|
|
{
|
|
|
|
|
_n="$1"
|
|
|
|
|
_param="$2"
|
|
|
|
|
_count="$3"
|
2005-02-14 13:52:46 +00:00
|
|
|
_nproc="$4"
|
2005-02-14 13:52:05 +00:00
|
|
|
|
2005-02-14 13:52:46 +00:00
|
|
|
_files="$testdir/aiostress.$$.$_n"
|
|
|
|
|
__proc=$_nproc
|
|
|
|
|
[ $__proc -gt 1 ] && _param="-t $__proc $_param"
|
|
|
|
|
while [ $__proc -gt 1 ]; do
|
|
|
|
|
_files="$_files $testdir/aiostress.$$.$_n.$__proc"
|
2009-03-25 20:53:36 +01:00
|
|
|
let __proc=$__proc-1
|
2005-02-14 13:52:46 +00:00
|
|
|
done
|
|
|
|
|
rm -f $_files
|
2005-02-14 13:52:05 +00:00
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "-----------------------------------------------"
|
|
|
|
|
echo "aio-stress.$_n : $_param"
|
|
|
|
|
echo "-----------------------------------------------"
|
2005-02-14 13:52:46 +00:00
|
|
|
if ! $here/ltp/aio-stress $_param $AIOSTRESS_AVOID -I $_count $_files >>$tmp.out 2>&1
|
2005-02-14 13:52:05 +00:00
|
|
|
then
|
|
|
|
|
echo " aio-stress (count=$_count) returned $?"
|
|
|
|
|
cat $tmp.out
|
|
|
|
|
status=1
|
2005-02-14 13:53:25 +00:00
|
|
|
exit
|
2005-02-14 13:52:05 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
_check_test_fs
|
2005-02-14 13:53:25 +00:00
|
|
|
rm -f $_files
|
2005-02-14 13:52:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# real QA test starts here
|
2005-02-14 13:52:46 +00:00
|
|
|
_supported_os Linux
|
|
|
|
|
|
|
|
|
|
[ -x $here/ltp/aio-stress ] || _notrun "aio-stress not built for this platform"
|
2005-02-14 13:52:05 +00:00
|
|
|
|
|
|
|
|
_setup_testdir
|
|
|
|
|
|
|
|
|
|
echo "brevity is wit..."
|
|
|
|
|
|
|
|
|
|
count=1000
|
|
|
|
|
procs=20
|
|
|
|
|
|
|
|
|
|
_check_test_fs
|
|
|
|
|
|
|
|
|
|
# the default
|
2005-02-14 13:54:04 +00:00
|
|
|
_do_test 1 "-s 120m" $count 1
|
2005-02-14 13:52:05 +00:00
|
|
|
|
|
|
|
|
# and the default with multiprocess
|
2005-02-14 13:54:04 +00:00
|
|
|
_do_test 2 "-s 10m" $count $procs
|
2005-02-14 13:52:05 +00:00
|
|
|
|
|
|
|
|
# as above, but now using direct IO
|
2005-02-14 13:54:04 +00:00
|
|
|
_do_test 3 "-s 10m -O" $count $procs
|
2005-02-14 13:52:05 +00:00
|
|
|
|
|
|
|
|
exit
|