[libvirt] [PATCH 6/6] test: add qemuxml2argv disk-scsi-uas testcase

Guannan Ren gren at redhat.com
Mon Jan 14 09:04:25 UTC 2013


---
 .../qemuxml2argv-disk-scsi-uas.args                | 10 +++++++
 .../qemuxml2argv-disk-scsi-uas.xml                 | 34 ++++++++++++++++++++++
 tests/qemuxml2argvtest.c                           |  3 ++
 3 files changed, 47 insertions(+)
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.xml

diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.args b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.args
new file mode 100644
index 0000000..c2d2743
--- /dev/null
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.args
@@ -0,0 +1,10 @@
+LC_ALL=C PATH=/bin HOME=/home/test USER=test LOGNAME=test \
+/usr/bin/qemu -S -M pc -m 214 -smp 1 -nographic -nodefconfig -nodefaults \
+-monitor unix:/tmp/test-monitor,server,nowait -no-acpi -boot c \
+-device usb-ehci,id=usb,bus=pci.0,addr=0x3 \
+-device usb-uas,id=scsi0,bus=usb.0,port=1 \
+-drive file=/dev/HostVG/QEMUGuest1,if=none,id=drive-ide0-0-0 \
+-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
+-drive file=/tmp/scsidisk.img,if=none,id=drive-scsi0-0-0-0 \
+-device scsi-disk,bus=scsi0.0,channel=0,scsi-id=0,lun=0,drive=drive-scsi0-0-0-0,id=scsi0-0-0-0 \
+-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x4
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.xml b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.xml
new file mode 100644
index 0000000..d285503
--- /dev/null
+++ b/tests/qemuxml2argvdata/qemuxml2argv-disk-scsi-uas.xml
@@ -0,0 +1,34 @@
+<domain type='qemu'>
+  <name>QEMUGuest1</name>
+  <uuid>c7a5fdbd-edaf-9455-926a-d65c16db1809</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>
+    <disk type='file' device='disk'>
+      <source file='/tmp/scsidisk.img'/>
+      <target dev='sda' bus='scsi'/>
+      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
+    </disk>
+    <controller type='usb' index='0' model='ehci'/>
+    <controller type='ide' index='0'/>
+    <controller type='scsi' index='0' model='usb-scsi'>
+      <address type='usb' bus='0' port='1'/>
+    </controller>
+    <memballoon model='virtio'/>
+  </devices>
+</domain>
diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c
index 31ed116..ceab6b6 100644
--- a/tests/qemuxml2argvtest.c
+++ b/tests/qemuxml2argvtest.c
@@ -509,6 +509,9 @@ mymain(void)
     DO_TEST("disk-scsi-virtio-scsi",
             QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG,
             QEMU_CAPS_VIRTIO_SCSI_PCI);
+    DO_TEST("disk-scsi-uas",
+            QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG,
+            QEMU_CAPS_USB_EHCI, QEMU_CAPS_DEVICE_USB_UAS);
     DO_TEST("disk-sata-device",
             QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE,
             QEMU_CAPS_NODEFCONFIG, QEMU_CAPS_ICH9_AHCI);
-- 
1.7.11.4




More information about the libvir-list mailing list