280: test freeze deadlock w/ quotas
[xfstests-dev.git] / 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 # creator
26 owner=jack@suse.cz
27
28 seq=`basename $0`
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 $here/$seq.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=2000
57         args="-n $count -d $out -p 7"
58
59         echo "fsstress $args" | tee -a $here/$seq.full | sed -e "s#$out#outdir#"
60         if ! $FSSTRESS_PROG $args | tee -a $here/$seq.full | _filter_num
61         then
62                 echo "    fsstress $args returned $?"
63                 cat $tmp.out | tee -a $here/$seq.full
64                 status=1
65         fi
66 }
67
68 # real QA test starts here
69 _supported_fs generic
70 _supported_os Linux
71 _require_scratch
72 _require_quota
73 _need_to_be_root
74
75 _scratch_mkfs >> $seq.full 2>&1
76 _scratch_mount "-o usrquota,grpquota"
77 chmod 777 $SCRATCH_MNT
78 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
79 quotaon -u -g $SCRATCH_MNT 2>/dev/null
80
81 if ! _fsstress; then
82         umount $SCRATCH_DEV 2>/dev/null
83         exit
84 fi
85
86 if ! _check_quota_usage; then
87         umount $SCRATCH_DEV 2>/dev/null
88         status=1
89         exit
90 fi
91
92 umount $SCRATCH_DEV 2>/dev/null
93 status=0
94 exit