common: Check fs consistency on TEST_DEV only when needed
[xfstests-dev.git] / tests / btrfs / 026
1 #! /bin/bash
2 # FS QA Test No. 026
3 #
4 # Tests file clone functionality of btrfs ("reflinks"):
5 #   - Reflink a file
6 #   - Reflink the reflinked file
7 #   - Modify the original file
8 #   - Modify the reflinked file
9 #
10 #-----------------------------------------------------------------------
11 # Copyright (c) 2014, Oracle and/or its affiliates.  All Rights Reserved.
12 #
13 # This program is free software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License as
15 # published by the Free Software Foundation.
16 #
17 # This program is distributed in the hope that it would be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write the Free Software Foundation,
24 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
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 status=1    # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd /
40     rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . common/rc
45 . common/filter
46
47 # real QA test starts here
48 _supported_fs btrfs
49 _supported_os Linux
50
51 _require_xfs_io_command "fiemap"
52 _require_cp_reflink
53 _require_test
54
55 TESTDIR1=$TEST_DIR/test-$seq
56 rm -rf $TESTDIR1
57 mkdir $TESTDIR1
58
59 _checksum_files() {
60     for F in original copy1 copy2
61     do
62         md5sum $TESTDIR1/$F | _filter_test_dir
63     done
64 }
65
66 rm -f $seqres.full
67
68 echo "Create the original file and reflink to copy1, copy2"
69 $XFS_IO_PROG -f -c 'pwrite -S 0x61 0 9000' $TESTDIR1/original \
70     >> $seqres.full 2>&1
71 cp --reflink $TESTDIR1/original $TESTDIR1/copy1
72 cp --reflink $TESTDIR1/copy1 $TESTDIR1/copy2
73 _verify_reflink $TESTDIR1/original $TESTDIR1/copy1
74 _verify_reflink $TESTDIR1/original $TESTDIR1/copy2
75 echo "Original md5sums:"
76 _checksum_files
77
78 echo "Overwrite original file with new data"
79 $XFS_IO_PROG -c 'pwrite -S 0x62 0 9000' $TESTDIR1/original \
80     >> $seqres.full 2>&1
81 echo "md5sums after overwriting original:"
82 _checksum_files
83
84 echo "Overwrite copy1 with different new data"
85 $XFS_IO_PROG -c 'pwrite -S 0x63 0 9000' $TESTDIR1/copy1 \
86     >> $seqres.full 2>&1
87 echo "md5sums after overwriting copy1:"
88 _checksum_files
89
90 # success, all done
91 status=0
92 exit