xfstests: include test subdirectory support
[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
25 seq=`basename $0`
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
32
33 # get standard environment, filters and checks
34 . ./common.rc
35 . ./common.filter
36 # Disable all sync operations to get higher load
37 FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
38 _workout()
39 {
40         echo ""
41         echo "Run fsstress"
42         echo ""
43         num_iterations=10
44         enospc_time=2
45         out=$SCRATCH_MNT/fsstress.$$
46         args=`_scale_fsstress_args -p128 -n999999999 -f setattr=1 $FSSTRESS_AVOID -d $out`
47         echo "fsstress $args" >> $here/$seq.full
48         $FSSTRESS_PROG $args > /dev/null 2>&1 &
49         pid=$!
50         echo "Run dd writers in parallel"
51         for ((i=0; i < num_iterations; i++))
52         do
53                 # File will be opened with O_TRUNC each time
54                 dd if=/dev/zero of=$SCRATCH_MNT/SPACE_CONSUMER bs=1M \
55                         >> $here/$seq.full 2>&1
56                 sleep $enospc_time
57         done
58         kill $pid
59         wait $pid
60 }
61
62 # real QA test starts here
63 _supported_fs generic
64 _supported_os Linux
65 _need_to_be_root
66 _require_scratch
67
68 _scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seq.full 2>&1
69 _scratch_mount
70
71 if ! _workout; then
72         umount $SCRATCH_DEV 2>/dev/null
73         exit
74 fi
75
76 if ! _scratch_unmount; then
77         echo "failed to umount"
78         status=1
79         exit
80 fi
81 _check_scratch_fs
82 status=$?
83 exit