On Thu, Jul 16, 2009 at 06:26:46PM +0800, Yolkfull Chow wrote: > > Signed-off-by: Yolkfull Chow <yzhou@xxxxxxxxxx> > --- > client/tests/kvm/kvm_vm.py | 11 +++++++++++ > 1 files changed, 11 insertions(+), 0 deletions(-) > > diff --git a/client/tests/kvm/kvm_vm.py b/client/tests/kvm/kvm_vm.py > index 503f636..895049e 100644 > --- a/client/tests/kvm/kvm_vm.py > +++ b/client/tests/kvm/kvm_vm.py > @@ -113,6 +113,13 @@ class VM: > self.qemu_path = qemu_path > self.image_dir = image_dir > self.iso_dir = iso_dir > + > + if params.get("uuid"): > + if params.get("uuid") == "random": > + uuid = os.popen("cat /proc/sys/kernel/random/uuid").readline() > + self.uuid = uuid.strip() > + else: > + self.uuid = params.get("uuid") Sorry, forgot to initialize self.uuid. Will resend the patch. > > > # Find available monitor filename > @@ -374,6 +381,10 @@ class VM: > # Make qemu command > qemu_command = self.make_qemu_command() > > + # Specify the system UUID > + if self.uuid: > + qemu_command += " -uuid %s" % self.uuid > + > # Is this VM supposed to accept incoming migrations? > if for_migration: > # Find available migration port > -- > 1.6.2.5 > -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html