Update QA tests and host configs.
[xfstests-dev.git] / 031
1 #! /bin/sh
2 # FS QA Test No. 031
3 #
4 # exercise xfs_repair - ensure repeated use doesn't corrupt
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8
9 # This program is free software; you can redistribute it and/or modify it
10 # under the terms of version 2 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, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
17 # Further, this software is distributed without any warranty that it is
18 # free of the rightful claim of any third person regarding infringement
19 # or the like.  Any license provided herein, whether implied or
20 # otherwise, applies only to this software file.  Patent licenses, if
21 # any, provided herein do not apply to combinations of this program with
22 # other software, or any other product whatsoever.
23
24 # You should have received a copy of the GNU General Public License along
25 # with this program; if not, write the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
27
28 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
29 # Mountain View, CA  94043, or:
30
31 # http://www.sgi.com 
32
33 # For further information regarding this notice, see: 
34
35 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
36 #-----------------------------------------------------------------------
37 #
38 # creator
39 owner=nathans@sgi.com
40
41 seq=`basename $0`
42 echo "QA output created by $seq"
43
44 here=`pwd`
45 tmp=/tmp/$$
46 status=1        # failure is the default!
47 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
48 rm -f $seq.full
49
50 # get standard environment, filters and checks
51 . ./common.rc
52 . ./common.filter
53
54 # link correct .out file
55 _link_out_file $seq.out
56
57 _check_repair()
58 {
59         _scratch_xfs_repair >$tmp.0 2>&1
60         for i in 1 2 3 4
61         do
62                 echo "Repairing, iteration $i" | tee -a $seq.full
63                 _scratch_xfs_repair 2>&1 | tee -a $seq.full >$tmp.$i
64                 diff $tmp.0 $tmp.$i >> $seq.full
65                 if [ $? -ne 0 ]; then
66                         echo "ERROR: repair round $i differs (see $seq.full)"
67                         break
68                 fi
69                 # echo all interesting stuff...
70                 perl -ne '
71                         s/(rebuilding directory inode) (\d+)/\1 INO/g;
72                         s/internal log/<TYPEOF> log/g;
73                         s/external log on \S+/<TYPEOF> log/g;
74                         /^\S+/ && print;
75                 ' $tmp.$i
76         done
77         echo
78 }
79
80 # prototype file to create various directory forms
81 _create_proto()
82 {
83         total=$1
84         count=0
85
86         # take inode size into account for non-shortform directories...
87         [ $total -gt 0 ] && total=`expr $total \* $isize / 512`
88
89         cat >$tmp.proto <<EOF
90 DUMMY1
91 0 0
92 : root directory
93 d--777 3 1
94 lost+found d--755 3 1
95 $
96 EOF
97
98         while [ $count -lt $total ]
99         do
100                 count=`expr $count + 1`
101                 cat >>$tmp.proto <<EOF
102 ${count}_of_${total}_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ---755 3 1 /bin/true
103 EOF
104         done
105         echo '$' >>$tmp.proto
106 }
107
108 # real QA test starts here
109 _supported_fs xfs
110 _supported_os IRIX Linux
111
112 _require_nobigloopfs
113 _require_scratch
114
115 MKFSV1="-p $tmp.proto -n version=1"
116 MKFSV2="-p $tmp.proto -n version=2"
117
118 # sanity test - default + one root directory entry
119 # Note: must do this proto/mkfs now for later inode size calcs
120 _create_proto 0
121 echo "=== version 1, one entry"
122 _scratch_mkfs_xfs $MKFSV1 >$tmp.mkfs0 2>&1
123 _filter_mkfs <$tmp.mkfs0 >/dev/null 2>$tmp.mkfs
124 . $tmp.mkfs
125 _check_repair
126 echo "=== version 2, one entry (shortform)"
127 _scratch_mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
128 _check_repair
129
130 # block-form root directory & repeat
131 _create_proto 20
132 echo "=== version 1, twenty entries"
133 _scratch_mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
134 _check_repair
135 echo "=== version 2, twenty entries (block form)"
136 _scratch_mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
137 _check_repair
138
139 # leaf-form root directory & repeat
140 _create_proto 1000
141 echo "=== version 1, thousand entries"
142 _scratch_mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
143 _check_repair
144 echo "=== version 2, thousand entries (leaf form)"
145 _scratch_mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
146 _check_repair
147
148 # success, all done
149 status=0
150 exit