common: Check the file system consistency on SCRATCH_DEV
[xfstests-dev.git] / tests / generic / 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
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common/rc
37 . ./common/filter
38 . ./common/quota
39
40 # Disable all sync operations to get higher load
41 FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
42 _workout()
43 {
44         echo ""
45         echo "Run fsstress"
46         echo ""
47         num_iterations=10
48         enospc_time=2
49         out=$SCRATCH_MNT/fsstress.$$
50         args=`_scale_fsstress_args -p128 -n999999999 -f setattr=1 $FSSTRESS_AVOID -d $out`
51         echo "fsstress $args" >> $seqres.full
52         # Grant chown capability 
53         cp $FSSTRESS_PROG  $tmp.fsstress.bin
54         if [ "`whereis setcap`" == "setcap:" ]; then
55             _notrun "setcap not installed."
56         fi
57         setcap cap_chown=epi  $tmp.fsstress.bin
58
59         (su $qa_user -c "$tmp.fsstress.bin $args" &) > /dev/null 2>&1
60         pid=$!
61
62         echo "Run dd writers in parallel"
63         for ((i=0; i < num_iterations; i++))
64         do
65                 # File will be opened with O_TRUNC each time
66                 su $qa_user -c "dd if=/dev/zero \
67                         of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M " \
68                         >> $seqres.full 2>&1
69                 sleep $enospc_time
70         done
71
72         killall $tmp.fsstress.bin
73         wait $pid
74 }
75
76 # real QA test starts here
77 _supported_fs generic
78 _supported_os Linux
79 _require_quota
80 _require_user
81 _need_to_be_root
82 _require_scratch
83
84 _scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
85 _scratch_mount "-o usrquota,grpquota"
86 chmod 777 $SCRATCH_MNT
87 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
88 quotaon -u -g $SCRATCH_MNT 2>/dev/null
89
90 if ! _workout; then
91         _scratch_unmount 2>/dev/null
92         exit
93 fi
94
95 if ! _check_quota_usage; then
96         _scratch_unmount 2>/dev/null
97         status=1
98         exit
99 fi
100
101 echo Comparing filesystem consistency
102 if ! _scratch_unmount; then
103         echo "failed to umount"
104         status=1
105         exit
106 fi
107 status=0
108 exit