From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39989) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f9ahW-0007lS-K5 for qemu-devel@nongnu.org; Fri, 20 Apr 2018 14:24:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f9ahR-0007pp-NG for qemu-devel@nongnu.org; Fri, 20 Apr 2018 14:24:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52848) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f9ahR-0007lu-Gq for qemu-devel@nongnu.org; Fri, 20 Apr 2018 14:23:57 -0400 From: Eduardo Habkost Date: Fri, 20 Apr 2018 15:19:50 -0300 Message-Id: <20180420181951.7252-24-ehabkost@redhat.com> In-Reply-To: <20180420181951.7252-1-ehabkost@redhat.com> References: <20180420181951.7252-1-ehabkost@redhat.com> Subject: [Qemu-devel] [RFC 23/24] avocado_qemu: Force vmimage distro List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Amador Pahim , Stefan Hajnoczi , =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= , Alistair Francis , Cleber Rosa , Fam Zheng From: Amador Pahim Not all distros will support cloudinit. Let's use Fedora, which is proven to work. Signed-off-by: Amador Pahim Signed-off-by: Eduardo Habkost --- tests/avocado/test_nec-usb-xhci.py | 2 +- tests/avocado/test_numa_hotplug.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/avocado/test_nec-usb-xhci.py b/tests/avocado/test_nec-usb-xhci.py index d3a2716eb4..c29b5ebaa1 100644 --- a/tests/avocado/test_nec-usb-xhci.py +++ b/tests/avocado/test_nec-usb-xhci.py @@ -19,7 +19,7 @@ class TestNecUsbXhci(test.QemuTest): def setUp(self): self.vm_dst = None - self.image = vmimage.get() + self.image = vmimage.get('Fedora') self.vm.add_image(self.image.path, cloudinit=True, snapshot=False) self.vm.args.extend(['-machine', 'accel=kvm']) diff --git a/tests/avocado/test_numa_hotplug.py b/tests/avocado/test_numa_hotplug.py index 1993f9b159..256ec0f49f 100644 --- a/tests/avocado/test_numa_hotplug.py +++ b/tests/avocado/test_numa_hotplug.py @@ -21,7 +21,7 @@ class TestNumaHotplug(test.QemuTest): """ def setUp(self): - self.image = vmimage.get() + self.image = vmimage.get('Fedora') self.vm.add_image(self.image.path, cloudinit=True, snapshot=False) self.vm.args.extend(['-machine', 'accel=kvm']) -- 2.14.3