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