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