Rename _scratch_mount to _scratch_cycle_mount
[xfstests-dev.git] / tests / generic / 201
1 #! /bin/bash
2 # FS QA Test No. 201
3 #
4 # See what happens if we dirty a lot of pages via CoW and immediately
5 # unlink the file.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1    # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35     cd /
36     rm -rf $tmp.* $testdir
37 }
38
39 # get standard environment, filters and checks
40 . ./common/rc
41 . ./common/filter
42 . ./common/reflink
43
44 # real QA test starts here
45 _supported_os Linux
46 _require_scratch_reflink
47 _require_xfs_io_command "falloc"
48
49 rm -f $seqres.full
50
51 echo "Format and mount"
52 _scratch_mkfs > $seqres.full 2>&1
53 _scratch_mount >> $seqres.full 2>&1
54
55 testdir=$SCRATCH_MNT/test-$seq
56 mkdir $testdir
57
58 echo "Create the original files"
59 blksz=65536
60 nr=64
61 filesize=$((blksz * nr))
62 _pwrite_byte 0x61 0 $filesize $testdir/file1 >> $seqres.full
63 _pwrite_byte 0x62 0 $filesize $testdir/file3 >> $seqres.full
64 _pwrite_byte 0x62 0 $filesize $testdir/file3.chk >> $seqres.full
65 seq 0 2 $((nr-1)) | while read f; do
66         _reflink_range $testdir/file1 $((blksz * f)) $testdir/file3 $((blksz * f)) $blksz >> $seqres.full
67         _pwrite_byte 0x61 $((blksz * f)) $blksz $testdir/file3.chk >> $seqres.full
68 done
69 _scratch_cycle_mount
70
71 echo "Compare files"
72 md5sum $testdir/file1 | _filter_scratch
73 md5sum $testdir/file3 | _filter_scratch
74 md5sum $testdir/file3.chk | _filter_scratch
75
76 echo "CoW and unmount"
77 cowoff=$((filesize / 4))
78 cowsz=$((filesize / 2))
79 $XFS_IO_PROG -f -c "pwrite -S 0x63 -b $cowsz $cowoff $cowsz" $testdir/file3 >> $seqres.full
80 rm $testdir/file3
81
82 # success, all done
83 status=0
84 exit