lib/: spdx license conversion
[xfstests-dev.git] / tests / generic / 200
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 200
6 #
7 # Ensuring that copy on write in buffered mode works when the CoW
8 # range originally covers multiple extents, some unwritten, some not.
9 #   - Create a file with the following repeating sequence of blocks:
10 #     1. reflinked
11 #     2. unwritten
12 #     3. hole
13 #     4. regular block
14 #     5. delalloc
15 #   - CoW across the halfway mark, starting with the unwritten extent.
16 #   - Check that the files are now different where we say they're different.
17 #
18 seq=`basename $0`
19 seqres=$RESULT_DIR/$seq
20 echo "QA output created by $seq"
21
22 here=`pwd`
23 tmp=/tmp/$$
24 status=1    # failure is the default!
25 trap "_cleanup; exit \$status" 0 1 2 3 15
26
27 _cleanup()
28 {
29     cd /
30     rm -rf $tmp.* $testdir
31 }
32
33 # get standard environment, filters and checks
34 . ./common/rc
35 . ./common/filter
36 . ./common/reflink
37
38 # real QA test starts here
39 _supported_os Linux
40 _require_scratch_reflink
41 _require_xfs_io_command "falloc"
42 _require_xfs_io_command "fpunch"
43 _require_cp_reflink
44 _require_odirect
45
46 rm -f $seqres.full
47
48 echo "Format and mount"
49 _scratch_mkfs > $seqres.full 2>&1
50 _scratch_mount >> $seqres.full 2>&1
51
52 testdir=$SCRATCH_MNT/test-$seq
53 mkdir $testdir
54
55 echo "Create the original files"
56 blksz=65536
57 nr=64
58 filesize=$((blksz * nr))
59 _weave_reflink_rainbow $blksz $nr $testdir/file1 $testdir/file3 >> $seqres.full
60 _scratch_cycle_mount
61
62 echo "Compare files"
63 md5sum $testdir/file1 | _filter_scratch
64 md5sum $testdir/file3 | _filter_scratch
65 md5sum $testdir/file3.chk | _filter_scratch
66
67 echo "directio CoW across the transition"
68 cowoff=$((filesize / 4))
69 cowsz=$((filesize / 2))
70 _weave_reflink_rainbow_delalloc $blksz $nr $testdir/file3 >> $seqres.full
71 # now cow
72 $XFS_IO_PROG -f -c "pwrite -S 0x63 -b $cowsz $cowoff $cowsz" $testdir/file3 >> $seqres.full
73 _pwrite_byte 0x63 $cowoff $cowsz $testdir/file3.chk >> $seqres.full
74 _scratch_cycle_mount
75
76 echo "Compare files"
77 md5sum $testdir/file1 | _filter_scratch
78 md5sum $testdir/file3 | _filter_scratch
79 md5sum $testdir/file3.chk | _filter_scratch
80
81 # success, all done
82 status=0
83 exit