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}
41 # called from the build tree
42 source_iotests
=$
(dirname "$(readlink "$0")")
43 if [ -z "$source_iotests" ]
45 _init_error
"failed to obtain source tree name from check symlink"
47 source_iotests
=$
(cd "$source_iotests"; pwd) || _init_error
"failed to enter source tree"
50 # called from the source tree
52 # this may be an in-tree build (note that in the following code we may not
53 # assume that it truly is and have to test whether the build results
58 build_root
="$build_iotests/../.."
61 if ! .
"$build_iotests/common.env"
63 _init_error
"failed to source common.env (make sure the qemu-iotests are run from tests/qemu-iotests in the build tree)"
66 # we need common.config
67 if ! .
"$source_iotests/common.config"
69 _init_error
"failed to source common.config"
72 _full_imgfmt_details
()
74 if [ -n "$IMGOPTS" ]; then
75 echo "$IMGFMT ($IMGOPTS)"
81 _full_platform_details
()
87 echo "$os/$platform $host $kernel"
90 # $1 = prog to look for
93 p
=`command -v $1 2> /dev/null`
94 if [ -n "$p" -a -x "$p" ]; then
95 realpath
-- "$(type -p "$p")"
101 if [ -z "$TEST_DIR" ]; then
102 TEST_DIR
=`pwd`/scratch
105 if [ ! -e "$TEST_DIR" ]; then
122 rm -f $tmp.list
$tmp.tmp
$tmp.
sed
125 export IMGFMT_GENERIC
=true
128 export CACHEMODE
="writeback"
129 export QEMU_IO_OPTIONS
=""
130 export QEMU_IO_OPTIONS_NO_FMT
=""
131 export CACHEMODE_IS_DEFAULT
=true
132 export QEMU_OPTIONS
="-nodefaults -machine accel=qtest"
133 export VALGRIND_QEMU
=
135 export IMGOPTSSYNTAX
=false
137 # Save current tty settings, since an aborting qemu call may leave things
141 STTY_RESTORE
=$
(stty
-g)
150 group_list
=`sed -n <"$source_iotests/group" -e 's/$/ /' -e "/^[0-9][0-9][0-9].* $r /"'{
153 if [ -z "$group_list" ]
155 echo "Group \"$r\" is empty or not defined?"
158 [ ! -s $tmp.list
] && touch $tmp.list
161 if grep -s "^$t\$" $tmp.list
>/dev
/null
165 echo "$t" >>$tmp.list
174 # Populate $tmp.list with all tests
175 awk '/^[0-9]{3,}/ {print $1}' "${source_iotests}/group" > $tmp.list
2>/dev
/null
176 group_list
=`sed -n <"$source_iotests/group" -e 's/$/ /' -e "/^[0-9][0-9][0-9].* $r /"'{
179 if [ -z "$group_list" ]
181 echo "Group \"$r\" is empty or not defined?"
188 if [ $numsed -gt 100 ]
190 sed -f $tmp.
sed <$tmp.list
>$tmp.tmp
191 mv $tmp.tmp
$tmp.list
195 echo "/^$t\$/d" >>$tmp.
sed
196 numsed
=`expr $numsed + 1`
198 sed -f $tmp.
sed <$tmp.list
>$tmp.tmp
199 mv $tmp.tmp
$tmp.list
211 CACHEMODE_IS_DEFAULT
=false
220 -\? |
-h |
--help) # usage
221 echo "Usage: $0 [options] [testlist]"'
228 -raw test raw (default)
231 -parallels test parallels
241 image protocol options
242 -file test file (default)
244 -sheepdog test sheepdog
251 -xdiff graphical mode diff
252 -nocache use O_DIRECT on backing file
253 -misalign misalign memory allocations
254 -n show me, do not run tests
255 -o options -o options to pass to qemu-img create/convert
260 -g group[,group...] include tests from these groups
261 -x group[,group...] exclude tests from these groups
263 NNN-NNN include test range (eg. 012-021)
370 CACHEMODE_IS_DEFAULT
=false
375 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS --misalign"
384 -g) # -g group ... pick from group file
389 -xdiff) # graphical diff mode
392 if [ ! -z "$DISPLAY" ]
394 command -v xdiff
>/dev
/null
2>&1 && diff=xdiff
395 command -v gdiff
>/dev
/null
2>&1 && diff=gdiff
396 command -v tkdiff
>/dev
/null
2>&1 && diff=tkdiff
397 command -v xxdiff
>/dev
/null
2>&1 && diff=xxdiff
401 -n) # show me, don't do it
413 -T) # turn on timestamp output
426 -x) # -x group ... exclude from group file
430 '[0-9][0-9][0-9] [0-9][0-9][0-9][0-9]')
437 eval `echo $r | sed -e 's/^/start=/' -e 's/-/ end=/'`
441 eval `echo $r | sed -e 's/^/start=/' -e 's/-//'`
442 end
=`echo [0-9][0-9][0-9] [0-9][0-9][0-9][0-9] | sed -e 's/\[0-9]//g' -e 's/ *$//' -e 's/.* //'`
445 echo "No tests in range \"$r\"?"
458 # get rid of leading 0s as can be interpreted as octal
459 start
=`echo $start | sed 's/^0*//'`
460 end
=`echo $end | sed 's/^0*//'`
466 BEGIN { for (t='$start'; t<='$end'; t++) printf "%03d\n",t }' \
469 if grep -s "^$id " "$source_iotests/group" >/dev
/null
471 # in group file ... OK
474 if [ -f expunged
] && $expunge && egrep "^$id([ ]|\$)" expunged
>/dev
/null
476 # expunged ... will be reported, but not run, later
480 if [ "$start" == "$end" -a "$id" == "$end" ]
482 echo "$id - unknown test"
485 echo "$id - unknown test, ignored"
494 # Set qemu-io cache mode with $CACHEMODE we have
495 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS --cache $CACHEMODE"
497 QEMU_IO_OPTIONS_NO_FMT
="$QEMU_IO_OPTIONS"
498 if [ "$IMGOPTSSYNTAX" != "true" ]; then
499 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS -f $IMGFMT"
502 # Set default options for qemu-img create -o if they were not specified
503 if [ "$IMGFMT" == "qcow2" ] && ! (echo "$IMGOPTS" |
grep "compat=" > /dev
/null
); then
504 IMGOPTS
=$
(_optstr_add
"$IMGOPTS" "compat=1.1")
506 if [ "$IMGFMT" == "luks" ] && ! (echo "$IMGOPTS" |
grep "iter-time=" > /dev
/null
); then
507 IMGOPTS
=$
(_optstr_add
"$IMGOPTS" "iter-time=10")
510 if [ -z "$SAMPLE_IMG_DIR" ]; then
511 SAMPLE_IMG_DIR
="$source_iotests/sample_images"
515 export SAMPLE_IMG_DIR
519 # found some valid test numbers ... this is good
524 # had test numbers, but none in group file ... do nothing
527 # no test numbers, do everything from group file
528 sed -n -e '/^[0-9][0-9][0-9]*/s/[ ].*//p' <"$source_iotests/group" >$tmp.list
532 # should be sort -n, but this did not work for Linux when this
533 # was ported from IRIX
535 list
=`sort $tmp.list`
536 rm -f $tmp.list
$tmp.tmp
$tmp.
sed
538 if [ -z "$QEMU_PROG" ]
540 if [ -x "$build_iotests/qemu" ]; then
541 export QEMU_PROG
="$build_iotests/qemu"
542 elif [ -x "$build_root/$arch-softmmu/qemu-system-$arch" ]; then
543 export QEMU_PROG
="$build_root/$arch-softmmu/qemu-system-$arch"
545 pushd "$build_root" > /dev
/null
546 for binary
in *-softmmu/qemu-system-
*
550 export QEMU_PROG
="$build_root/$binary"
555 [ "$QEMU_PROG" = "" ] && _init_error
"qemu not found"
558 export QEMU_PROG
=$
(realpath
-- "$(type -p "$QEMU_PROG")")
560 if [ -z "$QEMU_IMG_PROG" ]; then
561 if [ -x "$build_iotests/qemu-img" ]; then
562 export QEMU_IMG_PROG
="$build_iotests/qemu-img"
563 elif [ -x "$build_root/qemu-img" ]; then
564 export QEMU_IMG_PROG
="$build_root/qemu-img"
566 _init_error
"qemu-img not found"
569 export QEMU_IMG_PROG
=$
(realpath
-- "$(type -p "$QEMU_IMG_PROG")")
571 if [ -z "$QEMU_IO_PROG" ]; then
572 if [ -x "$build_iotests/qemu-io" ]; then
573 export QEMU_IO_PROG
="$build_iotests/qemu-io"
574 elif [ -x "$build_root/qemu-io" ]; then
575 export QEMU_IO_PROG
="$build_root/qemu-io"
577 _init_error
"qemu-io not found"
580 export QEMU_IO_PROG
=$
(realpath
-- "$(type -p "$QEMU_IO_PROG")")
582 if [ -z $QEMU_NBD_PROG ]; then
583 if [ -x "$build_iotests/qemu-nbd" ]; then
584 export QEMU_NBD_PROG
="$build_iotests/qemu-nbd"
585 elif [ -x "$build_root/qemu-nbd" ]; then
586 export QEMU_NBD_PROG
="$build_root/qemu-nbd"
588 _init_error
"qemu-nbd not found"
591 export QEMU_NBD_PROG
=$
(realpath
-- "$(type -p "$QEMU_NBD_PROG")")
593 if [ -z "$QEMU_VXHS_PROG" ]; then
594 export QEMU_VXHS_PROG
="`set_prog_path qnio_server`"
597 if [ -x "$build_iotests/socket_scm_helper" ]
599 export SOCKET_SCM_HELPER
="$build_iotests/socket_scm_helper"
602 default_machine
=$
($QEMU_PROG -machine help |
sed -n '/(default)/ s/ .*//p')
603 default_alias_machine
=$
($QEMU_PROG -machine help | \
604 sed -n "/(alias of $default_machine)/ { s/ .*//p; q; }")
605 if [[ "$default_alias_machine" ]]; then
606 default_machine
="$default_alias_machine"
609 export QEMU_DEFAULT_MACHINE
="$default_machine"
611 TIMESTAMP_FILE
=check.time-
$IMGPROTO-$IMGFMT
615 date "+%H %M %S" |
awk '{ print $1*3600 + $2*60 + $3 }'
631 if [ -f $TIMESTAMP_FILE -a -f $tmp.
time ]
633 cat $TIMESTAMP_FILE $tmp.
time \
637 for (i in t) print i " " t[i]
641 mv $tmp.out
$TIMESTAMP_FILE
644 if [ -f $tmp.expunged
]
646 notrun
=`wc -l <$tmp.expunged | sed -e 's/ *//g'`
647 try
=`expr $try - $notrun`
648 list
=`echo "$list" | sed -f $tmp.expunged`
653 echo $list |
fmt |
sed -e 's/^/ /' >>check.log
654 $interrupt && echo "Interrupted!" >>check.log
656 if [ ! -z "$notrun" ]
658 echo "Not run:$notrun"
659 echo "Not run:$notrun" >>check.log
661 if [ ! -z "$n_bad" -a $n_bad != 0 ]
664 echo "Failed $n_bad of $try tests"
665 echo "Failures:$bad" |
fmt >>check.log
666 echo "Failed $n_bad of $try tests" >>check.log
668 echo "Passed all $try tests"
669 echo "Passed all $try tests" >>check.log
674 if test -n "$STTY_RESTORE"; then
677 rm -f "${TEST_DIR}"/*.out "${TEST_DIR}"/*.err "${TEST_DIR}"/*.
time
678 rm -f "${TEST_DIR}"/check.pid
"${TEST_DIR}"/check.sts
682 trap "_wrapup; exit \$status" 0 1 2 3 15
684 [ -f $TIMESTAMP_FILE ] ||
touch $TIMESTAMP_FILE
686 FULL_IMGFMT_DETAILS
=`_full_imgfmt_details`
687 FULL_HOST_DETAILS
=`_full_platform_details`
690 QEMU -- "$QEMU_PROG" $QEMU_OPTIONS
691 QEMU_IMG -- "$QEMU_IMG_PROG" $QEMU_IMG_OPTIONS
692 QEMU_IO -- "$QEMU_IO_PROG" $QEMU_IO_OPTIONS
693 QEMU_NBD -- "$QEMU_NBD_PROG" $QEMU_NBD_OPTIONS
694 IMGFMT -- $FULL_IMGFMT_DETAILS
695 IMGPROTO -- $IMGPROTO
696 PLATFORM -- $FULL_HOST_DETAILS
697 TEST_DIR -- $TEST_DIR
698 SOCKET_SCM_HELPER -- $SOCKET_SCM_HELPER
704 [ -n "$TESTS_REMAINING_LOG" ] && echo $list > $TESTS_REMAINING_LOG
710 if [ -n "$TESTS_REMAINING_LOG" ] ; then
711 sed -e "s/$seq//" -e 's/ / /' -e 's/^ *//' $TESTS_REMAINING_LOG > $TESTS_REMAINING_LOG.tmp
712 mv $TESTS_REMAINING_LOG.tmp
$TESTS_REMAINING_LOG
720 elif [ -f expunged
] && $expunge && egrep "^$seq([ ]|\$)" expunged
>/dev
/null
724 echo "/^$seq\$/d" >>$tmp.expunged
725 elif [ ! -f "$source_iotests/$seq" ]
727 echo " - no such test?"
728 echo "/^$seq\$/d" >>$tmp.expunged
730 # really going to try and run this one
733 lasttime
=`sed -n -e "/^$seq /s/.* //p" <$TIMESTAMP_FILE`
734 if [ "X$lasttime" != X
]; then
735 printf %s
" ${lasttime}s ..."
737 printf " " # prettier output with timestamps.
739 rm -f core
$seq.notrun
742 $timestamp && printf %s
" [$(date "+%T
")]"
744 if [ "$(head -n 1 "$source_iotests/$seq")" == "#!/usr/bin/env python" ]; then
745 run_command
="$PYTHON $seq"
749 export OUTPUT_DIR
=$PWD
751 (cd "$source_iotests";
752 MALLOC_PERTURB_
=${MALLOC_PERTURB_:-$(($RANDOM % 255 + 1))} \
753 $run_command -d 2>&1 |
tee $tmp.out
)
755 (cd "$source_iotests";
756 MALLOC_PERTURB_
=${MALLOC_PERTURB_:-$(($RANDOM % 255 + 1))} \
757 $run_command >$tmp.out
2>&1)
760 $timestamp && _timestamp
765 printf " [dumped core]"
770 if [ -f $seq.notrun
]
772 $timestamp ||
printf " [not run] "
773 $timestamp && echo " [not run]" && printf %s
" $seq -- "
775 notrun
="$notrun $seq"
779 printf %s
" [failed, exit status $sts]"
783 reference
="$source_iotests/$seq.out"
784 reference_machine
="$source_iotests/$seq.$QEMU_DEFAULT_MACHINE.out"
785 if [ -f "$reference_machine" ]; then
786 reference
="$reference_machine"
789 reference_format
="$source_iotests/$seq.out.$IMGFMT"
790 if [ -f "$reference_format" ]; then
791 reference
="$reference_format"
794 if [ "$CACHEMODE" = "none" ]; then
795 [ -f "$source_iotests/$seq.out.nocache" ] && reference
="$source_iotests/$seq.out.nocache"
798 if [ ! -f "$reference" ]
800 echo " - no qualified output"
803 if diff -w "$reference" $tmp.out
>/dev
/null
2>&1
810 echo "$seq `expr $stop - $start`" >>$tmp.
time
813 echo " - output mismatch (see $seq.out.bad)"
814 mv $tmp.out
$seq.out.bad
815 $diff -w "$reference" $
(realpath
$seq.out.bad
)
823 # come here for each test, except when $showme is true
828 n_bad
=`expr $n_bad + 1`
831 [ -f $seq.notrun
] || try
=`expr $try + 1`