diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2017-09-12 16:44:57 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2017-10-06 16:28:58 +0200 |
commit | 8f4dcaba9bed36d067f2f2da1e2ceb9d1b50f2b2 (patch) | |
tree | 9994a0a4f6025a9002fbe81ba1d183e4646d4f8d /tests/qemu-iotests/common | |
parent | cce293a29459e1fd5f74e55d87dc9c25991da578 (diff) | |
download | qemu-8f4dcaba9bed36d067f2f2da1e2ceb9d1b50f2b2.zip qemu-8f4dcaba9bed36d067f2f2da1e2ceb9d1b50f2b2.tar.gz qemu-8f4dcaba9bed36d067f2f2da1e2ceb9d1b50f2b2.tar.bz2 |
qemu-iotests: fix uninitialized variable
The variable is used in "common" but defined only after the file
is sourced.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/common')
-rw-r--r-- | tests/qemu-iotests/common | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/qemu-iotests/common b/tests/qemu-iotests/common index ee313af..365d3c4 100644 --- a/tests/qemu-iotests/common +++ b/tests/qemu-iotests/common @@ -67,6 +67,8 @@ sortme=false expunge=true have_test_arg=false cachemode=false + +tmp="${TEST_DIR}"/$$ rm -f $tmp.list $tmp.tmp $tmp.sed export IMGFMT=raw |