xfstests: don't assume that falloc_punch implies falloc in test 255
[xfstests-dev.git] / 202
1 #! /bin/bash
2 # FS QA Test No. 202
3 #
4 # Test out the xfs_repair -o force_geometry option on single-AG filesystems.
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2009 Christoph Hellwig.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22 #
23 # creator
24 owner=hch@lst.de
25
26 seq=`basename $0`
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32
33 # get standard environment, filters and checks
34 . ./common.rc
35 . ./common.filter
36 . ./common.repair
37
38 # real QA test starts here
39 _supported_fs xfs
40 _supported_os Linux
41
42 _require_scratch
43
44 #
45 # The AG size is limited to 1TB (or even less with historic xfsprogs),
46 # so chose a small enough filesystem to make sure we can actually create
47 # a single AG filesystem.
48 #
49 echo "== Creating single-AG filesystem =="
50 _scratch_mkfs_xfs -d agcount=1 -d size=$((1024*1024*1024)) >/dev/null 2>&1 \
51  || _fail "!!! failed to make filesystem with single AG"
52
53 echo "== Trying to repair it (should fail) =="
54 _scratch_xfs_repair
55
56 echo "== Trying to repair it with -o force_geometry =="
57 _scratch_xfs_repair -o force_geometry 2>&1 | _filter_repair
58
59 # success, all done
60 echo "*** done"
61 rm -f $seq.full
62 status=0