common/rc: add _scratch_{u}mount_idmapped() helpers
[xfstests-dev.git] / tests / generic / 202
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. 202
6 #
7 # See what happens if we 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
33 rm -f $seqres.full
34
35 echo "Format and mount"
36 _scratch_mkfs > $seqres.full 2>&1
37 _scratch_mount >> $seqres.full 2>&1
38
39 testdir=$SCRATCH_MNT/test-$seq
40 mkdir $testdir
41
42 echo "Create the original files"
43 blksz=65536
44 _pwrite_byte 0x61 0 $((blksz + 17)) $testdir/file1 >> $seqres.full
45 _cp_reflink $testdir/file1 $testdir/file2
46 _pwrite_byte 0x61 0 $((blksz + 17)) $testdir/file2.chk >> $seqres.full
47 _scratch_cycle_mount
48
49 echo "Compare files"
50 md5sum $testdir/file1 | _filter_scratch
51 md5sum $testdir/file2 | _filter_scratch
52 md5sum $testdir/file2.chk | _filter_scratch
53
54 echo "CoW and unmount"
55 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) 17" $testdir/file2 >> $seqres.full
56 $XFS_IO_PROG -f -c "pwrite -S 0x63 $((blksz + 17)) 17" $testdir/file2.chk >> $seqres.full
57 _scratch_cycle_mount
58
59 echo "Compare files"
60 md5sum $testdir/file1 | _filter_scratch
61 md5sum $testdir/file2 | _filter_scratch
62 md5sum $testdir/file2.chk | _filter_scratch
63
64 # success, all done
65 status=0
66 exit