common: kill _supported_os
[xfstests-dev.git] / tests / generic / 205
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. 205
6 #
7 # See what happens if we CoW blocks 2-4 of a page's worth of blocks when the
8 # second block is a regular block.
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 _require_scratch_reflink
35
36 rm -f $seqres.full
37
38 pagesz=$(getconf PAGE_SIZE)
39 blksz=$((pagesz / 4))
40
41 echo "Format and mount"
42 _scratch_mkfs_blocksized $blksz > $seqres.full 2>&1
43 _scratch_mount >> $seqres.full 2>&1
44
45 testdir=$SCRATCH_MNT/test-$seq
46 mkdir $testdir
47
48 real_blksz=$(_get_file_block_size $testdir)
49 test $real_blksz != $blksz && _notrun "Failed to format with small blocksize."
50
51 echo "Create the original files"
52 _pwrite_byte 0x61 0 $pagesz $testdir/file1 >> $seqres.full
53
54 $XFS_IO_PROG -f -c "truncate $pagesz" $testdir/file2 >> $seqres.full
55 $XFS_IO_PROG -f -c "truncate $pagesz" $testdir/file2.chk >> $seqres.full
56
57 _pwrite_byte 0x61 $blksz $blksz $testdir/file2 >> $seqres.full
58 _pwrite_byte 0x61 $blksz $blksz $testdir/file2.chk >> $seqres.full
59
60 _pwrite_byte 0x61 $((blksz * 3)) $blksz $testdir/file2 >> $seqres.full
61 _pwrite_byte 0x61 $((blksz * 3)) $blksz $testdir/file2.chk >> $seqres.full
62
63 _reflink_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) $blksz >> $seqres.full
64 _pwrite_byte 0x61 $((blksz * 2)) $blksz $testdir/file2.chk >> $seqres.full
65 _scratch_cycle_mount
66
67 echo "Compare files"
68 ! cmp -s $testdir/file1 $testdir/file2 || _fail "file1 and file2 don't match."
69 cmp -s $testdir/file2 $testdir/file2.chk || _fail "file2 and file2.chk don't match."
70
71 echo "CoW and unmount"
72 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $testdir/file2 >> $seqres.full
73 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) $((blksz * 3 - 34))" $testdir/file2.chk >> $seqres.full
74 _scratch_cycle_mount
75
76 echo "Compare files"
77 ! cmp -s $testdir/file1 $testdir/file2 || _fail "file1 and file2 don't match."
78 cmp -s $testdir/file2 $testdir/file2.chk || _fail "file2 and file2.chk don't match."
79
80 # success, all done
81 status=0
82 exit