tests: remove udf/101
[xfstests-dev.git] / tests / generic / 110
1 #! /bin/bash
2 # FS QA Test No. 110
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.* $testdir
41 }
42
43 # get standard environment, filters and checks
44 . common/rc
45 . common/filter
46 . common/reflink
47
48 # real QA test starts here
49 _require_test_reflink
50 _supported_os Linux
51
52 _require_xfs_io_command "fiemap"
53 _require_cp_reflink
54 _require_test
55
56 testdir1=$TEST_DIR/test-$seq
57 rm -rf $testdir1
58 mkdir $testdir1
59
60 _checksum_files() {
61     for F in original copy1 copy2
62     do
63         md5sum $testdir1/$F | _filter_test_dir
64     done
65 }
66
67 rm -f $seqres.full
68
69 echo "Create the original file and reflink to copy1, copy2"
70 $XFS_IO_PROG -f -c 'pwrite -S 0x61 0 9000' $testdir1/original \
71     >> $seqres.full 2>&1
72 cp --reflink $testdir1/original $testdir1/copy1
73 cp --reflink $testdir1/copy1 $testdir1/copy2
74 _verify_reflink $testdir1/original $testdir1/copy1
75 _verify_reflink $testdir1/original $testdir1/copy2
76 echo "Original md5sums:"
77 _checksum_files
78
79 echo "Overwrite original file with new data"
80 $XFS_IO_PROG -c 'pwrite -S 0x62 0 9000' $testdir1/original \
81     >> $seqres.full 2>&1
82 echo "md5sums after overwriting original:"
83 _checksum_files
84
85 echo "Overwrite copy1 with different new data"
86 $XFS_IO_PROG -c 'pwrite -S 0x63 0 9000' $testdir1/copy1 \
87     >> $seqres.full 2>&1
88 echo "md5sums after overwriting copy1:"
89 _checksum_files
90
91 # success, all done
92 status=0
93 exit