common: kill _supported_os
[xfstests-dev.git] / tests / generic / 203
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. 203
6 #
7 # See what happens if we DIO CoW across not-block-aligned EOF.
8 #
9 seq=`basename $0`
10 seqres=$RESULT_DIR/$seq
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20     cd /
21     rm -rf $tmp.* $testdir
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/reflink
28
29 # real QA test starts here
30 _require_scratch_reflink
31 _require_cp_reflink
32 _require_odirect
33
34 rm -f $seqres.full
35
36 echo "Format and mount"
37 _scratch_mkfs > $seqres.full 2>&1
38 _scratch_mount >> $seqres.full 2>&1
39
40 testdir=$SCRATCH_MNT/test-$seq
41 mkdir $testdir
42
43 echo "Create the original files"
44 blksz=65536
45 _pwrite_byte 0x61 0 $((blksz + 17)) $testdir/file1 >> $seqres.full
46 _cp_reflink $testdir/file1 $testdir/file2
47 _pwrite_byte 0x61 0 $((blksz + 17)) $testdir/file2.chk >> $seqres.full
48 _scratch_cycle_mount
49
50 echo "Compare files"
51 md5sum $testdir/file1 | _filter_scratch
52 md5sum $testdir/file2 | _filter_scratch
53 md5sum $testdir/file2.chk | _filter_scratch
54
55 echo "CoW and unmount"
56 $XFS_IO_PROG -d -f -c "pwrite -S 0x63 $blksz $blksz" $testdir/file2 >> $seqres.full
57 $XFS_IO_PROG -f -c "pwrite -S 0x63 $blksz $blksz" $testdir/file2.chk >> $seqres.full
58 _scratch_cycle_mount
59
60 echo "Compare files"
61 md5sum $testdir/file1 | _filter_scratch
62 md5sum $testdir/file2 | _filter_scratch
63 md5sum $testdir/file2.chk | _filter_scratch
64
65 # success, all done
66 status=0
67 exit