Fix some regexps in xfstests
[xfstests-dev.git] / check
1 #!/bin/sh
2 #
3 # Control script for QA
4 #
5 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
6
7 # This program is free software; you can redistribute it and/or modify it
8 # under the terms of version 2 of the GNU General Public License as
9 # published by the Free Software Foundation.
10
11 # This program is distributed in the hope that it would be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14
15 # Further, this software is distributed without any warranty that it is
16 # free of the rightful claim of any third person regarding infringement
17 # or the like.  Any license provided herein, whether implied or
18 # otherwise, applies only to this software file.  Patent licenses, if
19 # any, provided herein do not apply to combinations of this program with
20 # other software, or any other product whatsoever.
21
22 # You should have received a copy of the GNU General Public License along
23 # with this program; if not, write the Free Software Foundation, Inc., 59
24 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
25
26 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
27 # Mountain View, CA  94043, or:
28
29 # http://www.sgi.com 
30
31 # For further information regarding this notice, see: 
32
33 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
34 #
35
36 export MKFS_OPTIONS=${MKFS_OPTIONS:=-bsize=4096}
37 export MOUNT_OPTIONS=${MOUNT_OPTIONS:=-ologbufs=2}
38
39 tmp=/tmp/$$
40 status=0
41 needwrap=true
42 try=0
43 n_bad=0
44 bad=""
45 notrun=""
46 interrupt=true
47
48 # generic initialization
49 iam=check
50 if ! . ./common.rc
51 then
52     echo "check: failed to source common.rc"
53     exit 1
54 fi
55
56 if [ $UID -ne 0 ]
57 then
58     echo "check: QA must be run as root"
59     exit 1
60 fi
61
62 _wallclock()
63 {
64     date "+%H %M %S" | $AWK_PROG '{ print $1*3600 + $2*60 + $3 }'
65 }
66
67 _wrapup()
68 {
69     # for hangcheck ...
70     # remove files that were used by hangcheck
71     #
72     [ -f /tmp/check.pid ] && rm -rf /tmp/check.pid
73     [ -f /tmp/check.sts ] && rm -rf /tmp/check.sts
74
75     if $showme
76     then
77         :
78     elif $needwrap
79     then
80         if [ -f check.time -a -f $tmp.time ]
81         then
82             cat check.time $tmp.time \
83             | $AWK_PROG '
84         { t[$1] = $2 }
85 END     { if (NR > 0) {
86             for (i in t) print i " " t[i]
87           }
88         }' \
89             | sort -n >$tmp.out
90             mv $tmp.out check.time
91         fi
92
93         if [ -f $tmp.expunged ]
94         then
95             notrun=`wc -l <$tmp.expunged | sed -e 's/  *//g'`
96             try=`expr $try - $notrun`
97             list=`echo "$list" | sed -f $tmp.expunged`
98         fi
99
100         echo "" >>check.log
101         date >>check.log
102         echo $list | fmt | sed -e 's/^/    /' >>check.log
103         $interrupt && echo "Interrupted!" >>check.log
104         
105         if [ ! -z "$notrun" ]
106         then
107             echo "Not run:$notrun"
108             echo "Not run:$notrun" >>check.log
109         fi
110         if [ ! -z "$n_bad" -a $n_bad != 0 ]
111         then
112             echo "Failures:$bad"
113             echo "Failed $n_bad of $try tests"
114             echo "Failures:$bad" | fmt >>check.log
115             echo "Failed $n_bad of $try tests" >>check.log
116         else
117             echo "Passed all $try tests"
118             echo "Passed all $try tests" >>check.log
119         fi
120         needwrap=false
121     fi
122
123     rm -f /tmp/*.rawout /tmp/*.out /tmp/*.err /tmp/*.time
124     rm -f /tmp/check.pid /tmp/check.sts
125     rm -f $tmp.*
126 }
127
128 trap "_wrapup; exit \$status" 0 1 2 3 15
129
130 # for hangcheck ...
131 # Save pid of check in a well known place, so that hangcheck can be sure it
132 # has the right pid (getting the pid from ps output is not reliable enough).
133 #
134 rm -rf /tmp/check.pid
135 echo $$ >/tmp/check.pid
136
137 # for hangcheck ...
138 # Save the status of check in a well known place, so that hangcheck can be
139 # sure to know where check is up to (getting test number from ps output is
140 # not reliable enough since the trace stuff has been introduced).
141 #
142 rm -rf /tmp/check.sts
143 echo "preamble" >/tmp/check.sts
144
145 # don't leave old full output behind on a clean run
146 rm -f check.full
147
148 # by default don't output timestamps
149 timestamp=${TIMESTAMP:=false}
150
151 . ./common
152
153 [ -f check.time ] || touch check.time
154
155 FULL_MKFS_OPTIONS=`_scratch_mkfs_options`
156 echo "MKFS_OPTIONS  -- $FULL_MKFS_OPTIONS"
157 umount $SCRATCH_DEV 2>/dev/null
158 # call the overridden mkfs.xfs - make sure the FS is built
159 # the same as we'll create it later.
160 if ! _scratch_mkfs_xfs -f >$tmp.err 2>&1
161 then
162     echo "our local _scratch_mkfs_xfs routine ..."
163     cat $tmp.err
164     echo "check: failed to mkfs.xfs \$SCRATCH_DEV using specified options"
165     exit 1
166 fi
167
168 FULL_MOUNT_OPTIONS=`_scratch_mount_options`
169 echo "MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS"
170 # call the overridden mount - make sure the FS mounts with
171 # the same options that we'll mount with later.
172 if ! _scratch_mount >$tmp.err 2>&1
173 then
174     echo "our local mount routine ..."
175     cat $tmp.err
176     echo "check: failed to mount \$SCRATCH_DEV using specified options"
177     exit 1
178 fi
179
180 seq="check"
181 _check_test_fs
182
183 for seq in $list
184 do
185     err=false
186     echo -n "$seq"
187     if $showme
188     then
189         echo
190         continue
191     elif [ -f expunged ] && $expunge && egrep "^$seq([  ]|\$)" expunged >/dev/null
192     then
193         echo " - expunged"
194         rm -f $seq.out.bad
195         echo "/^$seq\$/d" >>$tmp.expunged
196     elif [ ! -f $seq ]
197     then
198         echo " - no such test?"
199         echo "/^$seq\$/d" >>$tmp.expunged
200     else
201         # really going to try and run this one
202         #
203         rm -f $seq.out.bad
204         lasttime=`sed -n -e "/^$seq /s/.* //p" <check.time`
205         if [ "X$lasttime" != X ]; then
206                 echo -n " ${lasttime}s ..."
207         else
208                 echo -n "       "       # prettier output with timestamps.
209         fi
210         rm -f core $seq.notrun
211
212         # for hangcheck ...
213         echo "$seq" >/tmp/check.sts
214
215         start=`_wallclock`
216         $timestamp && echo -n " ["`date "+%T"`"]"
217         sh $seq >$tmp.rawout 2>&1
218         sts=$?
219         $timestamp && echo -n " ["`date "+%T"`"]"
220         stop=`_wallclock`
221
222         _fix_malloc <$tmp.rawout >$tmp.out
223         rm -f $tmp.rawout
224
225         if [ -f core ]
226         then
227             echo -n " [dumped core]"
228             mv core $seq.core
229             err=true
230         fi
231
232         if [ -f $seq.notrun ]
233         then
234             $timestamp || echo -n " [not run] "
235             $timestamp && echo " [not run]" && echo -n "        $seq -- "
236             cat $seq.notrun
237             notrun="$notrun $seq"
238         else
239             if [ $sts -ne 0 ]
240             then
241                 echo -n " [failed, exit status $sts]"
242                 err=true
243             fi
244             if [ ! -f $seq.out ]
245             then
246                 echo " - no qualified output"
247                 err=true
248             else
249                 if diff $seq.out $tmp.out >/dev/null 2>&1
250                 then
251                     echo ""
252                     if $err
253                     then
254                         :
255                     else
256                         echo "$seq `expr $stop - $start`" >>$tmp.time
257                     fi
258                 else
259                     echo " - output mismatch (see $seq.out.bad)"
260                     mv $tmp.out $seq.out.bad
261                     $diff $seq.out $seq.out.bad
262                     err=true
263                 fi
264             fi
265         fi
266
267     fi
268
269     # come here for each test, except when $showme is true
270     #
271     if $err
272     then
273         bad="$bad $seq"
274         n_bad=`expr $n_bad + 1`
275         quick=false
276     fi
277     [ -f $seq.notrun ] || try=`expr $try + 1`
278     
279     seq="after_$seq"
280     _check_test_fs
281     
282 done
283
284 interrupt=false
285 status=`expr $n_bad`
286 exit