tests: remove IRIX support from tests also supported on Linux
[xfstests-dev.git] / tests / xfs / 084
1 #! /bin/bash
2 # FS QA Test No. 084
3 #
4 # Exercises unwritten extent reads and writes, looking
5 # for data corruption (zeroes read) near the end of file.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2004 Silicon Graphics, Inc.  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 #
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 "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common/rc
37 . ./common/filter
38
39 _filter_resv()
40 {
41         _filter_test_dir | sed -e 's/[0-9][0-9]* bytes/NUM bytes/g'
42 }
43
44 pgsize=`$here/src/feature -s`
45
46 # -i == number of iterations
47 # -l == bytes to leak on each iteration
48 # -b == read/write block size
49 # -s == preallocation size
50
51 # real QA test starts here
52 _supported_fs xfs
53 _supported_os Linux
54 _require_test
55
56 echo
57 echo "*** First case - I/O blocksize same as pagesize"
58 $here/src/resvtest -i 20 -b $pgsize "$TEST_DIR/resv" | _filter_resv
59 [ $? -eq 0 ] && echo done
60 rm -f "$TEST_DIR/mumble"
61
62 echo
63 echo "*** Second case - 512 byte I/O blocksize"
64 $here/src/resvtest -i 40 -b 512 "$TEST_DIR/resv" | _filter_resv
65 [ $? -eq 0 ] && echo done
66 rm -f "$TEST_DIR/grumble"
67
68 # success, all done
69 status=0
70 exit