Add three additional quota tests - 106/107/108.
[xfstests-dev.git] / 113
1 #! /bin/sh
2 # FS QA Test No. 113
3 #
4 # aio-stress
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2005 Silicon Graphics, Inc.  All Rights Reserved.
8
9 # This program is free software; you can redistribute it and/or modify it
10 # under the terms of version 2 of the GNU General Public License as
11 # published by the Free Software Foundation.
12
13 # This program is distributed in the hope that it would be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
17 # Further, this software is distributed without any warranty that it is
18 # free of the rightful claim of any third person regarding infringement
19 # or the like.  Any license provided herein, whether implied or
20 # otherwise, applies only to this software file.  Patent licenses, if
21 # any, provided herein do not apply to combinations of this program with
22 # other software, or any other product whatsoever.
23
24 # You should have received a copy of the GNU General Public License along
25 # with this program; if not, write the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
27
28 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
29 # Mountain View, CA  94043, or:
30
31 # http://www.sgi.com 
32
33 # For further information regarding this notice, see: 
34
35 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
36 #-----------------------------------------------------------------------
37 #
38 # creator
39 owner=nathans@sgi.com
40
41 seq=`basename $0`
42 echo "QA output created by $seq"
43
44 here=`pwd`
45 tmp=/tmp/$$
46 status=0        # success is the default!
47 trap "_cleanup; exit \$status" 0 1 2 3 15
48
49 _cleanup()
50 {
51     cd /
52     rm -f $testdir/aio-stress.$$.*
53     _cleanup_testdir
54 }
55
56 # get standard environment, filters and checks
57 . ./common.rc
58 . ./common.filter
59
60 _do_test()
61 {
62     _n="$1"
63     _param="$2"
64     _count="$3"
65     _nproc="$4"
66
67     _files="$testdir/aiostress.$$.$_n"
68     __proc=$_nproc
69     [ $__proc -gt 1 ] && _param="-t $__proc $_param"
70     while [ $__proc -gt 1 ]; do
71         _files="$_files $testdir/aiostress.$$.$_n.$__proc"
72         __proc=`expr $__proc - 1`
73     done
74     rm -f $_files
75  
76     echo ""
77     echo "-----------------------------------------------"
78     echo "aio-stress.$_n : $_param"
79     echo "-----------------------------------------------"
80     if ! $here/ltp/aio-stress $_param $AIOSTRESS_AVOID -I $_count $_files >>$tmp.out 2>&1
81     then
82         echo "    aio-stress (count=$_count) returned $?"
83         cat $tmp.out
84         status=1
85         exit
86     fi
87
88     _check_test_fs
89     rm -f $_files
90 }
91
92
93 # real QA test starts here
94 _supported_os Linux
95
96 [ -x $here/ltp/aio-stress ] || _notrun "aio-stress not built for this platform"
97
98 _setup_testdir
99
100 echo "brevity is wit..."
101
102 count=1000
103 procs=20
104
105 _check_test_fs
106
107 # the default
108 _do_test 1 "-s 120m" $count 1
109
110 # and the default with multiprocess
111 _do_test 2 "-s 10m" $count $procs
112
113 # as above, but now using direct IO
114 _do_test 3 "-s 10m -O" $count $procs
115
116 exit