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