btrfs: test incremental send after renaming and linking file
[xfstests-dev.git] / tests / btrfs / 066
1 #! /bin/bash
2 # FSQA Test No. btrfs/066
3 #
4 # Run btrfs subvolume create/mount/umount/delete and btrfs scrub
5 # operation simultaneously, with fsstress running in background.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (C) 2014 Red Hat Inc. All rights reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37         cd /
38         rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44
45 # real QA test starts here
46 _supported_fs btrfs
47 _supported_os Linux
48 # we check scratch dev after each loop
49 _require_scratch_nocheck
50 _require_scratch_dev_pool 4
51 _btrfs_get_profile_configs
52
53 rm -f $seqres.full
54
55 run_test()
56 {
57         local mkfs_opts=$1
58         local subvol_mnt=$TEST_DIR/$seq.mnt
59         local stop_file=$TEST_DIR/$seq.stop.$$
60
61         echo "Test $mkfs_opts" >>$seqres.full
62
63         _scratch_pool_mkfs $mkfs_opts >>$seqres.full 2>&1
64         # make sure we created btrfs with desired options
65         if [ $? -ne 0 ]; then
66                 echo "mkfs $mkfs_opts failed"
67                 return
68         fi
69         _scratch_mount >>$seqres.full 2>&1
70
71         args=`_scale_fsstress_args -p 20 -n 100 $FSSTRESS_AVOID -d $SCRATCH_MNT/stressdir`
72         echo "Run fsstress $args" >>$seqres.full
73         $FSSTRESS_PROG $args >/dev/null 2>&1 &
74         fsstress_pid=$!
75
76         # make sure the stop sign is not there
77         rm -f $stop_file
78         echo -n "Start subvolume worker: " >>$seqres.full
79         _btrfs_stress_subvolume $SCRATCH_DEV $SCRATCH_MNT subvol_$$ $subvol_mnt $stop_file >/dev/null 2>&1 &
80         subvol_pid=$!
81         echo "$subvol_pid" >>$seqres.full
82
83         echo -n "Start scrub worker: " >>$seqres.full
84         _btrfs_stress_scrub $SCRATCH_MNT >/dev/null 2>&1 &
85         scrub_pid=$!
86         echo "$scrub_pid" >>$seqres.full
87
88         echo "Wait for fsstress to exit and kill all background workers" >>$seqres.full
89         wait $fsstress_pid
90
91         touch $stop_file
92         kill $scrub_pid
93         wait
94         # wait for the scrub operation to finish
95         while ps aux | grep "scrub start" | grep -qv grep; do
96                 sleep 1
97         done
98
99         echo "Scrub the filesystem" >>$seqres.full
100         $BTRFS_UTIL_PROG scrub start -B $SCRATCH_MNT >>$seqres.full 2>&1
101         if [ $? -ne 0 ]; then
102                 echo "Scrub find errors in \"$mkfs_opts\" test" | tee -a $seqres.full
103         fi
104
105         # in case the subvolume is still mounted
106         $UMOUNT_PROG $subvol_mnt >/dev/null 2>&1
107         _scratch_unmount
108         # we called _require_scratch_nocheck instead of _require_scratch
109         # do check after test for each profile config
110         _check_scratch_fs
111 }
112
113 echo "Silence is golden"
114 for t in "${_btrfs_profile_configs[@]}"; do
115         run_test "$t"
116 done
117
118 status=0
119 exit