qemublocktest: Drop 'network-sheepdog-qcow2' image creation test case

QEMU dropped sheepdog support for the 6.1 release. Since we use schema
validation in the image creation it would create test failures.

In this instance we just drop the test altogether as adding versioned
capabilities would be a bit too overkill for this scenario.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Peter Krempa 2021-05-17 10:33:34 +02:00
parent 0dc45670f1
commit aca69e4420
3 changed files with 0 additions and 33 deletions

View File

@ -1223,7 +1223,6 @@ mymain(void)
TEST_IMAGE_CREATE("network-gluster-qcow2", NULL); TEST_IMAGE_CREATE("network-gluster-qcow2", NULL);
TEST_IMAGE_CREATE("network-rbd-qcow2", NULL); TEST_IMAGE_CREATE("network-rbd-qcow2", NULL);
TEST_IMAGE_CREATE("network-ssh-qcow2", NULL); TEST_IMAGE_CREATE("network-ssh-qcow2", NULL);
TEST_IMAGE_CREATE("network-sheepdog-qcow2", NULL);
#define TEST_BITMAP_DETECT(testname) \ #define TEST_BITMAP_DETECT(testname) \
do { \ do { \

View File

@ -1,20 +0,0 @@
protocol:
{
"driver": "sheepdog",
"location": {
"server": {
"type": "inet",
"host": "example.com",
"port": "1234"
},
"vdi": "asdf/i.qcow2"
},
"size": 4294967296
}
format:
{
"driver": "qcow2",
"file": "0123456789ABCDEF0123456789ABCDE",
"size": 8589934590
}

View File

@ -1,12 +0,0 @@
<disk device='disk' name='vda' type='network'>
<driver type='qcow2'/>
<source protocol='sheepdog' name='asdf/i.qcow2'>
<host name='example.com' port='1234'/>
<privateData>
<nodenames>
<nodename type='storage' name='0123456789ABCDEF0123456789ABCDE'/>
<nodename type='format' name='0123456789ABCDEF0123456789ABCDE'/>
</nodenames>
</privateData>
</source>
</disk>