3 # Copyright (C) 2009 Red Hat, Inc.
4 # Copyright (c) 2000-2002,2006 Silicon Graphics, Inc. All Rights Reserved.
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # Control script for QA
30 # by default don't output timestamps
31 timestamp
=${TIMESTAMP:=false}
33 # generic initialization
44 # called from the build tree
45 source_iotests
=$
(dirname "$(readlink "$0")")
46 if [ -z "$source_iotests" ]
48 _init_error
"failed to obtain source tree name from check symlink"
50 source_iotests
=$
(cd "$source_iotests"; pwd) || _init_error
"failed to enter source tree"
53 # called from the source tree
55 # this may be an in-tree build (note that in the following code we may not
56 # assume that it truly is and have to test whether the build results
61 build_root
="$build_iotests/../.."
63 if [ -x "$build_iotests/socket_scm_helper" ]
65 export SOCKET_SCM_HELPER
="$build_iotests/socket_scm_helper"
68 # if ./qemu exists, it should be prioritized and will be chosen by common.config
69 if [[ -z "$QEMU_PROG" && ! -x './qemu' ]]
71 arch
=$
(uname
-m 2> /dev
/null
)
73 if [[ -n $arch && -x "$build_root/$arch-softmmu/qemu-system-$arch" ]]
75 export QEMU_PROG
="$build_root/$arch-softmmu/qemu-system-$arch"
77 pushd "$build_root" > /dev
/null
78 for binary
in *-softmmu/qemu-system-
*
82 export QEMU_PROG
="$build_root/$binary"
90 if [[ -z $QEMU_IMG_PROG && -x "$build_root/qemu-img" && ! -x './qemu-img' ]]
92 export QEMU_IMG_PROG
="$build_root/qemu-img"
95 if [[ -z $QEMU_IO_PROG && -x "$build_root/qemu-io" && ! -x './qemu-io' ]]
97 export QEMU_IO_PROG
="$build_root/qemu-io"
100 if [[ -z $QEMU_NBD_PROG && -x "$build_root/qemu-nbd" && ! -x './qemu-nbd' ]]
102 export QEMU_NBD_PROG
="$build_root/qemu-nbd"
106 if ! .
"$build_iotests/common.env"
108 _init_error
"failed to source common.env (make sure the qemu-iotests are run from tests/qemu-iotests in the build tree)"
111 # we need common.config
112 if ! .
"$source_iotests/common.config"
114 _init_error
"failed to source common.config"
118 if ! .
"$source_iotests/common.rc"
120 _init_error
"failed to source common.rc"
124 .
"$source_iotests/common"
126 #if [ `id -u` -ne 0 ]
128 # echo "check: QA must be run as root"
136 date "+%H %M %S" |
$AWK_PROG '{ print $1*3600 + $2*60 + $3 }'
148 # remove files that were used by hangcheck
150 [ -f "${TEST_DIR}"/check.pid
] && rm -rf "${TEST_DIR}"/check.pid
151 [ -f "${TEST_DIR}"/check.sts
] && rm -rf "${TEST_DIR}"/check.sts
158 if [ -f check.
time -a -f $tmp.
time ]
160 cat check.
time $tmp.
time \
164 for (i in t) print i " " t[i]
168 mv $tmp.out check.
time
171 if [ -f $tmp.expunged
]
173 notrun
=`wc -l <$tmp.expunged | sed -e 's/ *//g'`
174 try
=`expr $try - $notrun`
175 list
=`echo "$list" | sed -f $tmp.expunged`
180 echo $list |
fmt |
sed -e 's/^/ /' >>check.log
181 $interrupt && echo "Interrupted!" >>check.log
183 if [ ! -z "$notrun" ]
185 echo "Not run:$notrun"
186 echo "Not run:$notrun" >>check.log
188 if [ ! -z "$n_bad" -a $n_bad != 0 ]
191 echo "Failed $n_bad of $try tests"
192 echo "Failures:$bad" |
fmt >>check.log
193 echo "Failed $n_bad of $try tests" >>check.log
195 echo "Passed all $try tests"
196 echo "Passed all $try tests" >>check.log
201 rm -f "${TEST_DIR}"/*.out "${TEST_DIR}"/*.err "${TEST_DIR}"/*.
time
202 rm -f "${TEST_DIR}"/check.pid
"${TEST_DIR}"/check.sts
206 trap "_wrapup; exit \$status" 0 1 2 3 15
209 # Save pid of check in a well known place, so that hangcheck can be sure it
210 # has the right pid (getting the pid from ps output is not reliable enough).
212 rm -rf "${TEST_DIR}"/check.pid
213 echo $$
> "${TEST_DIR}"/check.pid
216 # Save the status of check in a well known place, so that hangcheck can be
217 # sure to know where check is up to (getting test number from ps output is
218 # not reliable enough since the trace stuff has been introduced).
220 rm -rf "${TEST_DIR}"/check.sts
221 echo "preamble" > "${TEST_DIR}"/check.sts
223 # don't leave old full output behind on a clean run
226 [ -f check.
time ] ||
touch check.
time
228 FULL_IMGFMT_DETAILS
=`_full_imgfmt_details`
229 FULL_IMGPROTO_DETAILS
=`_full_imgproto_details`
230 FULL_HOST_DETAILS
=`_full_platform_details`
231 #FULL_MKFS_OPTIONS=`_scratch_mkfs_options`
232 #FULL_MOUNT_OPTIONS=`_scratch_mount_options`
235 QEMU -- "$QEMU_PROG" $QEMU_OPTIONS
236 QEMU_IMG -- "$QEMU_IMG_PROG" $QEMU_IMG_OPTIONS
237 QEMU_IO -- "$QEMU_IO_PROG" $QEMU_IO_OPTIONS
238 QEMU_NBD -- "$QEMU_NBD_PROG" $QEMU_NBD_OPTIONS
239 IMGFMT -- $FULL_IMGFMT_DETAILS
240 IMGPROTO -- $FULL_IMGPROTO_DETAILS
241 PLATFORM -- $FULL_HOST_DETAILS
242 TEST_DIR -- $TEST_DIR
243 SOCKET_SCM_HELPER -- $SOCKET_SCM_HELPER
246 #MKFS_OPTIONS -- $FULL_MKFS_OPTIONS
247 #MOUNT_OPTIONS -- $FULL_MOUNT_OPTIONS
251 [ -n "$TESTS_REMAINING_LOG" ] && echo $list > $TESTS_REMAINING_LOG
257 if [ -n "$TESTS_REMAINING_LOG" ] ; then
258 sed -e "s/$seq//" -e 's/ / /' -e 's/^ *//' $TESTS_REMAINING_LOG > $TESTS_REMAINING_LOG.tmp
259 mv $TESTS_REMAINING_LOG.tmp
$TESTS_REMAINING_LOG
267 elif [ -f expunged
] && $expunge && egrep "^$seq([ ]|\$)" expunged
>/dev
/null
271 echo "/^$seq\$/d" >>$tmp.expunged
272 elif [ ! -f "$source_iotests/$seq" ]
274 echo " - no such test?"
275 echo "/^$seq\$/d" >>$tmp.expunged
277 # really going to try and run this one
280 lasttime
=`sed -n -e "/^$seq /s/.* //p" <check.time`
281 if [ "X$lasttime" != X
]; then
282 echo -n " ${lasttime}s ..."
284 echo -n " " # prettier output with timestamps.
286 rm -f core
$seq.notrun
289 echo "$seq" > "${TEST_DIR}"/check.sts
292 $timestamp && echo -n " ["`date "+%T"`"]"
294 if [ "$(head -n 1 "$source_iotests/$seq")" == "#!/usr/bin/env python" ]; then
295 run_command
="$PYTHON $seq"
299 export OUTPUT_DIR
=$PWD
301 (cd "$source_iotests";
302 MALLOC_PERTURB_
=${MALLOC_PERTURB_:-$(($RANDOM % 255 + 1))} \
303 $run_command -d 2>&1 |
tee $tmp.out
)
305 (cd "$source_iotests";
306 MALLOC_PERTURB_
=${MALLOC_PERTURB_:-$(($RANDOM % 255 + 1))} \
307 $run_command >$tmp.out
2>&1)
310 $timestamp && _timestamp
315 echo -n " [dumped core]"
320 if [ -f $seq.notrun
]
322 $timestamp ||
echo -n " [not run] "
323 $timestamp && echo " [not run]" && echo -n " $seq -- "
325 notrun
="$notrun $seq"
329 echo -n " [failed, exit status $sts]"
333 reference
="$source_iotests/$seq.out"
334 reference_machine
="$source_iotests/$seq.$QEMU_DEFAULT_MACHINE.out"
335 if [ -f "$reference_machine" ]; then
336 reference
="$reference_machine"
339 if [ "$CACHEMODE" = "none" ]; then
340 [ -f "$source_iotests/$seq.out.nocache" ] && reference
="$source_iotests/$seq.out.nocache"
343 if [ ! -f "$reference" ]
345 echo " - no qualified output"
348 if diff -w "$reference" $tmp.out
>/dev
/null
2>&1
355 echo "$seq `expr $stop - $start`" >>$tmp.
time
358 echo " - output mismatch (see $seq.out.bad)"
359 mv $tmp.out
$seq.out.bad
360 $diff -w "$reference" $seq.out.bad
368 # come here for each test, except when $showme is true
373 n_bad
=`expr $n_bad + 1`
376 [ -f $seq.notrun
] || try
=`expr $try + 1`