Allow the QA suite to mount the test file system if it is not already mounted.
[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
63                 # echo all interesting stuff...
64                 perl -ne '
65                         s/(rebuilding directory inode) (\d+)/\1 INO/g;
66                         /^\S+/ && print;
67                 ' $tmp.$i
68         done
69         echo
70 }
71
72 # prototype file to create various directory forms
73 _create_proto()
74 {
75         total=$1
76         count=0
77
78         cat >$tmp.proto <<EOF
79 DUMMY1
80 0 0
81 : root directory
82 d--777 3 1
83 lost+found d--755 3 1
84 $
85 EOF
86
87         while [ $count -lt $total ]
88         do
89                 count=`expr $count + 1`
90                 cat >>$tmp.proto <<EOF
91 ${count}_of_${total}_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ---755 3 1 /bin/true
92 EOF
93         done
94         echo '$' >>$tmp.proto
95 }
96
97 # real QA test starts here
98
99 _require_scratch
100
101 MKFSV1="-t xfs -f -p $tmp.proto -n version=1 $SCRATCH_DEV"
102 MKFSV2="-t xfs -f -p $tmp.proto -n version=2 $SCRATCH_DEV"
103
104 # sanity test - default + one root directory entry
105 _create_proto 0
106 echo "=== version 1, one entry"
107 mkfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
108 _check_repair
109 echo "=== version 2, one entry (shortform)"
110 mkfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
111 _check_repair
112
113 # block-form root directory & repeat
114 _create_proto 20
115 echo "=== version 1, twenty entries"
116 mkfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
117 _check_repair
118 echo "=== version 2, twenty entries (block form)"
119 mkfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
120 _check_repair
121
122 # leaf-form root directory & repeat
123 _create_proto 1000
124 echo "=== version 1, thousand entries"
125 mkfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1
126 _check_repair
127 echo "=== version 2, thousand entries (leaf form)"
128 mkfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1
129 _check_repair
130
131 # success, all done
132 status=0
133 exit