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
28 rm -f "$OUTPUT_DIR/$iam.out"
45 rm -f $tmp.list
$tmp.tmp
$tmp.
sed
48 export IMGFMT_GENERIC
=true
51 export CACHEMODE
="writeback"
52 export QEMU_IO_OPTIONS
=""
53 export CACHEMODE_IS_DEFAULT
=true
54 export QEMU_OPTIONS
="-nodefaults -machine accel=qtest"
57 export IMGOPTSSYNTAX
=false
65 group_list
=`sed -n <"$source_iotests/group" -e 's/$/ /' -e "/^[0-9][0-9][0-9].* $r /"'{
68 if [ -z "$group_list" ]
70 echo "Group \"$r\" is empty or not defined?"
73 [ ! -s $tmp.list
] && touch $tmp.list
76 if grep -s "^$t\$" $tmp.list
>/dev
/null
89 [ ! -s $tmp.list
] && ls [0-9][0-9][0-9] [0-9][0-9][0-9][0-9] >$tmp.list
2>/dev
/null
90 group_list
=`sed -n <"$source_iotests/group" -e 's/$/ /' -e "/^[0-9][0-9][0-9].* $r /"'{
93 if [ -z "$group_list" ]
95 echo "Group \"$r\" is empty or not defined?"
102 if [ $numsed -gt 100 ]
104 sed -f $tmp.
sed <$tmp.list
>$tmp.tmp
105 mv $tmp.tmp
$tmp.list
109 echo "/^$t\$/d" >>$tmp.
sed
110 numsed
=`expr $numsed + 1`
112 sed -f $tmp.
sed <$tmp.list
>$tmp.tmp
113 mv $tmp.tmp
$tmp.list
125 CACHEMODE_IS_DEFAULT
=false
134 -\? |
-h |
--help) # usage
135 echo "Usage: $0 [options] [testlist]"'
142 -raw test raw (default)
145 -parallels test parallels
153 -file test file (default)
155 -sheepdog test sheepdog
159 -archipelago test archipelago
161 -xdiff graphical mode diff
162 -nocache use O_DIRECT on backing file
163 -misalign misalign memory allocations
164 -n show me, do not run tests
165 -o options -o options to pass to qemu-img create/convert
167 -r randomize test order
171 -g group[,group...] include tests from these groups
172 -x group[,group...] exclude tests from these groups
174 NNN-NNN include test range (eg. 012-021)
281 CACHEMODE_IS_DEFAULT
=false
286 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS --misalign"
295 -g) # -g group ... pick from group file
300 -xdiff) # graphical diff mode
303 if [ ! -z "$DISPLAY" ]
305 command -v xdiff
>/dev
/null
2>&1 && diff=xdiff
306 command -v gdiff
>/dev
/null
2>&1 && diff=gdiff
307 command -v tkdiff
>/dev
/null
2>&1 && diff=tkdiff
308 command -v xxdiff
>/dev
/null
2>&1 && diff=xxdiff
312 -n) # show me, don't do it
324 -r) # randomize test order
329 -T) # turn on timestamp output
342 -x) # -x group ... exclude from group file
346 '[0-9][0-9][0-9] [0-9][0-9][0-9][0-9]')
353 eval `echo $r | sed -e 's/^/start=/' -e 's/-/ end=/'`
357 eval `echo $r | sed -e 's/^/start=/' -e 's/-//'`
358 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/.* //'`
361 echo "No tests in range \"$r\"?"
374 # get rid of leading 0s as can be interpreted as octal
375 start
=`echo $start | sed 's/^0*//'`
376 end
=`echo $end | sed 's/^0*//'`
381 $AWK_PROG </dev
/null
'
382 BEGIN { for (t='$start'; t<='$end'; t++) printf "%03d\n",t }' \
385 if grep -s "^$id " "$source_iotests/group" >/dev
/null
387 # in group file ... OK
390 if [ -f expunged
] && $expunge && egrep "^$id([ ]|\$)" expunged
>/dev
/null
392 # expunged ... will be reported, but not run, later
396 if [ "$start" == "$end" -a "$id" == "$end" ]
398 echo "$id - unknown test"
401 echo "$id - unknown test, ignored"
410 # Set qemu-io cache mode with $CACHEMODE we have
411 if [ "$IMGOPTSSYNTAX" = "true" ]; then
412 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS --cache $CACHEMODE"
414 QEMU_IO_OPTIONS
="$QEMU_IO_OPTIONS -f $IMGFMT --cache $CACHEMODE"
417 # Set default options for qemu-img create -o if they were not specified
422 # found some valid test numbers ... this is good
427 # had test numbers, but none in group file ... do nothing
430 # no test numbers, do everything from group file
431 sed -n -e '/^[0-9][0-9][0-9]*/s/[ ].*//p' <"$source_iotests/group" >$tmp.list
435 # should be sort -n, but this did not work for Linux when this
436 # was ported from IRIX
438 list
=`sort $tmp.list`
439 rm -f $tmp.list
$tmp.tmp
$tmp.
sed
443 list
=`echo $list | awk -f randomize.awk`
446 [ "$QEMU" = "" ] && _fatal
"qemu not found"
447 [ "$QEMU_IMG" = "" ] && _fatal
"qemu-img not found"
448 [ "$QEMU_IO" = "" ] && _fatal
"qemu-io not found"
450 if [ "$IMGPROTO" = "nbd" ] ; then
451 [ "$QEMU_NBD" = "" ] && _fatal
"qemu-nbd not found"