summaryrefslogtreecommitdiff
path: root/tests/genericxml2xmloutdata
diff options
context:
space:
mode:
authorMatt Coleman <mcoleman@datto.com>2020-11-23 12:39:53 -0500
committerDaniel P. Berrangé <berrange@redhat.com>2020-11-24 18:45:07 +0000
commitce8fb26a66c40bf684b82120d6f46511e3661706 (patch)
tree5e184c51f797e4c593cf37df19c490e0396800d9 /tests/genericxml2xmloutdata
parenta7a1d1f59e8ba2d8a3ed920ef595ccdfb0d8feb6 (diff)
downloadlibvirt-ce8fb26a66c40bf684b82120d6f46511e3661706.tar.gz
schema: add support for Windows file paths and device names
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Matt Coleman <matt@datto.com>
Diffstat (limited to 'tests/genericxml2xmloutdata')
-rw-r--r--tests/genericxml2xmloutdata/disk-hyperv-physical.xml23
-rw-r--r--tests/genericxml2xmloutdata/disk-hyperv-virtual.xml23
2 files changed, 46 insertions, 0 deletions
diff --git a/tests/genericxml2xmloutdata/disk-hyperv-physical.xml b/tests/genericxml2xmloutdata/disk-hyperv-physical.xml
new file mode 100644
index 0000000000..112a5081cd
--- /dev/null
+++ b/tests/genericxml2xmloutdata/disk-hyperv-physical.xml
@@ -0,0 +1,23 @@
+<domain type='hyperv'>
+ <name>test_disk-hyperv</name>
+ <uuid>deadbeef-dead-beef-dead-beefdeadbeef</uuid>
+ <memory unit='KiB'>1048576</memory>
+ <currentMemory unit='KiB'>1048576</currentMemory>
+ <vcpu placement='static'>3</vcpu>
+ <os>
+ <type arch='x86_64'>hvm</type>
+ <boot dev='hd'/>
+ </os>
+ <clock offset='utc'/>
+ <on_poweroff>destroy</on_poweroff>
+ <on_reboot>restart</on_reboot>
+ <on_crash>destroy</on_crash>
+ <devices>
+ <disk type='block' device='disk'>
+ <source dev='2'/>
+ <target dev='sdb' bus='scsi'/>
+ <address type='drive' controller='0' bus='0' target='0' unit='0'/>
+ </disk>
+ <controller type='scsi' index='0'/>
+ </devices>
+</domain>
diff --git a/tests/genericxml2xmloutdata/disk-hyperv-virtual.xml b/tests/genericxml2xmloutdata/disk-hyperv-virtual.xml
new file mode 100644
index 0000000000..dadd3318ab
--- /dev/null
+++ b/tests/genericxml2xmloutdata/disk-hyperv-virtual.xml
@@ -0,0 +1,23 @@
+<domain type='hyperv'>
+ <name>test_disk-hyperv</name>
+ <uuid>deadbeef-dead-beef-dead-beefdeadbeef</uuid>
+ <memory unit='KiB'>1048576</memory>
+ <currentMemory unit='KiB'>1048576</currentMemory>
+ <vcpu placement='static'>3</vcpu>
+ <os>
+ <type arch='x86_64'>hvm</type>
+ <boot dev='hd'/>
+ </os>
+ <clock offset='utc'/>
+ <on_poweroff>destroy</on_poweroff>
+ <on_reboot>restart</on_reboot>
+ <on_crash>destroy</on_crash>
+ <devices>
+ <disk type='file' device='disk'>
+ <source file='X:\test_disk-hyperv.vhdx'/>
+ <target dev='sda' bus='scsi'/>
+ <address type='drive' controller='0' bus='0' target='0' unit='0'/>
+ </disk>
+ <controller type='scsi' index='0'/>
+ </devices>
+</domain>