generic/077: fall back to /usr if /lib/modules doesn't exist
[xfstests-dev.git] / tests / xfs / 149
1 #! /bin/bash
2 # FS QA Test No. 149
3 #
4 # Exercise xfs_prepair - ensure repeated use doesn't corrupt
5 # This is a clone of test 031 using xfs_prepair instead of xfs_repair
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2000-2002 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 rm -f $seqres.full
35
36 # get standard environment, filters and checks
37 . ./common/rc
38 . ./common/repair
39 . ./common/filter
40
41 [ -z "$XFS_PARALLEL_REPAIR_PROG" ] && _notrun "parallel repair binary xfs_prepair is not installed"
42
43 # force use of parallel repair
44 export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR_PROG
45
46 _check_repair()
47 {
48         echo "Repairing, round 0" >> $seqres.full
49         _scratch_xfs_repair 2>&1 | _filter_repair | tee -a $seqres.full >$tmp.0
50         for i in 1 2 3 4
51         do
52                 echo "Repairing, iteration $i" | tee -a $seqres.full
53                 _scratch_xfs_repair 2>&1 | _filter_repair >$tmp.$i
54                 diff $tmp.0 $tmp.$i >> $seqres.full
55                 if [ $? -ne 0 ]; then
56                         echo "ERROR: repair round $i differs to round 0 (see $seqres.full)" | tee -a $seqres.full
57                         break
58                 fi
59                 # echo all interesting stuff...
60                 perl -ne '
61                         s/(rebuilding directory inode) (\d+)/\1 INO/g;
62                         s/internal log/<TYPEOF> log/g;
63                         s/external log on \S+/<TYPEOF> log/g;
64                         /^\S+/ && print;
65                 ' $tmp.$i
66         done
67         echo
68 }
69
70 # prototype file to create various directory forms
71 _create_proto()
72 {
73         total=$1
74         count=0
75
76         # take inode size into account for non-shortform directories...
77         [ $total -gt 0 ] && total=`expr $total \* $isize / 512`
78
79         cat >$tmp.proto <<EOF
80 DUMMY1
81 0 0
82 : root directory
83 d--777 3 1
84 lost+found d--755 3 1
85 $
86 EOF
87
88         while [ $count -lt $total ]
89         do
90                 let count=$count+1
91                 cat >>$tmp.proto <<EOF
92 ${count}_of_${total}_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ---755 3 1 /bin/true
93 EOF
94         done
95         echo '$' >>$tmp.proto
96 }
97
98 # real QA test starts here
99 _supported_fs xfs
100 _supported_os IRIX Linux
101
102 _require_scratch
103 _require_no_large_scratch_dev
104
105 # sanity test - default + one root directory entry
106 # Note: must do this proto/mkfs now for later inode size calcs
107 _create_proto 0
108 echo "=== one entry (shortform)"
109 _scratch_mkfs_xfs -p $tmp.proto >$tmp.mkfs0 2>&1
110 _filter_mkfs <$tmp.mkfs0 >/dev/null 2>$tmp.mkfs
111 . $tmp.mkfs
112 _check_repair
113
114 # block-form root directory & repeat
115 _create_proto 20
116 echo "=== twenty entries (block form)"
117 _scratch_mkfs_xfs -p $tmp.proto | _filter_mkfs >/dev/null 2>&1
118 _check_repair
119
120 # leaf-form root directory & repeat
121 _create_proto 1000
122 echo "=== thousand entries (leaf form)"
123 _scratch_mkfs_xfs -p $tmp.proto | _filter_mkfs >/dev/null 2>&1
124 _check_repair
125
126 # success, all done
127 status=0
128 exit