summaryrefslogtreecommitdiff
path: root/tests/qemu-iotests/049.out
diff options
context:
space:
mode:
authorConnor Kuehl <ckuehl@redhat.com>2020-08-13 08:47:22 -0500
committerKevin Wolf <kwolf@redhat.com>2020-09-07 12:23:55 +0200
commit975a7bd2280db5a8db96a92ff0811e08431a64c7 (patch)
treed41b729e13f7b15a2733b10ea22d62fef7106644 /tests/qemu-iotests/049.out
parent7c37270b3fbe3d034ba80e488761461676e21eb4 (diff)
downloadqemu-975a7bd2280db5a8db96a92ff0811e08431a64c7.zip
block: Raise an error when backing file parameter is an empty string
Providing an empty string for the backing file parameter like so: qemu-img create -f qcow2 -b '' /tmp/foo allows the flow of control to reach and subsequently fail an assert statement because passing an empty string to bdrv_get_full_backing_filename_from_filename() simply results in NULL being returned without an error being raised. To fix this, let's check for an empty string when getting the value from the opts list. Reported-by: Attila Fazekas <afazekas@redhat.com> Fixes: https://bugzilla.redhat.com/1809553 Signed-off-by: Connor Kuehl <ckuehl@redhat.com> Message-Id: <20200813134722.802180-1-ckuehl@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/049.out')
-rw-r--r--tests/qemu-iotests/049.out5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/qemu-iotests/049.out b/tests/qemu-iotests/049.out
index a7e220830d..b1d8fd9107 100644
--- a/tests/qemu-iotests/049.out
+++ b/tests/qemu-iotests/049.out
@@ -209,4 +209,9 @@ qemu-img create -f qcow2 -o compat=0.10,lazy_refcounts=on TEST_DIR/t.qcow2 64M
Formatting 'TEST_DIR/t.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib size=67108864 compat=0.10 lazy_refcounts=on refcount_bits=16
qemu-img: TEST_DIR/t.qcow2: Lazy refcounts only supported with compatibility level 1.1 and above (use version=v3 or greater)
+== Expect error when backing file name is empty string ==
+
+qemu-img create -f qcow2 -b TEST_DIR/t.qcow2 1M
+qemu-img: TEST_DIR/t.qcow2: Expected backing file name, got empty string
+
*** done