common: Check fs consistency on TEST_DEV only when needed
[xfstests-dev.git] / tests / btrfs / 020
1 #! /bin/bash
2 # FS QA Test No. btrfs/020
3 #
4 # btrfs device replace test on RO fs
5 #
6 # Regression test for commit:
7 # bbb651e Btrfs: don't allow the replace procedure on read only filesystems
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2013 Red Hat, Inc.  All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #
25 #-----------------------------------------------------------------------
26 #
27
28 seq=`basename $0`
29 seqres=$RESULT_DIR/$seq
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34
35 status=1        # failure is the default!
36
37 _cleanup()
38 {
39         cd /
40         rm -f $tmp.*
41         $UMOUNT_PROG $loop_mnt
42         _destroy_loop_device $loop_dev1
43         losetup -d $loop_dev2 >/dev/null 2>&1
44         _destroy_loop_device $loop_dev3
45         rm -rf $loop_mnt
46         rm -f $fs_img1 $fs_img2 $fs_img3
47 }
48
49 trap "_cleanup ; exit \$status" 0 1 2 3 15
50
51 # get standard environment, filters and checks
52 . ./common/rc
53 . ./common/filter
54
55 # real QA test starts here
56 _supported_fs btrfs
57 _supported_os Linux
58 _require_test
59
60 rm -f $seqres.full
61 echo "Silence is golden"
62
63 loop_mnt=$TEST_DIR/$seq.$$.mnt
64 fs_img1=$TEST_DIR/$seq.$$.img1
65 fs_img2=$TEST_DIR/$seq.$$.img2
66 fs_img3=$TEST_DIR/$seq.$$.img3
67 mkdir $loop_mnt
68 $XFS_IO_PROG -f -c "truncate 256m" $fs_img1 >>$seqres.full 2>&1
69 $XFS_IO_PROG -f -c "truncate 256m" $fs_img2 >>$seqres.full 2>&1
70 $XFS_IO_PROG -f -c "truncate 256m" $fs_img3 >>$seqres.full 2>&1
71
72 loop_dev1=`_create_loop_device $fs_img1`
73 loop_dev2=`_create_loop_device $fs_img2`
74 loop_dev3=`_create_loop_device $fs_img3`
75
76 $MKFS_BTRFS_PROG -m raid1 -d raid1 $loop_dev1 $loop_dev2 >>$seqres.full 2>&1
77 $MOUNT_PROG -o ro $loop_dev1 $loop_mnt
78
79 # Fail the second device and replace with the third
80 _destroy_loop_device $loop_dev2
81 $BTRFS_UTIL_PROG replace start -B 2 $loop_dev3 $loop_mnt >>$seqres.full 2>&1 && \
82 _fail "FAIL: Device replaced on RO btrfs"
83
84 status=0
85 exit