generic/405: test mkfs against thin provision device
[xfstests-dev.git] / tests / generic / 031
1 #! /bin/bash
2 # FS QA Test No. generic/031
3 #
4 # Test non-aligned writes against fcollapse to ensure that partial pages are
5 # correctly written and aren't left behind causing invalidation or data
6 # corruption issues.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2014 Red Hat, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24 #
25
26 seq=`basename $0`
27 seqres=$RESULT_DIR/$seq
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44
45 # real QA test starts here
46
47 # Modify as appropriate.
48 _supported_fs generic
49 _supported_os IRIX Linux
50 _require_scratch
51 _require_xfs_io_command "fcollapse"
52
53 testfile=$SCRATCH_MNT/testfile
54
55 _scratch_mkfs > /dev/null 2>&1
56 _scratch_mount
57
58 $XFS_IO_PROG -f \
59         -c "pwrite 185332 55756" \
60         -c "fcollapse 28672 40960" \
61         -c "pwrite 133228 63394" \
62         -c "fcollapse 0 4096" \
63 $testfile | _filter_xfs_io
64
65 echo "==== Pre-Remount ==="
66 hexdump -C $testfile
67 _scratch_cycle_mount
68 echo "==== Post-Remount =="
69 hexdump -C $testfile
70
71 status=0
72 exit
73