qemu/xen: Add 64 bits big bar support on qemu
[qemu.git] / tests / qemu-iotests / common.rc
blobd534e9466d263cce4ce8f1e558963b1ab87b4a57
1 #!/bin/bash
3 # Copyright (C) 2009 Red Hat, Inc.
4 # Copyright (c) 2000-2006 Silicon Graphics, Inc. All Rights Reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 dd()
22 if [ "$HOSTOS" == "Linux" ]
23 then
24 command dd --help | grep noxfer > /dev/null 2>&1
26 if [ "$?" -eq 0 ]
27 then
28 command dd status=noxfer $@
29 else
30 command dd $@
32 else
33 command dd $@
37 # we need common.config
38 if [ "$iam" != "check" ]
39 then
40 if ! . ./common.config
41 then
42 echo "$iam: failed to source common.config"
43 exit 1
47 # make sure we have a standard umask
48 umask 022
50 if [ "$IMGPROTO" = "file" ]; then
51 TEST_IMG=$TEST_DIR/t.$IMGFMT
52 else
53 TEST_IMG=$IMGPROTO:$TEST_DIR/t.$IMGFMT
56 function valgrind_qemu_io()
58 valgrind --log-file=/tmp/$$.valgrind --error-exitcode=99 $REAL_QEMU_IO "$@"
59 if [ $? != 0 ]; then
60 cat /tmp/$$.valgrind
62 rm -f /tmp/$$.valgrind
66 _optstr_add()
68 if [ -n "$1" ]; then
69 echo "$1,$2"
70 else
71 echo "$2"
75 _set_default_imgopts()
77 if [ "$IMGFMT" == "qcow2" ] && ! (echo "$IMGOPTS" | grep "compat=" > /dev/null); then
78 IMGOPTS=$(_optstr_add "$IMGOPTS" "compat=1.1")
82 _make_test_img()
84 # extra qemu-img options can be added by tests
85 # at least one argument (the image size) needs to be added
86 local extra_img_options=""
87 local image_size=$*
88 local optstr=""
90 if [ -n "$IMGOPTS" ]; then
91 optstr=$(_optstr_add "$optstr" "$IMGOPTS")
94 if [ "$1" = "-b" ]; then
95 extra_img_options="$1 $2"
96 image_size=$3
98 if [ \( "$IMGFMT" = "qcow2" -o "$IMGFMT" = "qed" \) -a -n "$CLUSTER_SIZE" ]; then
99 optstr=$(_optstr_add "$optstr" "cluster_size=$CLUSTER_SIZE")
102 if [ -n "$optstr" ]; then
103 extra_img_options="-o $optstr $extra_img_options"
106 # XXX(hch): have global image options?
107 $QEMU_IMG create -f $IMGFMT $extra_img_options $TEST_IMG $image_size | \
108 sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
109 -e "s#$TEST_DIR#TEST_DIR#g" \
110 -e "s#$IMGFMT#IMGFMT#g" \
111 -e "s# encryption=off##g" \
112 -e "s# cluster_size=[0-9]\\+##g" \
113 -e "s# table_size=[0-9]\\+##g" \
114 -e "s# compat='[^']*'##g" \
115 -e "s# compat6=\\(on\\|off\\)##g" \
116 -e "s# static=\\(on\\|off\\)##g" \
117 -e "s# lazy_refcounts=\\(on\\|off\\)##g"
120 _cleanup_test_img()
122 case "$IMGPROTO" in
124 file)
125 rm -f $TEST_DIR/t.$IMGFMT
126 rm -f $TEST_DIR/t.$IMGFMT.orig
127 rm -f $TEST_DIR/t.$IMGFMT.base
130 rbd)
131 rbd rm $TEST_DIR/t.$IMGFMT > /dev/null
134 sheepdog)
135 collie vdi delete $TEST_DIR/t.$IMGFMT
138 esac
141 _check_test_img()
143 $QEMU_IMG check -f $IMGFMT $TEST_IMG 2>&1 | \
144 grep -v "fragmented$" | \
145 sed -e 's/qemu-img\: This image format does not support checks/No errors were found on the image./'
148 _get_pids_by_name()
150 if [ $# -ne 1 ]
151 then
152 echo "Usage: _get_pids_by_name process-name" 1>&2
153 exit 1
156 # Algorithm ... all ps(1) variants have a time of the form MM:SS or
157 # HH:MM:SS before the psargs field, use this as the search anchor.
159 # Matches with $1 (process-name) occur if the first psarg is $1
160 # or ends in /$1 ... the matching uses sed's regular expressions,
161 # so passing a regex into $1 will work.
163 ps $PS_ALL_FLAGS \
164 | sed -n \
165 -e 's/$/ /' \
166 -e 's/[ ][ ]*/ /g' \
167 -e 's/^ //' \
168 -e 's/^[^ ]* //' \
169 -e "/[0-9]:[0-9][0-9] *[^ ]*\/$1 /s/ .*//p" \
170 -e "/[0-9]:[0-9][0-9] *$1 /s/ .*//p"
173 # fqdn for localhost
175 _get_fqdn()
177 host=`hostname`
178 $NSLOOKUP_PROG $host | $AWK_PROG '{ if ($1 == "Name:") print $2 }'
181 # check if run as root
183 _need_to_be_root()
185 id=`id | $SED_PROG -e 's/(.*//' -e 's/.*=//'`
186 if [ "$id" -ne 0 ]
187 then
188 echo "Arrgh ... you need to be root (not uid=$id) to run this test"
189 exit 1
194 # Do a command, log it to $seq.full, optionally test return status
195 # and die if command fails. If called with one argument _do executes the
196 # command, logs it, and returns its exit status. With two arguments _do
197 # first prints the message passed in the first argument, and then "done"
198 # or "fail" depending on the return status of the command passed in the
199 # second argument. If the command fails and the variable _do_die_on_error
200 # is set to "always" or the two argument form is used and _do_die_on_error
201 # is set to "message_only" _do will print an error message to
202 # $seq.out and exit.
204 _do()
206 if [ $# -eq 1 ]; then
207 _cmd=$1
208 elif [ $# -eq 2 ]; then
209 _note=$1
210 _cmd=$2
211 echo -n "$_note... "
212 else
213 echo "Usage: _do [note] cmd" 1>&2
214 status=1; exit
217 (eval "echo '---' \"$_cmd\"") >>$here/$seq.full
218 (eval "$_cmd") >$tmp._out 2>&1; ret=$?
219 cat $tmp._out >>$here/$seq.full
220 if [ $# -eq 2 ]; then
221 if [ $ret -eq 0 ]; then
222 echo "done"
223 else
224 echo "fail"
227 if [ $ret -ne 0 ] \
228 && [ "$_do_die_on_error" = "always" \
229 -o \( $# -eq 2 -a "$_do_die_on_error" = "message_only" \) ]
230 then
231 [ $# -ne 2 ] && echo
232 eval "echo \"$_cmd\" failed \(returned $ret\): see $seq.full"
233 status=1; exit
236 return $ret
239 # bail out, setting up .notrun file
241 _notrun()
243 echo "$*" >$seq.notrun
244 echo "$seq not run: $*"
245 status=0
246 exit
249 # just plain bail out
251 _fail()
253 echo "$*" | tee -a $here/$seq.full
254 echo "(see $seq.full for details)"
255 status=1
256 exit 1
259 # tests whether $IMGFMT is one of the supported image formats for a test
261 _supported_fmt()
263 for f; do
264 if [ "$f" = "$IMGFMT" -o "$f" = "generic" ]; then
265 return
267 done
269 _notrun "not suitable for this image format: $IMGFMT"
272 # tests whether $IMGPROTO is one of the supported image protocols for a test
274 _supported_proto()
276 for f; do
277 if [ "$f" = "$IMGPROTO" -o "$f" = "generic" ]; then
278 return
280 done
282 _notrun "not suitable for this image protocol: $IMGPROTO"
285 # tests whether the host OS is one of the supported OSes for a test
287 _supported_os()
289 for h
291 if [ "$h" = "$HOSTOS" ]
292 then
293 return
295 done
297 _notrun "not suitable for this OS: $HOSTOS"
300 _unsupported_qemu_io_options()
302 for bad_opt
304 for opt in $QEMU_IO_OPTIONS
306 if [ "$bad_opt" = "$opt" ]
307 then
308 _notrun "not suitable for qemu-io option: $bad_opt"
310 done
311 done
314 # this test requires that a specified command (executable) exists
316 _require_command()
318 [ -x "$1" ] || _notrun "$1 utility required, skipped this test"
321 _full_imgfmt_details()
323 if [ -n "$IMGOPTS" ]; then
324 echo "$IMGFMT ($IMGOPTS)"
325 else
326 echo "$IMGFMT"
330 _full_imgproto_details()
332 echo "$IMGPROTO"
335 _full_platform_details()
337 os=`uname -s`
338 host=`hostname -s`
339 kernel=`uname -r`
340 platform=`uname -m`
341 echo "$os/$platform $host $kernel"
344 _link_out_file()
346 if [ -z "$1" ]; then
347 echo Error must pass \$seq.
348 exit
350 rm -f $1
351 if [ "`uname`" == "IRIX64" ] || [ "`uname`" == "IRIX" ]; then
352 ln -s $1.irix $1
353 elif [ "`uname`" == "Linux" ]; then
354 ln -s $1.linux $1
355 else
356 echo Error test $seq does not run on the operating system: `uname`
357 exit
361 _die()
363 echo $@
364 exit 1
367 # make sure this script returns success
368 /bin/true