xfstests: cleanup duplicates in all tests
[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 echo "QA output created by $seq"
32
33 here=`pwd`
34 tmp=/tmp/$$
35 status=1        # failure is the default!
36 trap "exit \$status" 0 1 2 3 15
37
38 # get standard environment, filters and checks
39 . ./common/rc
40 . ./common/filter
41
42 # real QA test starts here
43
44 # Modify as appropriate.
45 _supported_fs xfs
46 _supported_os Linux
47
48 _require_xfs_io_zero
49
50 testfile=$TEST_DIR/290.$$
51
52 test_zero()
53 {
54         zero_start=$1
55         zero_len=$2
56
57         $XFS_IO_PROG -f -t -c "pwrite -S 0x41 0 4096" \
58                       -c "pwrite -S 0x42 4096 4096" \
59                       -c "zero $zero_start $zero_len" \
60                       -c "pread -v 0 8192" \
61                       $testfile | _filter_xfs_io_unique
62 }
63
64 # [0,1] -- Shouldn't toss anything
65 test_zero    0    1
66
67 #[0,4095] -- Shouldn't toss anything
68 test_zero    0 4095
69
70 #[0,4096] -- Should toss first page
71 test_zero    0 4096
72
73 #[0,4097] -- Should toss first page
74 test_zero    0 4097
75
76 #[4095,8191] -- Should toss last byte of first page
77 test_zero 4095 4096
78
79 #[4095,8192] -- Should toss second page & last byte of first page
80 test_zero 4095 4097
81
82 #[4095,8193] -- Should toss second page & last byte of first page
83 test_zero 4095 4098
84
85 #[4096,8192] -- Should toss second page
86 test_zero 4096 4096
87
88 #[1024,5120] -- Should toss from 1024 to end of first page
89 test_zero 1024 4096
90
91 # success, all done
92 status=0
93 exit