e73cc6a9d8
ppc64le fixes (bz #1163439)
72 lines
2.9 KiB
Diff
72 lines
2.9 KiB
Diff
From: Prerna Saxena <prerna@linux.vnet.ibm.com>
|
|
Date: Tue, 4 Nov 2014 23:02:15 +0530
|
|
Subject: [PATCH] Test: Add a testcase for PowerPC compat mode cpu
|
|
specification.
|
|
|
|
This introduces a testcase for PowerPC compat mode cpu specification.
|
|
|
|
Signed-off-by: Prerna Saxena <prerna@linux.vnet.ibm.com>
|
|
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
|
|
(cherry picked from commit 12c381114ce362e49cadb730b5faabbc150a8878)
|
|
---
|
|
.../qemuxml2argv-pseries-cpu-compat.args | 8 ++++++++
|
|
.../qemuxml2argv-pseries-cpu-compat.xml | 20 ++++++++++++++++++++
|
|
tests/qemuxml2argvtest.c | 2 ++
|
|
3 files changed, 30 insertions(+)
|
|
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.args
|
|
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.xml
|
|
|
|
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.args b/tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.args
|
|
new file mode 100644
|
|
index 0000000..64df406
|
|
--- /dev/null
|
|
+++ b/tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.args
|
|
@@ -0,0 +1,8 @@
|
|
+LC_ALL=C PATH=/bin HOME=/home/test USER=test LOGNAME=test \
|
|
+QEMU_AUDIO_DRV=none /usr/bin/qemu-system-ppc64 -S -M pseries \
|
|
+-cpu host,compat=power7 \
|
|
+-m 214 -smp 4 -nographic -nodefconfig -nodefaults \
|
|
+-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \
|
|
+-mon chardev=charmonitor,id=monitor,mode=readline -no-acpi -boot c -usb \
|
|
+-chardev pty,id=charserial0 \
|
|
+-device spapr-vty,chardev=charserial0,reg=0x30000000
|
|
diff --git a/tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.xml b/tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.xml
|
|
new file mode 100644
|
|
index 0000000..e34a8ad
|
|
--- /dev/null
|
|
+++ b/tests/qemuxml2argvdata/qemuxml2argv-pseries-cpu-compat.xml
|
|
@@ -0,0 +1,20 @@
|
|
+<domain type='kvm'>
|
|
+ <name>QEMUGuest1</name>
|
|
+ <memory unit='KiB'>219100</memory>
|
|
+ <currentMemory unit='KiB'>219100</currentMemory>
|
|
+ <vcpu placement='static'>4</vcpu>
|
|
+ <os>
|
|
+ <type arch='ppc64' machine='pseries'>hvm</type>
|
|
+ </os>
|
|
+ <cpu mode='host-model'>
|
|
+ <model>power7</model>
|
|
+ </cpu>
|
|
+ <clock offset='utc'/>
|
|
+ <devices>
|
|
+ <emulator>/usr/bin/qemu-system-ppc64</emulator>
|
|
+ <console type='pty'>
|
|
+ <address type="spapr-vio"/>
|
|
+ </console>
|
|
+ <memballoon model="none"/>
|
|
+ </devices>
|
|
+</domain>
|
|
diff --git a/tests/qemuxml2argvtest.c b/tests/qemuxml2argvtest.c
|
|
index 0e9fab9..90f053e 100644
|
|
--- a/tests/qemuxml2argvtest.c
|
|
+++ b/tests/qemuxml2argvtest.c
|
|
@@ -1305,6 +1305,8 @@ mymain(void)
|
|
QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
DO_TEST("pseries-cpu-exact", QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE,
|
|
QEMU_CAPS_NODEFCONFIG);
|
|
+ DO_TEST("pseries-cpu-compat", QEMU_CAPS_KVM, QEMU_CAPS_CPU_HOST,
|
|
+ QEMU_CAPS_CHARDEV, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG);
|
|
DO_TEST("disk-ide-drive-split",
|
|
QEMU_CAPS_DRIVE, QEMU_CAPS_DEVICE, QEMU_CAPS_NODEFCONFIG,
|
|
QEMU_CAPS_IDE_CD);
|