Make srcdiff more verbose when reporting differences
[xfstests-dev.git] / 044
1 #! /bin/sh
2 # XFS QA Test No. 044
3 #
4 # external log uuid/format tests (TODO - version 2 log format)
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=dxm@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
49 # get standard environment, filters and checks
50 . ./common.rc
51 . ./common.filter
52
53 # real QA test starts here
54
55 _require_logdev
56
57 _filter_logprint()
58 {
59         perl -ne '
60             s/data device: ([\w|\/.-]+)/data device: DDEV/;
61             s/log device: ([\w|\/.-]+) daddr: (\d+) length: (\d+)/log device: LDEV daddr: XXX length: XXX/;
62             s/log file: "([\w|\/.-]+)" daddr: (\d+) length: (\d+)/log device: LDEV daddr: XXX length: XXX/;
63             s/uuid: ([abcdef\d-]+)\s+format: (.+)/uuid: UUID format: FORMAT/;
64             s/skipped (\w+) zeroed blocks/skipped XXX zeroed blocks/;
65             print;
66         '
67 }
68
69 _check_mount()
70 {
71     echo "    *** mount (expect success)"
72     if ! _scratch_mount
73     then
74         echo "        !!! mount failed (expecting success)"
75         status=1
76         exit
77     fi
78
79     echo "    *** umount"
80     if ! umount $SCRATCH_DEV
81     then
82         echo "        !!! umount failed (expecting success)"
83         status=1
84         exit
85     fi
86 }
87
88 _check_no_mount()
89 {
90     echo "    *** mount (expect failure)"
91     if _scratch_mount >$tmp.err 2>&1
92     then
93         cat $tmp.err
94         echo "        !!! mount succeeded (expecting failure)"
95         status=1
96         exit
97     fi
98 }
99
100 _check_require_logdev()
101 {
102     echo "    *** mount without logdev (expect failure)"
103     if mount -t xfs $SCRATCH_DEV $SCRATCH_MNT >$tmp.err 2>&1
104     then
105         cat $tmp.err
106         echo "        !!! mount succeeded (expecting failure)"
107         status=1
108         exit
109     fi
110 }
111
112 _unexpected()
113 {
114     echo "        !!! unexpected XFS command failure"
115     status=1
116     exit
117 }
118
119
120 # real QA test starts here
121
122 _require_scratch
123
124 echo -e -n "\n\r*** XFS QA 044 - expect mount failure messages\n\r\n\r" >/dev/console
125
126 echo "*** mkfs"
127
128 lversion=1
129 lsize=16777216
130 _scratch_mkfs_xfs -lsize=$lsize,version=$lversion >$tmp.mkfs0 2>&1
131 [ $? -ne 0 ] && \
132     _notrun "Cannot mkfs for this test using MKFS_OPTIONS specified"
133 _filter_mkfs <$tmp.mkfs0 2>/dev/null
134 _check_mount
135 _check_require_logdev
136
137 echo "*** set uuid"
138 xfs_db -x $SCRATCH_DEV -l $SCRATCH_LOGDEV -c "uuid 02020202-0202-0202-0202-020202020202"
139 [ $? -ne 0 ] && _unexpected
140 _check_mount
141
142 echo "*** zero log"
143 $here/src/loggen -z 100 >$SCRATCH_LOGDEV
144 _check_mount
145
146 echo "*** write clean log"
147 $here/src/loggen -u 2 -f 1 -m 1 -z 100 >$SCRATCH_LOGDEV
148 _check_mount
149
150 echo "*** write clean log (different format)"
151 $here/src/loggen -u 2 -f 99 -m 1 -z 100 >$SCRATCH_LOGDEV
152 _check_mount
153
154 echo "*** write clean log (different uuid)"
155 $here/src/loggen -u 7 -m 1 -z 100 >$SCRATCH_LOGDEV
156 _check_no_mount
157
158 echo "*** write clean log (different uuid & format)"
159 $here/src/loggen -u 7 -f 99 -m 1 -z 100 >$SCRATCH_LOGDEV
160 _check_no_mount
161
162 echo "*** write dirty log"
163 $here/src/loggen -u 2 -e 1 -z 100 >$SCRATCH_LOGDEV
164 _check_mount
165
166 echo "*** write dirty log (different format)"
167 $here/src/loggen -u 2 -f 99 -e 1 -z 100 >$SCRATCH_LOGDEV
168 _check_no_mount
169
170 echo "*** write dirty log (irix style)"
171 $here/src/loggen -u 0 -f 0 -e 1 -z 100 >$SCRATCH_LOGDEV
172 _check_no_mount
173
174 echo "*** write large dirty log"
175 $here/src/loggen -u 2 -e 16000 -z 100 >$SCRATCH_LOGDEV
176 _check_mount
177
178 echo -e -n "\n\r*** XFS QA 044 - done\n\r\n\r" >/dev/console
179
180 status=0
181 # if error
182 exit