3 # Copyright (C) 2009 Red Hat, Inc.
4 # Copyright (c) 2000-2005 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 # common procedures for QA scripts
46 rm -f $tmp.list
$tmp.tmp
$tmp.
sed
49 export IMGFMT_GENERIC
=true
52 export CACHEMODE
="writeback"
53 export QEMU_IO_OPTIONS
=""
54 export CACHEMODE_IS_DEFAULT
=true
62 group_list
=`sed -n <group -e 's/$/ /' -e "/^[0-9][0-9][0-9].* $r /"'{
65 if [ -z "$group_list" ]
67 echo "Group \"$r\" is empty or not defined?"
70 [ ! -s $tmp.list
] && touch $tmp.list
73 if grep -s "^$t\$" $tmp.list
>/dev
/null
86 [ ! -s $tmp.list
] && ls [0-9][0-9][0-9] [0-9][0-9][0-9][0-9] >$tmp.list
2>/dev
/null
87 group_list
=`sed -n <group -e 's/$/ /' -e "/^[0-9][0-9][0-9].* $r /"'{
90 if [ -z "$group_list" ]
92 echo "Group \"$r\" is empty or not defined?"
99 if [ $numsed -gt 100 ]
101 sed -f $tmp.
sed <$tmp.list
>$tmp.tmp
102 mv $tmp.tmp
$tmp.list
106 echo "/^$t\$/d" >>$tmp.
sed
107 numsed
=`expr $numsed + 1`
109 sed -f $tmp.
sed <$tmp.list
>$tmp.tmp
110 mv $tmp.tmp
$tmp.list
122 CACHEMODE_IS_DEFAULT
=false
131 -\? |
-h |
--help) # usage
132 echo "Usage: $0 [options] [testlist]"'
138 -raw test raw (default)
148 -sheepdog test sheepdog
151 -xdiff graphical mode diff
152 -nocache use O_DIRECT on backing file
153 -misalign misalign memory allocations
154 -n show me, do not run tests
155 -o options -o options to pass to qemu-img create/convert
157 -r randomize test order
161 -g group[,group...] include tests from these groups
162 -x group[,group...] exclude tests from these groups
164 NNN-NNN include test range (eg. 012-021)
232 CACHEMODE_IS_DEFAULT
=false
237 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS --misalign"
246 -g) # -g group ... pick from group file
251 -xdiff) # graphical diff mode
254 if [ ! -z "$DISPLAY" ]
256 which xdiff
>/dev
/null
2>&1 && diff=xdiff
257 which gdiff
>/dev
/null
2>&1 && diff=gdiff
258 which tkdiff
>/dev
/null
2>&1 && diff=tkdiff
259 which xxdiff
>/dev
/null
2>&1 && diff=xxdiff
263 -n) # show me, don't do it
275 -r) # randomize test order
280 -T) # turn on timestamp output
289 -x) # -x group ... exclude from group file
293 '[0-9][0-9][0-9] [0-9][0-9][0-9][0-9]')
300 eval `echo $r | sed -e 's/^/start=/' -e 's/-/ end=/'`
304 eval `echo $r | sed -e 's/^/start=/' -e 's/-//'`
305 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/.* //'`
308 echo "No tests in range \"$r\"?"
321 # get rid of leading 0s as can be interpreted as octal
322 start
=`echo $start | sed 's/^0*//'`
323 end
=`echo $end | sed 's/^0*//'`
328 $AWK_PROG </dev
/null
'
329 BEGIN { for (t='$start'; t<='$end'; t++) printf "%03d\n",t }' \
332 if grep -s "^$id " group
>/dev
/null
334 # in group file ... OK
337 if [ -f expunged
] && $expunge && egrep "^$id([ ]|\$)" expunged
>/dev
/null
339 # expunged ... will be reported, but not run, later
343 echo "$id - unknown test, ignored"
351 # Set qemu-io cache mode with $CACHEMODE we have
352 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS --cache $CACHEMODE"
354 # Set default options for qemu-img create -o if they were not specified
359 # found some valid test numbers ... this is good
364 # had test numbers, but none in group file ... do nothing
367 # no test numbers, do everything from group file
368 sed -n -e '/^[0-9][0-9][0-9]*/s/[ ].*//p' <group
>$tmp.list
372 # should be sort -n, but this did not work for Linux when this
373 # was ported from IRIX
375 list
=`sort $tmp.list`
376 rm -f $tmp.list
$tmp.tmp
$tmp.
sed
380 list
=`echo $list | awk -f randomize.awk`
383 [ "$QEMU" = "" ] && _fatal
"qemu not found"
384 [ "$QEMU_IMG" = "" ] && _fatal
"qemu-img not found"
385 [ "$QEMU_IO" = "" ] && _fatal
"qemu-io not found"
387 if [ "$IMGPROTO" = "nbd" ] ; then
388 [ "$QEMU_NBD" = "" ] && _fatal
"qemu-nbd not found"
392 export REAL_QEMU_IO
="$QEMU_IO_PROG"
393 export QEMU_IO_PROG
=valgrind_qemu_io