generic: convert tests to SPDX license tags
[xfstests-dev.git] / tests / generic / 222
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. 222
6 #
7 # See what happens if we CoW blocks 2-4 of a page's worth of blocks when the
8 # second block is delalloc.
9 #
10 # This test is dependent on the system page size, so we cannot use md5 in
11 # the golden output; we can only compare to a check file.
12 #
13 seq=`basename $0`
14 seqres=$RESULT_DIR/$seq
15 echo "QA output created by $seq"
16
17 here=`pwd`
18 tmp=/tmp/$$
19 status=1    # failure is the default!
20 trap "_cleanup; exit \$status" 0 1 2 3 15
21
22 _cleanup()
23 {
24     cd /
25     rm -rf $tmp.* $testdir
26 }
27
28 # get standard environment, filters and checks
29 . ./common/rc
30 . ./common/filter
31 . ./common/reflink
32
33 # real QA test starts here
34 _supported_os Linux
35 _require_scratch_reflink
36 _require_xfs_io_command "falloc"
37
38 rm -f $seqres.full
39
40 pagesz=$(getconf PAGE_SIZE)
41 blksz=$((pagesz / 4))
42
43 echo "Format and mount"
44 _scratch_mkfs_blocksized $blksz > $seqres.full 2>&1
45 _scratch_mount >> $seqres.full 2>&1
46
47 testdir=$SCRATCH_MNT/test-$seq
48 mkdir $testdir
49
50 real_blksz=$(_get_file_block_size $testdir)
51 test $real_blksz != $blksz && _notrun "Failed to format with small blocksize."
52
53 echo "Create the original files"
54 _pwrite_byte 0x61 0 $pagesz $testdir/file1 >> $seqres.full
55
56 $XFS_IO_PROG -f -c "truncate $pagesz" $testdir/file2 >> $seqres.full
57 $XFS_IO_PROG -f -c "truncate $pagesz" $testdir/file2.chk >> $seqres.full
58
59 _reflink_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) $blksz >> $seqres.full
60 _pwrite_byte 0x61 $((blksz * 2)) $blksz $testdir/file2.chk >> $seqres.full
61 _scratch_cycle_mount
62
63 echo "Compare files"
64 ! cmp -s $testdir/file1 $testdir/file2 || _fail "file1 and file2 don't match."
65 cmp -s $testdir/file2 $testdir/file2.chk || _fail "file2 and file2.chk don't match."
66
67 echo "CoW and unmount"
68 _pwrite_byte 0x61 $blksz $blksz $testdir/file2 >> $seqres.full
69 _pwrite_byte 0x61 $blksz $blksz $testdir/file2.chk >> $seqres.full
70
71 _pwrite_byte 0x61 $((blksz * 3)) $blksz $testdir/file2 >> $seqres.full
72 _pwrite_byte 0x61 $((blksz * 3)) $blksz $testdir/file2.chk >> $seqres.full
73
74 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $testdir/file2 >> $seqres.full
75 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $testdir/file2.chk >> $seqres.full
76 _scratch_cycle_mount
77
78 echo "Compare files"
79 ! cmp -s $testdir/file1 $testdir/file2 || _fail "file1 and file2 don't match."
80 cmp -s $testdir/file2 $testdir/file2.chk || _fail "file2 and file2.chk don't match."
81
82 # success, all done
83 status=0
84 exit