common/rc: factor out _scratch_xfs_[get|set]_sb_field
[xfstests-dev.git] / tests / xfs / 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
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31
32 # get standard environment, filters and checks
33 . ./common/rc
34 . ./common/filter
35 . ./common/repair
36
37 # real QA test starts here
38 _supported_fs xfs
39 _supported_os Linux
40
41 # single AG will cause default xfs_repair to fail. This test is actually
42 # testing the special corner case option needed to repair a single AG fs.
43 _require_scratch_nocheck
44
45 #
46 # The AG size is limited to 1TB (or even less with historic xfsprogs),
47 # so chose a small enough filesystem to make sure we can actually create
48 # a single AG filesystem.
49 #
50 echo "== Creating single-AG filesystem =="
51 _scratch_mkfs_xfs -d agcount=1 -d size=$((1024*1024*1024)) >/dev/null 2>&1 \
52  || _fail "!!! failed to make filesystem with single AG"
53
54 echo "== Trying to repair it (should fail) =="
55 _scratch_xfs_repair
56
57 echo "== Trying to repair it with -o force_geometry =="
58 _scratch_xfs_repair -o force_geometry 2>&1 | _filter_repair
59
60 # success, all done
61 echo "*** done"
62 rm -f $seqres.full
63 status=0