xfstests: Fix some file permission.
[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 echo "== Creating single-AG filesystem =="
45 _scratch_mkfs_xfs -d agcount=1 >/dev/null 2>&1
46
47 echo "== Trying to repair it (should fail) =="
48 _scratch_xfs_repair
49
50 echo "== Trying to repair it with -o force_geometry =="
51 _scratch_xfs_repair -o force_geometry 2>&1 | _filter_repair
52
53 # success, all done
54 echo "*** done"
55 rm -f $seq.full
56 status=0