xfstests: rename USE_BIG_LOOPFS to be more generic
[xfstests-dev.git] / 270
1 #! /bin/bash
2 # FSQA Test No. 270
3 #
4 # Run fsstress and ENSPC hitters in parallel, check quota and 
5 # fs consistency an the end
6 #
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=dmonakhov@openvz.org
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 # Disable all sync operations to get higher load
42 FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
43 _workout()
44 {
45         echo ""
46         echo "Run fsstress"
47         echo ""
48         num_iterations=10
49         enospc_time=2
50         out=$SCRATCH_MNT/fsstress.$$
51         args=`_scale_fsstress_args -p128 -n999999999 -f setattr=1 $FSSTRESS_AVOID -d $out`
52         echo "fsstress $args" >> $here/$seq.full
53         # Grant chown capability 
54         cp $FSSTRESS_PROG  $tmp.fsstress.bin
55         if [ "`whereis setcap`" == "setcap:" ]; then
56             _notrun "setcap not installed."
57         fi
58         setcap cap_chown=epi  $tmp.fsstress.bin
59
60         (su $qa_user -c "$tmp.fsstress.bin $args" &) > /dev/null 2>&1
61         pid=$!
62
63         echo "Run dd writers in parallel"
64         for ((i=0; i < num_iterations; i++))
65         do
66                 # File will be opened with O_TRUNC each time
67                 su $qa_user -c "dd if=/dev/zero \
68                         of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M " \
69                         >> $here/$seq.full 2>&1
70                 sleep $enospc_time
71         done
72
73         killall $tmp.fsstress.bin
74         wait $pid
75 }
76
77 # real QA test starts here
78 _supported_fs generic
79 _supported_os Linux
80 _require_quota
81 _require_user
82 _need_to_be_root
83 _require_scratch
84
85 _scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seq.full 2>&1
86 _scratch_mount "-o usrquota,grpquota"
87 chmod 777 $SCRATCH_MNT
88 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
89 quotaon -u -g $SCRATCH_MNT 2>/dev/null
90
91 if ! _workout; then
92         _scratch_unmount 2>/dev/null
93         exit
94 fi
95
96 if ! _check_quota_usage; then
97         _scratch_unmount 2>/dev/null
98         status=1
99         exit
100 fi
101
102 echo Comparing filesystem consistency
103 if ! _scratch_unmount; then
104         echo "failed to umount"
105         status=1
106         exit
107 fi
108 _check_scratch_fs
109 status=$?
110 exit