* [PATCH] KVM-test: Support qxl and vga parameters in make_qemu_command.
@ 2011-03-02 23:28 Amos Kong
0 siblings, 0 replies; only message in thread
From: Amos Kong @ 2011-03-02 23:28 UTC (permalink / raw)
To: autotest; +Cc: kvm
The behave is difference on RHEL6.0 and RHEL5.
On RHEL5, qxl and vag are two parameters. But on RHEL6, qxl
is one option in vga.
This patch could work on RHEL5 and RHEL6 hosts.
On RHEL6, if we set qxl and vga together in tests_base.cfg,
vga will be set to qxl, no matter what you set to vga.
Signed-off-by: Feng Yang <fyang@redhat.com>
Signed-off-by: Amos Kong <akong@redhat.com>
---
client/tests/kvm/kvm_vm.py | 38 ++++++++++++++++++++++++++++++++
client/tests/kvm/tests_base.cfg.sample | 4 +++
2 files changed, 42 insertions(+), 0 deletions(-)
diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py
index 41f7491..da3142f 100755
--- a/client/tests/kvm/kvm_vm.py
+++ b/client/tests/kvm/kvm_vm.py
@@ -335,6 +335,7 @@ class VM:
if not glob.glob("/tmp/*%s" % self.instance):
break
+ self.spice_port = 8000
self.name = name
self.params = params
self.root_dir = root_dir
@@ -553,6 +554,26 @@ class VM:
def add_pcidevice(help, host):
return " -pcidevice host='%s'" % host
+ def add_spice(help, port, param):
+ if has_option(help,"spice"):
+ return " -spice port=%s,%s" % (port, param)
+ else:
+ return ""
+
+ def add_qxl_vga(help, qxl, vga, qxl_dev_nr=None):
+ str = ""
+ if has_option(help, "qxl"):
+ if qxl and qxl_dev_nr is not None:
+ str += " -qxl %s" % qxl_dev_nr
+ if has_option(help, "vga") and vga and vga != "qxl":
+ str += " -vga %s" % vga
+ elif has_option(help, "vga"):
+ if qxl:
+ str += " -vga qxl"
+ elif vga:
+ str += " -vga %s" % vga
+ return str
+
def add_kernel(help, filename):
return " -kernel '%s'" % filename
@@ -720,6 +741,19 @@ class VM:
qemu_cmd += add_sdl(help)
elif params.get("display") == "nographic":
qemu_cmd += add_nographic(help)
+ elif params.get("display") == "spice":
+ qemu_cmd += add_spice(help, self.spice_port, params.get("spice"))
+
+ qxl = ""
+ vga = ""
+ if params.get("qxl"):
+ qxl = params.get("qxl")
+ if params.get("vga"):
+ vga = params.get("vga")
+ if qxl or vga:
+ if params.get("display") == "spice":
+ qxl_dev_nr = params.get("qxl_dev_nr", None)
+ qemu_cmd += add_qxl_vga(help, qxl, vga, qxl_dev_nr)
if params.get("uuid") == "random":
qemu_cmd += add_uuid(help, vm.uuid)
@@ -845,6 +879,10 @@ class VM:
if params.get("display") == "vnc":
self.vnc_port = kvm_utils.find_free_port(5900, 6100)
+ # Find available spice port
+ if params.get("spice"):
+ self.spice_port = kvm_utils.find_free_port(8000, 8100)
+
# Find random UUID if specified 'uuid = random' in config file
if params.get("uuid") == "random":
f = open("/proc/sys/kernel/random/uuid")
diff --git a/client/tests/kvm/tests_base.cfg.sample b/client/tests/kvm/tests_base.cfg.sample
index fa64265..b6a4d88 100644
--- a/client/tests/kvm/tests_base.cfg.sample
+++ b/client/tests/kvm/tests_base.cfg.sample
@@ -40,6 +40,10 @@ shell_port = 22
display = vnc
drive_index_cd1 = 1
+qxl = on
+qxl_dev_nr = 1
+spice = disable-ticketing
+
# Monitor params
monitor_type = human
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-03-02 23:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-02 23:28 [PATCH] KVM-test: Support qxl and vga parameters in make_qemu_command Amos Kong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox