update config for couple of hosts.
[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 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         xfs_repair $SCRATCH_DEV >$tmp.0 2>&1
58         for i in 1 2 3 4
59         do
60                 echo "Repairing, iteration $i" | tee -a $seq.full
61                 xfs_repair $SCRATCH_DEV 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+/ && print;
71                 ' $tmp.$i
72         done
73         echo
74 }
75
76 # prototype file to create various directory forms
77 _create_proto()
78 {
79         total=$1
80         count=0
81
82         cat >$tmp.proto <<EOF
83 DUMMY1
84 0 0
85 : root directory
86 d--777 3 1
87 lost+found d--755 3 1
88 $
89 EOF
90
91         while [ $count -lt $total ]
92         do
93                 count=`expr $count + 1`
94                 cat >>$tmp.proto <<EOF
95 ${count}_of_${total}_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ---755 3 1 /bin/true
96 EOF
97         done
98         echo '$' >>$tmp.proto
99 }
100
101 # real QA test starts here
102
103 _require_scratch
104
105 MKFSV1="-p $tmp.proto -n version=1 $SCRATCH_DEV"
106 MKFSV2="-p $tmp.proto -n version=2 $SCRATCH_DEV"
107
108 # sanity test - default + one root directory entry
109 _create_proto 0
110 echo "=== version 1, one entry"
111 mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
112 _check_repair
113 echo "=== version 2, one entry (shortform)"
114 mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
115 _check_repair
116
117 # block-form root directory & repeat
118 _create_proto 20
119 echo "=== version 1, twenty entries"
120 mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
121 _check_repair
122 echo "=== version 2, twenty entries (block form)"
123 mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
124 _check_repair
125
126 # leaf-form root directory & repeat
127 _create_proto 1000
128 echo "=== version 1, thousand entries"
129 mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
130 _check_repair
131 echo "=== version 2, thousand entries (leaf form)"
132 mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
133 _check_repair
134
135 # success, all done
136 status=0
137 exit