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