5ac68d7e41dc46ebb438e5bbadfd6552e3529ef9
[xfstests-dev.git] / tests / xfs / 290
1 #! /bin/bash
2 # FS QA Test No. 290
3 #
4 # Makes calls to XFS_IOC_ZERO_RANGE and checks tossed ranges
5 #
6 # Nothing should be tossed unless the range includes a page boundry
7 #
8 # Primarily tests page boundries and boundries that are
9 #  off-by-one to ensure we're only tossing what's expected
10 #
11 #-----------------------------------------------------------------------
12 # Copyright (c) 2012 SGI.  All Rights Reserved.
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #-----------------------------------------------------------------------
27 #
28
29 seq=`basename $0`
30 seqres=$RESULT_DIR/$seq
31 seqres=$RESULT_DIR/$seq
32 seqres=$RESULT_DIR/$seq
33 echo "QA output created by $seq"
34
35 here=`pwd`
36 tmp=/tmp/$$
37 status=1        # failure is the default!
38 trap "exit \$status" 0 1 2 3 15
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43
44 # real QA test starts here
45
46 # Modify as appropriate.
47 _supported_fs xfs
48 _supported_os Linux
49
50 _require_xfs_io_zero
51
52 testfile=$TEST_DIR/290.$$
53
54 test_zero()
55 {
56         zero_start=$1
57         zero_len=$2
58
59         $XFS_IO_PROG -f -t -c "pwrite -S 0x41 0 4096" \
60                       -c "pwrite -S 0x42 4096 4096" \
61                       -c "zero $zero_start $zero_len" \
62                       -c "pread -v 0 8192" \
63                       $testfile | _filter_xfs_io_unique
64 }
65
66 # [0,1] -- Shouldn't toss anything
67 test_zero    0    1
68
69 #[0,4095] -- Shouldn't toss anything
70 test_zero    0 4095
71
72 #[0,4096] -- Should toss first page
73 test_zero    0 4096
74
75 #[0,4097] -- Should toss first page
76 test_zero    0 4097
77
78 #[4095,8191] -- Should toss last byte of first page
79 test_zero 4095 4096
80
81 #[4095,8192] -- Should toss second page & last byte of first page
82 test_zero 4095 4097
83
84 #[4095,8193] -- Should toss second page & last byte of first page
85 test_zero 4095 4098
86
87 #[4096,8192] -- Should toss second page
88 test_zero 4096 4096
89
90 #[1024,5120] -- Should toss from 1024 to end of first page
91 test_zero 1024 4096
92
93 # success, all done
94 status=0
95 exit