xfstests: remove _need_to_be_root
[xfstests-dev.git] / tests / generic / 233
1 #! /bin/bash
2 # FSQA Test No. 233
3 #
4 # Run fsstress with quotas enabled and limits set low and verify accounted
5 # quotas in the end
6 #
7 # Derived from test 231
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
35
36 # get standard environment, filters and checks
37 . ./common/rc
38 . ./common/filter
39 . ./common/quota
40
41 _filter_num()
42 {
43         tee -a $seqres.full |\
44         sed -e 's/[0-9][0-9]* inodes/I inodes/g' \
45             -e 's/[0-9][0-9]* paths/P paths/g' \
46             -e 's/seed = [0-9][0-9]*/seed = S/'
47 }
48
49 _fsstress()
50 {
51         echo ""
52         echo "Testing fsstress"
53         echo ""
54
55         out=$SCRATCH_MNT/fsstress.$$
56         count=5000
57         args=`_scale_fsstress_args -z \
58 -f rmdir=20 -f link=10 -f creat=10 -f mkdir=10 -f unlink=20 -f symlink=10 \
59 -f rename=10 -f fsync=2 -f write=15 -f dwrite=15 \
60 -n $count -d $out -p 7`
61
62         echo "fsstress $args" >> $seqres.full
63         if ! su $qa_user -c "$FSSTRESS_PROG $args" | tee -a $seqres.full | _filter_num
64         then
65                 echo "    fsstress $args returned $?"
66                 cat $tmp.out | tee -a $seqres.full
67                 status=1
68         fi
69 }
70
71 # real QA test starts here
72 _supported_fs generic
73 _supported_os Linux
74 _require_scratch
75 _require_quota
76 _require_user
77
78 _scratch_mkfs > $seqres.full 2>&1
79 _scratch_mount "-o usrquota,grpquota"
80 chmod 777 $SCRATCH_MNT
81 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
82 quotaon -u -g $SCRATCH_MNT 2>/dev/null
83 setquota -u $qa_user 32000 32000 1000 1000 $SCRATCH_MNT 2>/dev/null
84
85 _fsstress
86 _check_quota_usage
87 _scratch_unmount
88 status=0
89 exit