common: Check the file system consistency on SCRATCH_DEV
[xfstests-dev.git] / tests / xfs / 306
1 #!/bin/bash
2 # FS QA Test No. xfs/306
3 #
4 # Basic log recovery stress test - do lots of stuff, shut down in the middle of
5 # it and check that recovery runs to completion and everything can be
6 # successfully removed afterwards..
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2013 Red Hat, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30
31 here=`pwd`
32 tmp=/tmp/$$
33 status=1        # failure is the default!
34
35 # get standard environment, filters and checks
36 . ./common/rc
37 . ./common/filter
38
39 _cleanup()
40 {
41         cd /
42         umount $SCRATCH_MNT 2>/dev/null
43         rm -f $tmp.*
44 }
45 trap "_cleanup; exit \$status" 0 1 2 3 15
46
47 # real QA test starts here
48 _supported_fs xfs
49 _supported_os Linux
50
51 _require_scratch
52
53 rm -f $seqres.full
54
55 _scratch_mkfs > $seqres.full 2>&1
56 _scratch_mount
57
58 SLEEP_TIME=$((30 * $TIME_FACTOR))
59 PROCS=$((2 * LOAD_FACTOR))
60
61 load_dir=$SCRATCH_MNT/test
62
63 # let this run for a while
64 $FSSTRESS_PROG -n10000000 -p $PROCS -d $load_dir >> $seqres.full 2>&1 &
65 sleep $SLEEP_TIME
66 killall -q $FSSTRESS_PROG
67 wait
68 sync
69 umount $SCRATCH_MNT
70
71 # now mount again, run the load again, this time with a shutdown.
72 _scratch_mount
73 $XFS_FSR_PROG -v $load_dir >> $seqres.full 2>&1
74 $FSSTRESS_PROG -n10000000 -p $PROCS -d $load_dir >> $seqres.full 2>&1 &
75 sleep $SLEEP_TIME
76 sync
77
78 # now shutdown and unmount
79 sleep 5
80 $here/src/godown $load_dir
81 killall -q $FSSTRESS_PROG
82 wait
83
84 # for some reason fsstress processes manage to live on beyond the wait?
85 sleep 5
86 umount $SCRATCH_MNT
87
88 # now recover, check the filesystem for consistency
89 _scratch_mount
90 umount $SCRATCH_MNT
91 _check_scratch_fs
92
93 # now clean up.
94 _scratch_mount
95 for d in $load_dir/*; do
96         rm -rf $d > /dev/null 2>&1 &
97 done
98 wait
99 umount $SCRATCH_MNT
100
101 echo "No output is good. Failures are loud."
102
103 status=0
104 exit