[libvirt] [PATCH v2 3/4] qemu: Create SPICE migration test

Michal Privoznik mprivozn at redhat.com
Fri Sep 14 17:34:52 UTC 2012


to reflect new <migration seamless='on|off'/> extension.
---
 .../qemuxml2argv-graphics-spice-migration.args     |    7 ++++
 .../qemuxml2argv-graphics-spice-migration.xml      |   36 ++++++++++++++++++++
 tests/qemuxml2argvtest.c                           |    4 ++
 3 files changed, 47 insertions(+), 0 deletions(-)
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.xml

diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.args b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.args
new file mode 100644
index 0000000..d2cdc09
--- /dev/null
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.args
@@ -0,0 +1,7 @@
+LC_ALL=C PATH=/bin HOME=/home/test USER=test LOGNAME=test QEMU_AUDIO_DRV=spice \
+/usr/bin/qemu -S -M pc -m 214 -smp 1 -nodefaults -monitor \
+unix:/tmp/test-monitor,server,nowait -no-acpi -boot c -hda \
+/dev/HostVG/QEMUGuest1 -usb -spice port=5903,tls-port=5904,addr=127.0.0.1,\
+x509-dir=/etc/pki/libvirt-spice,seamless-migration=off -vga \
+qxl -global qxl.vram_size=33554432 -device qxl,id=video1,vram_size=67108864,bus=pci.0,addr=0x4 \
+-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.xml b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.xml
new file mode 100644
index 0000000..58b41bb
--- /dev/null
+++ b/tests/qemuxml2argvdata/qemuxml2argv-graphics-spice-migration.xml
@@ -0,0 +1,36 @@
+<domain type='qemu'>
+  <name>QEMUGuest1</name>
+  <uuid>3ba2ce84-cb2f-4664-8954-c92123ace8af</uuid>
+  <memory unit='KiB'>219136</memory>
+  <currentMemory unit='KiB'>219136</currentMemory>
+  <vcpu placement='static'>1</vcpu>
+  <os>
+    <type arch='i686' machine='pc'>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>
+    <emulator>/usr/bin/qemu</emulator>
+    <disk type='block' device='disk'>
+      <source dev='/dev/HostVG/QEMUGuest1'/>
+      <target dev='hda' bus='ide'/>
+      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
+    </disk>
+    <controller type='usb' index='0'/>
+    <controller type='ide' index='0'/>
+    <input type='mouse' bus='ps2'/>
+    <graphics type='spice' port='5903' tlsPort='5904' autoport='no' listen='127.0.0.1'>
+      <migration seamless='off'/>
+    </graphics>
+    <video>
+      <model type='qxl' vram='32768' heads='1'/>
+    </video>
+    <video>
+      <model type='qxl' vram='65536' heads='1'/>
+    </video>
+    <memballoon model='virtio'/>
+  </devices>
+</domain>
diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c
index 468014c..9ae23f7 100644
--- a/tests/qemuxml2argvtest.c
+++ b/tests/qemuxml2argvtest.c
@@ -554,6 +554,10 @@ mymain(void)
             QEMU_CAPS_PCI_MULTIFUNCTION, QEMU_CAPS_USB_HUB,
             QEMU_CAPS_ICH9_USB_EHCI1, QEMU_CAPS_USB_REDIR,
             QEMU_CAPS_CHARDEV_SPICEVMC);
+    DO_TEST("graphics-spice-migration",
+            QEMU_CAPS_VGA, QEMU_CAPS_VGA_QXL,
+            QEMU_CAPS_DEVICE, QEMU_CAPS_SPICE,
+            QEMU_CAPS_SEAMLESS_MIGRATION);
 
     DO_TEST("input-usbmouse", NONE);
     DO_TEST("input-usbtablet", NONE);
-- 
1.7.8.6




More information about the libvir-list mailing list