mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
b54af513d6
Formats supporting backing chain such as qed, vmdk, don't have any other parameters than the backing store and 'qcow' has only encryption params which will be tested extra. Add this test case so they are covered since any further test cases will mainly care about 'qcow2' and 'raw'. The top level disk image would generate the following '-drive' cmdline: -drive file=/var/lib/libvirt/images/a,format=qed,if=none,id=drive-dummy -device virtio-blk-pci,scsi=off,drive=drive-dummy,id=dummy Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
47 lines
1.4 KiB
XML
47 lines
1.4 KiB
XML
<disk type='file' device='disk'>
|
|
<driver name='qemu' type='qed'/>
|
|
<source file='/var/lib/libvirt/images/a'>
|
|
<privateData>
|
|
<nodenames>
|
|
<nodename type='storage' name='node-a-s'/>
|
|
<nodename type='format' name='node-a-f'/>
|
|
</nodenames>
|
|
</privateData>
|
|
</source>
|
|
<backingStore type='file' index='1'>
|
|
<format type='qcow'/>
|
|
<source file='/var/lib/libvirt/images/b'>
|
|
<privateData>
|
|
<nodenames>
|
|
<nodename type='storage' name='node-b-s'/>
|
|
<nodename type='format' name='node-b-f'/>
|
|
</nodenames>
|
|
</privateData>
|
|
</source>
|
|
<backingStore type='file' index='2'>
|
|
<format type='vmdk'/>
|
|
<source file='/var/lib/libvirt/images/c'>
|
|
<privateData>
|
|
<nodenames>
|
|
<nodename type='storage' name='node-c-s'/>
|
|
<nodename type='format' name='node-c-f'/>
|
|
</nodenames>
|
|
</privateData>
|
|
</source>
|
|
<backingStore type='file' index='3'>
|
|
<format type='raw'/>
|
|
<source file='/var/lib/libvirt/images/d'>
|
|
<privateData>
|
|
<nodenames>
|
|
<nodename type='storage' name='node-d-s'/>
|
|
<nodename type='format' name='node-d-f'/>
|
|
</nodenames>
|
|
</privateData>
|
|
</source>
|
|
<backingStore/>
|
|
</backingStore>
|
|
</backingStore>
|
|
</backingStore>
|
|
<target dev='vda'/>
|
|
</disk>
|