Merge branch 'master' of git://git.kernel.org/pub/scm/fs/xfs/xfstests-dev
[xfstests-dev.git] / 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 # creator
25 owner=dmonakhov@openvz.org
26
27 seq=`basename $0`
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 # Disable all sync operations to get higher load
39 FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
40 _workout()
41 {
42         echo ""
43         echo "Run fsstress"
44         echo ""
45         num_iterations=10
46         enospc_time=2
47         out=$SCRATCH_MNT/fsstress.$$
48         args="-p128 -n999999999 -f setattr=1 $FSSTRESS_AVOID -d $out"
49         echo "fsstress $args" >> $here/$seq.full
50         $FSSTRESS_PROG $args > /dev/null 2>&1 &
51         pid=$!
52         echo "Run dd writers in parallel"
53         for ((i=0; i < num_iterations; i++))
54         do
55                 # File will be opened with O_TRUNC each time
56                 dd if=/dev/zero of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M \
57                         >> $here/$seq.full 2>&1
58                 sleep $enospc_time
59         done
60         kill $pid
61         wait $pid
62 }
63
64 # real QA test starts here
65 _supported_fs generic
66 _supported_os Linux
67 _need_to_be_root
68 _require_scratch
69
70 _scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seq.full 2>&1
71 _scratch_mount
72
73 if ! _workout; then
74         umount $SCRATCH_DEV 2>/dev/null
75         exit
76 fi
77
78 if ! _scratch_unmount; then
79         echo "failed to umount"
80         status=1
81         exit
82 fi
83 _check_scratch_fs
84 status=$?
85 exit