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