From nobody Tue Oct 28 23:09:53 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1513591792860153.72391995920225; Mon, 18 Dec 2017 02:09:52 -0800 (PST) Received: from localhost ([::1]:57631 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQsMm-0000RZ-Oj for importer@patchew.org; Mon, 18 Dec 2017 05:09:48 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34454) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eQsHM-0004V3-VW for qemu-devel@nongnu.org; Mon, 18 Dec 2017 05:04:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eQsHM-0001La-98 for qemu-devel@nongnu.org; Mon, 18 Dec 2017 05:04:12 -0500 Received: from ozlabs.org ([2401:3900:2:1::2]:58159) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eQsHL-0001JN-UQ; Mon, 18 Dec 2017 05:04:12 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id 3z0c7s2mBsz9sNV; Mon, 18 Dec 2017 21:04:08 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1513591449; bh=/HQzVIOvv2Oc0mOVEcJH1+CR8ZJ7P+1Brv+t7Dh3Kbo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KPY4z/gvbg/9FxhZFN9kiC9HhvIBTAu4ry7M5aDA/WLprDI2uPl3RUARITVgHGKyt dBJpp58lsGNy+sMhLB4+bnfqXIuJV8gMkamRwMIUzg/pxq7cvYFyXmr/w3A76Ur5eo sbChmRRtGpCv/n+Xb+mjrpxHo1exV03kH7mgL9rA= From: David Gibson To: mst@redhat.com Date: Mon, 18 Dec 2017 21:04:04 +1100 Message-Id: <20171218100404.4427-5-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20171218100404.4427-1-david@gibson.dropbear.id.au> References: <20171218100404.4427-1-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2401:3900:2:1::2 Subject: [Qemu-devel] [PATCHv2 4/4] tests/pxe-test: Add some extra tests X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: thuth@redhat.com, qemu-ppc@nongnu.org, qemu-devel@nongnu.org, David Gibson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZohoMail: RDKM_2 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Previously virtio-net was only tested for ppc64 in "slow" mode. That doesn't make much sense since virtio-net is used much more often in practice than the spapr-vlan device which was tested always. So, move virtio-net to always be tested on ppc64. We had no tests at all for the q35 machine, which doesn't seem wise given its increasing prominence. Add a couple of tests for it, including testing the newer e1000e adapter. Signed-off-by: David Gibson Reviewed-by: Thomas Huth --- tests/pxe-test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/pxe-test.c b/tests/pxe-test.c index 18e02c246c..009a82bb97 100644 --- a/tests/pxe-test.c +++ b/tests/pxe-test.c @@ -31,6 +31,8 @@ typedef struct testdef { static testdef_t x86_tests[] =3D { { "pc", "e1000" }, { "pc", "virtio-net-pci" }, + { "q35", "e1000e" }, + { "q35", "virtio-net-pci", }, { NULL }, }; =20 @@ -44,11 +46,11 @@ static testdef_t x86_tests_slow[] =3D { =20 static testdef_t ppc64_tests[] =3D { { "pseries", "spapr-vlan" }, + { "pseries", "virtio-net-pci", }, { NULL }, }; =20 static testdef_t ppc64_tests_slow[] =3D { - { "pseries", "virtio-net-pci", }, { "pseries", "e1000" }, { NULL }, }; --=20 2.14.3