ati-vga: Fix check for blt outside vram
[qemu/ar7.git] / tests / qemu-iotests / common.rc
bloba543e546c25a334195a01b86ceb0fe2af07c1090
1 #!/usr/bin/env 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 SED=
21 for sed in sed gsed; do
22 ($sed --version | grep 'GNU sed') > /dev/null 2>&1
23 if [ "$?" -eq 0 ]; then
24 SED=$sed
25 break
27 done
28 if [ -z "$SED" ]; then
29 echo "$0: GNU sed not found"
30 exit 1
33 dd()
35 if [ "$HOSTOS" == "Linux" ]
36 then
37 command dd --help | grep noxfer > /dev/null 2>&1
39 if [ "$?" -eq 0 ]
40 then
41 command dd status=noxfer $@
42 else
43 command dd $@
45 else
46 command dd $@
50 # poke_file 'test.img' 512 '\xff\xfe'
51 poke_file()
53 printf "$3" | dd "of=$1" bs=1 "seek=$2" conv=notrunc &>/dev/null
57 if ! . ./common.config
58 then
59 echo "$0: failed to source common.config"
60 exit 1
63 _qemu_wrapper()
66 if [ -n "${QEMU_NEED_PID}" ]; then
67 echo $BASHPID > "${QEMU_TEST_DIR}/qemu-${_QEMU_HANDLE}.pid"
69 exec "$QEMU_PROG" $QEMU_OPTIONS "$@"
73 _qemu_img_wrapper()
75 (exec "$QEMU_IMG_PROG" $QEMU_IMG_OPTIONS "$@")
78 _qemu_io_wrapper()
80 local VALGRIND_LOGFILE="${TEST_DIR}"/$$.valgrind
81 local QEMU_IO_ARGS="$QEMU_IO_OPTIONS"
82 if [ "$IMGOPTSSYNTAX" = "true" ]; then
83 QEMU_IO_ARGS="--image-opts $QEMU_IO_ARGS"
84 if [ -n "$IMGKEYSECRET" ]; then
85 QEMU_IO_ARGS="--object secret,id=keysec0,data=$IMGKEYSECRET $QEMU_IO_ARGS"
88 local RETVAL
90 if [ "${VALGRIND_QEMU}" == "y" ]; then
91 exec valgrind --log-file="${VALGRIND_LOGFILE}" --error-exitcode=99 "$QEMU_IO_PROG" $QEMU_IO_ARGS "$@"
92 else
93 exec "$QEMU_IO_PROG" $QEMU_IO_ARGS "$@"
96 RETVAL=$?
97 if [ "${VALGRIND_QEMU}" == "y" ]; then
98 if [ $RETVAL == 99 ]; then
99 cat "${VALGRIND_LOGFILE}"
101 rm -f "${VALGRIND_LOGFILE}"
103 (exit $RETVAL)
106 _qemu_nbd_wrapper()
109 echo $BASHPID > "${QEMU_TEST_DIR}/qemu-nbd.pid"
110 exec "$QEMU_NBD_PROG" $QEMU_NBD_OPTIONS "$@"
114 _qemu_vxhs_wrapper()
117 echo $BASHPID > "${TEST_DIR}/qemu-vxhs.pid"
118 exec "$QEMU_VXHS_PROG" $QEMU_VXHS_OPTIONS "$@"
122 export QEMU=_qemu_wrapper
123 export QEMU_IMG=_qemu_img_wrapper
124 export QEMU_IO=_qemu_io_wrapper
125 export QEMU_NBD=_qemu_nbd_wrapper
126 export QEMU_VXHS=_qemu_vxhs_wrapper
128 if [ "$IMGOPTSSYNTAX" = "true" ]; then
129 DRIVER="driver=$IMGFMT"
130 QEMU_IMG_EXTRA_ARGS="--image-opts $QEMU_IMG_EXTRA_ARGS"
131 if [ -n "$IMGKEYSECRET" ]; then
132 QEMU_IMG_EXTRA_ARGS="--object secret,id=keysec0,data=$IMGKEYSECRET $QEMU_IMG_EXTRA_ARGS"
134 if [ "$IMGFMT" = "luks" ]; then
135 DRIVER="$DRIVER,key-secret=keysec0"
137 if [ "$IMGPROTO" = "file" ]; then
138 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
139 TEST_IMG="$DRIVER,file.filename=$TEST_DIR/t.$IMGFMT"
140 elif [ "$IMGPROTO" = "nbd" ]; then
141 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
142 TEST_IMG="$DRIVER,file.driver=nbd,file.host=127.0.0.1,file.port=10810"
143 elif [ "$IMGPROTO" = "ssh" ]; then
144 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
145 TEST_IMG="$DRIVER,file.driver=ssh,file.host=127.0.0.1,file.path=$TEST_IMG_FILE"
146 elif [ "$IMGPROTO" = "nfs" ]; then
147 TEST_DIR="$DRIVER,file.driver=nfs,file.filename=nfs://127.0.0.1/$TEST_DIR"
148 TEST_IMG=$TEST_DIR/t.$IMGFMT
149 else
150 TEST_IMG="$DRIVER,file.driver=$IMGPROTO,file.filename=$TEST_DIR/t.$IMGFMT"
152 else
153 QEMU_IMG_EXTRA_ARGS=
154 if [ "$IMGPROTO" = "file" ]; then
155 TEST_IMG=$TEST_DIR/t.$IMGFMT
156 elif [ "$IMGPROTO" = "nbd" ]; then
157 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
158 TEST_IMG="nbd:127.0.0.1:10810"
159 elif [ "$IMGPROTO" = "ssh" ]; then
160 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
161 REMOTE_TEST_DIR="ssh://127.0.0.1$TEST_DIR"
162 TEST_IMG="ssh://127.0.0.1$TEST_IMG_FILE"
163 elif [ "$IMGPROTO" = "nfs" ]; then
164 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
165 REMOTE_TEST_DIR="nfs://127.0.0.1$TEST_DIR"
166 TEST_IMG="nfs://127.0.0.1$TEST_IMG_FILE"
167 elif [ "$IMGPROTO" = "vxhs" ]; then
168 TEST_IMG_FILE=$TEST_DIR/t.$IMGFMT
169 TEST_IMG="vxhs://127.0.0.1:9999/t.$IMGFMT"
170 else
171 TEST_IMG=$IMGPROTO:$TEST_DIR/t.$IMGFMT
174 ORIG_TEST_IMG="$TEST_IMG"
176 if [ -z "$TEST_DIR" ]; then
177 TEST_DIR=$PWD/scratch
180 QEMU_TEST_DIR="${TEST_DIR}"
182 if [ ! -e "$TEST_DIR" ]; then
183 mkdir "$TEST_DIR"
186 if [ ! -d "$TEST_DIR" ]; then
187 echo "common.rc: Error: \$TEST_DIR ($TEST_DIR) is not a directory"
188 exit 1
191 if [ -z "$REMOTE_TEST_DIR" ]; then
192 REMOTE_TEST_DIR="$TEST_DIR"
195 if [ ! -d "$SAMPLE_IMG_DIR" ]; then
196 echo "common.rc: Error: \$SAMPLE_IMG_DIR ($SAMPLE_IMG_DIR) is not a directory"
197 exit 1
200 _use_sample_img()
202 SAMPLE_IMG_FILE="${1%\.bz2}"
203 TEST_IMG="$TEST_DIR/$SAMPLE_IMG_FILE"
204 bzcat "$SAMPLE_IMG_DIR/$1" > "$TEST_IMG"
205 if [ $? -ne 0 ]
206 then
207 echo "_use_sample_img error, cannot extract '$SAMPLE_IMG_DIR/$1'"
208 exit 1
212 _stop_nbd_server()
214 if [ -f "${QEMU_TEST_DIR}/qemu-nbd.pid" ]; then
215 local QEMU_NBD_PID
216 read QEMU_NBD_PID < "${QEMU_TEST_DIR}/qemu-nbd.pid"
217 kill ${QEMU_NBD_PID}
218 rm -f "${QEMU_TEST_DIR}/qemu-nbd.pid"
222 _make_test_img()
224 # extra qemu-img options can be added by tests
225 # at least one argument (the image size) needs to be added
226 local extra_img_options=""
227 local image_size=$*
228 local optstr=""
229 local img_name=""
230 local use_backing=0
231 local backing_file=""
232 local object_options=""
234 if [ -n "$TEST_IMG_FILE" ]; then
235 img_name=$TEST_IMG_FILE
236 else
237 img_name=$TEST_IMG
240 if [ -n "$IMGOPTS" ]; then
241 optstr=$(_optstr_add "$optstr" "$IMGOPTS")
243 if [ -n "$IMGKEYSECRET" ]; then
244 object_options="--object secret,id=keysec0,data=$IMGKEYSECRET"
245 optstr=$(_optstr_add "$optstr" "key-secret=keysec0")
248 if [ "$1" = "-b" ]; then
249 use_backing=1
250 backing_file=$2
251 image_size=$3
253 if [ \( "$IMGFMT" = "qcow2" -o "$IMGFMT" = "qed" \) -a -n "$CLUSTER_SIZE" ]; then
254 optstr=$(_optstr_add "$optstr" "cluster_size=$CLUSTER_SIZE")
257 if [ -n "$optstr" ]; then
258 extra_img_options="-o $optstr $extra_img_options"
261 if [ $IMGPROTO = "nbd" ]; then
262 _stop_nbd_server
265 # XXX(hch): have global image options?
267 if [ $use_backing = 1 ]; then
268 $QEMU_IMG create $object_options -f $IMGFMT $extra_img_options -b "$backing_file" "$img_name" $image_size 2>&1
269 else
270 $QEMU_IMG create $object_options -f $IMGFMT $extra_img_options "$img_name" $image_size 2>&1
272 ) | _filter_img_create
274 # Start an NBD server on the image file, which is what we'll be talking to
275 if [ $IMGPROTO = "nbd" ]; then
276 # Pass a sufficiently high number to -e that should be enough for all
277 # tests
278 eval "$QEMU_NBD -v -t -b 127.0.0.1 -p 10810 -f $IMGFMT -e 42 -x '' $TEST_IMG_FILE >/dev/null &"
279 sleep 1 # FIXME: qemu-nbd needs to be listening before we continue
282 # Start QNIO server on image directory for vxhs protocol
283 if [ $IMGPROTO = "vxhs" ]; then
284 eval "$QEMU_VXHS -d $TEST_DIR > /dev/null &"
285 sleep 1 # Wait for server to come up.
289 _rm_test_img()
291 local img=$1
292 if [ "$IMGFMT" = "vmdk" ]; then
293 # Remove all the extents for vmdk
294 "$QEMU_IMG" info "$img" 2>/dev/null | grep 'filename:' | cut -f 2 -d: \
295 | xargs -I {} rm -f "{}"
297 rm -f "$img"
300 _cleanup_test_img()
302 case "$IMGPROTO" in
304 nbd)
305 _stop_nbd_server
306 rm -f "$TEST_IMG_FILE"
308 vxhs)
309 if [ -f "${TEST_DIR}/qemu-vxhs.pid" ]; then
310 local QEMU_VXHS_PID
311 read QEMU_VXHS_PID < "${TEST_DIR}/qemu-vxhs.pid"
312 kill ${QEMU_VXHS_PID} >/dev/null 2>&1
313 rm -f "${TEST_DIR}/qemu-vxhs.pid"
315 rm -f "$TEST_IMG_FILE"
318 file)
319 _rm_test_img "$TEST_DIR/t.$IMGFMT"
320 _rm_test_img "$TEST_DIR/t.$IMGFMT.orig"
321 _rm_test_img "$TEST_DIR/t.$IMGFMT.base"
322 if [ -n "$SAMPLE_IMG_FILE" ]
323 then
324 rm -f "$TEST_DIR/$SAMPLE_IMG_FILE"
325 SAMPLE_IMG_FILE=
326 TEST_IMG="$ORIG_TEST_IMG"
330 rbd)
331 rbd --no-progress rm "$TEST_DIR/t.$IMGFMT" > /dev/null
334 sheepdog)
335 collie vdi delete "$TEST_DIR/t.$IMGFMT"
338 esac
341 _check_test_img()
344 if [ "$IMGOPTSSYNTAX" = "true" ]; then
345 $QEMU_IMG check $QEMU_IMG_EXTRA_ARGS "$@" "$TEST_IMG" 2>&1
346 else
347 $QEMU_IMG check "$@" -f $IMGFMT "$TEST_IMG" 2>&1
349 ) | _filter_testdir | _filter_qemu_img_check
352 _img_info()
354 if [[ "$1" == "--format-specific" ]]; then
355 local format_specific=1
356 shift
357 else
358 local format_specific=0
361 discard=0
362 regex_json_spec_start='^ *"format-specific": \{'
363 $QEMU_IMG info $QEMU_IMG_EXTRA_ARGS "$@" "$TEST_IMG" 2>&1 | \
364 sed -e "s#$REMOTE_TEST_DIR#TEST_DIR#g" \
365 -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \
366 -e "s#$TEST_DIR#TEST_DIR#g" \
367 -e "s#$IMGFMT#IMGFMT#g" \
368 -e "/^disk size:/ D" \
369 -e "/actual-size/ D" | \
370 while IFS='' read -r line; do
371 if [[ $format_specific == 1 ]]; then
372 discard=0
373 elif [[ $line == "Format specific information:" ]]; then
374 discard=1
375 elif [[ $line =~ $regex_json_spec_start ]]; then
376 discard=2
377 regex_json_spec_end="^${line%%[^ ]*}\\},? *$"
379 if [[ $discard == 0 ]]; then
380 echo "$line"
381 elif [[ $discard == 1 && ! $line ]]; then
382 echo
383 discard=0
384 elif [[ $discard == 2 && $line =~ $regex_json_spec_end ]]; then
385 discard=0
387 done
390 # bail out, setting up .notrun file
392 _notrun()
394 echo "$*" >"$OUTPUT_DIR/$seq.notrun"
395 echo "$seq not run: $*"
396 status=0
397 exit
400 # just plain bail out
402 _fail()
404 echo "$*" | tee -a "$OUTPUT_DIR/$seq.full"
405 echo "(see $seq.full for details)"
406 status=1
407 exit 1
410 # tests whether $IMGFMT is one of the supported image formats for a test
412 _supported_fmt()
414 # "generic" is suitable for most image formats. For some formats it doesn't
415 # work, however (most notably read-only formats), so they can opt out by
416 # setting IMGFMT_GENERIC to false.
417 for f; do
418 if [ "$f" = "$IMGFMT" -o "$f" = "generic" -a "$IMGFMT_GENERIC" = "true" ]; then
419 return
421 done
423 _notrun "not suitable for this image format: $IMGFMT"
426 # tests whether $IMGFMT is one of the unsupported image format for a test
428 _unsupported_fmt()
430 for f; do
431 if [ "$f" = "$IMGFMT" ]; then
432 _notrun "not suitable for this image format: $IMGFMT"
434 done
437 # tests whether $IMGPROTO is one of the supported image protocols for a test
439 _supported_proto()
441 for f; do
442 if [ "$f" = "$IMGPROTO" -o "$f" = "generic" ]; then
443 return
445 done
447 _notrun "not suitable for this image protocol: $IMGPROTO"
450 # tests whether $IMGPROTO is specified as an unsupported image protocol for a test
452 _unsupported_proto()
454 for f; do
455 if [ "$f" = "$IMGPROTO" ]; then
456 _notrun "not suitable for this image protocol: $IMGPROTO"
457 return
459 done
462 # tests whether the host OS is one of the supported OSes for a test
464 _supported_os()
466 for h
468 if [ "$h" = "$HOSTOS" ]
469 then
470 return
472 done
474 _notrun "not suitable for this OS: $HOSTOS"
477 _supported_cache_modes()
479 for mode; do
480 if [ "$mode" = "$CACHEMODE" ]; then
481 return
483 done
484 _notrun "not suitable for cache mode: $CACHEMODE"
487 _default_cache_mode()
489 if $CACHEMODE_IS_DEFAULT; then
490 CACHEMODE="$1"
491 QEMU_IO="$QEMU_IO --cache $1"
492 return
496 _unsupported_imgopts()
498 for bad_opt
500 if echo "$IMGOPTS" | grep -q 2>/dev/null "$bad_opt"
501 then
502 _notrun "not suitable for image option: $bad_opt"
504 done
507 # this test requires that a specified command (executable) exists
509 _require_command()
511 if [ "$1" = "QEMU" ]; then
512 c=$QEMU_PROG
513 elif [ "$1" = "QEMU_IMG" ]; then
514 c=$QEMU_IMG_PROG
515 elif [ "$1" = "QEMU_IO" ]; then
516 c=$QEMU_IO_PROG
517 elif [ "$1" = "QEMU_NBD" ]; then
518 c=$QEMU_NBD_PROG
519 else
520 eval c=\$$1
522 [ -x "$c" ] || _notrun "$1 utility required, skipped this test"
525 # make sure this script returns success
526 true