xfstests: move generic tests out of top level dir
[xfstests-dev.git] / 278
1 #! /bin/bash
2 # FS QA Test No. 278
3 #
4 # Test xfs_repair to ensure it fixes the lost+found link count
5 # at the first run. See also commit 198b747f255346bca64408875763b6ca0ed3d57d
6 # from xfsprogs tree.
7 #
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2011 Red Hat, Inc.  All Rights Reserved.
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=0        # failure is the default!
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39 }
40
41 # get standard environment, filters and checks
42 . ./common.rc
43 . ./common.filter
44
45 # real QA test starts here
46 _supported_fs xfs
47 _supported_os Linux
48 _require_scratch
49 _scratch_mkfs >/dev/null 2>&1
50 _scratch_mount
51
52 mkdir -p $SCRATCH_MNT/dir/subdir
53
54 #get inodes to be changed
55 DIR_INO=`ls -i $SCRATCH_MNT |awk '{print $1}'`
56 SUBDIR_INO=`ls -i $SCRATCH_MNT/dir |awk '{print $1}'`
57
58 _scratch_unmount
59
60 echo "Silence is goodness..."
61
62 # Corrupt DIR
63 xfs_db -x -c "inode $DIR_INO" -c "write u.sfdir2.list[0].inumber.i4 0" $SCRATCH_DEV >> $seq.full
64 xfs_db -x -c "inode $DIR_INO" -c "write u.sfdir2.list[0].name 0" $SCRATCH_DEV >> $seq.full
65 xfs_db -x -c "inode $DIR_INO" -c "write u.sfdir2.list[0].offset 0" $SCRATCH_DEV >> $seq.full
66 xfs_db -x -c "inode $DIR_INO" -c "write u.sfdir2.list[0].namelen 0" $SCRATCH_DEV >> $seq.full
67 xfs_db -x -c "inode $DIR_INO" -c "write u.sfdir2.hdr.parent.i4 0" $SCRATCH_DEV >> $seq.full
68 xfs_db -x -c "inode $DIR_INO" -c "write core.nlinkv2 0" $SCRATCH_DEV >> $seq.full
69
70 # Corrupt SUBDIR
71 xfs_db -x -c "inode $SUBDIR_INO" -c "write u.sfdir2.hdr.parent.i4 0" $SCRATCH_DEV >> $seq.full
72 xfs_db -x -c "inode $SUBDIR_INO" -c "write core.nlinkv2 0" $SCRATCH_DEV >> $seq.full
73
74 echo "===== BEGIN of xfs_repair =====" >> $seq.full
75 echo "" >>$seq.full
76
77 xfs_repair  $SCRATCH_DEV >> $seq.full 2>&1
78 echo "===== END of xfs_repair =====" >> $seq.full
79
80 #if _check_scratch_fs; then
81 #       status=0
82 #else
83 #       status=1
84 #fi
85 exit