common: Check the file system consistency on SCRATCH_DEV
[xfstests-dev.git] / tests / generic / 269
1 #! /bin/bash
2 # FSQA Test No. 269
3 #
4 # Run fsstress and ENSPC hitters in parallel, check fs consistency an the end
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 #-----------------------------------------------------------------------
23 #
24
25 seq=`basename $0`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
33
34 # get standard environment, filters and checks
35 . ./common/rc
36 . ./common/filter
37 # Disable all sync operations to get higher load
38 FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
39 _workout()
40 {
41         echo ""
42         echo "Run fsstress"
43         echo ""
44         num_iterations=10
45         enospc_time=2
46         out=$SCRATCH_MNT/fsstress.$$
47         args=`_scale_fsstress_args -p128 -n999999999 -f setattr=1 $FSSTRESS_AVOID -d $out`
48         echo "fsstress $args" >> $seqres.full
49         $FSSTRESS_PROG $args > /dev/null 2>&1 &
50         pid=$!
51         echo "Run dd writers in parallel"
52         for ((i=0; i < num_iterations; i++))
53         do
54                 # File will be opened with O_TRUNC each time
55                 dd if=/dev/zero of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M \
56                         >> $seqres.full 2>&1
57                 sleep $enospc_time
58         done
59         kill $pid
60         wait $pid
61 }
62
63 # real QA test starts here
64 _supported_fs generic
65 _supported_os Linux
66 _need_to_be_root
67 _require_scratch
68
69 _scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
70 _scratch_mount
71
72 if ! _workout; then
73         umount $SCRATCH_DEV 2>/dev/null
74         exit
75 fi
76
77 if ! _scratch_unmount; then
78         echo "failed to umount"
79         status=1
80         exit
81 fi
82 status=0
83 exit