reflink: ensure that we can handle reflinking a lot of extents
[xfstests-dev.git] / tests / generic / 051
1 #!/bin/bash
2 # FS QA Test No. 051
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         _scratch_unmount 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 generic
49 _supported_os Linux
50
51 _require_scratch
52 _require_scratch_shutdown
53
54 rm -f $seqres.full
55
56 _scratch_mkfs > $seqres.full 2>&1
57 _scratch_mount
58
59 SLEEP_TIME=$((30 * $TIME_FACTOR))
60 PROCS=$((2 * LOAD_FACTOR))
61
62 load_dir=$SCRATCH_MNT/test
63
64 # let this run for a while
65 $FSSTRESS_PROG -n10000000 -p $PROCS -d $load_dir >> $seqres.full 2>&1 &
66 sleep $SLEEP_TIME
67 killall -q $FSSTRESS_PROG
68 wait
69 sync
70 _scratch_unmount
71
72 # now mount again, run the load again, this time with a shutdown.
73 _scratch_mount
74 $XFS_FSR_PROG -v $load_dir >> $seqres.full 2>&1
75 $FSSTRESS_PROG -n10000000 -p $PROCS -d $load_dir >> $seqres.full 2>&1 &
76 sleep $SLEEP_TIME
77 sync
78
79 # now shutdown and unmount
80 sleep 5
81 $here/src/godown $load_dir
82 killall -q $FSSTRESS_PROG
83 wait
84
85 # for some reason fsstress processes manage to live on beyond the wait?
86 sleep 5
87 _scratch_unmount
88
89 # now recover, check the filesystem for consistency
90 _scratch_mount
91 _scratch_unmount
92 _check_scratch_fs
93
94 # now clean up.
95 _scratch_mount
96 for d in $load_dir/*; do
97         rm -rf $d > /dev/null 2>&1 &
98 done
99 wait
100 _scratch_unmount
101
102 echo "No output is good. Failures are loud."
103
104 status=0
105 exit