From nobody Wed Nov 5 18:30:56 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; 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; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1537347565950762.0185957222667; Wed, 19 Sep 2018 01:59:25 -0700 (PDT) Received: from localhost ([::1]:44326 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g2YKT-0007BF-1Y for importer@patchew.org; Wed, 19 Sep 2018 04:59:25 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g2YJa-0006s8-6S for qemu-devel@nongnu.org; Wed, 19 Sep 2018 04:58:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g2YJW-0001TX-Tp for qemu-devel@nongnu.org; Wed, 19 Sep 2018 04:58:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39420) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g2YJW-0001Sr-MC for qemu-devel@nongnu.org; Wed, 19 Sep 2018 04:58:26 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BBE311E2D5 for ; Wed, 19 Sep 2018 08:58:25 +0000 (UTC) Received: from thuth.com (ovpn-117-73.ams2.redhat.com [10.36.117.73]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9D40785A3A; Wed, 19 Sep 2018 08:58:24 +0000 (UTC) From: Thomas Huth To: qemu-devel@nongnu.org, Juan Quintela Date: Wed, 19 Sep 2018 10:58:20 +0200 Message-Id: <1537347500-32115-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Wed, 19 Sep 2018 08:58:25 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] tests/Makefile: Re-enable the endianness-, wdt_ib700- and the vmxnet3-test 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: Laurent Vivier , Paolo Bonzini Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RDMRC_1 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Recent clean-ups moved these tests directly to the check-qtest-y variable, but this variable gets completely overwritten at the end of the Makefile by: check-qtest-y=3D$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y)) So the endianness-, wdt_ib700- and the vmxnet3-test are currently not run anymore. We've got to add them to check-qtest-generic-y instead to get them included again (vmxnet3 is added to check-qtest-i386-y instead since that test only makes sense on x86). While we're at it, also move some other separated check-qtest-generic-y lines (with the machine-none-test, qom-test and test-hmp) to the block of the other generic test lines. Signed-off-by: Thomas Huth Reviewed-by: Philippe Mathieu-Daud=C3=A9 --- tests/Makefile.include | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/tests/Makefile.include b/tests/Makefile.include index 87c81d1..4669c81 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -184,10 +184,15 @@ check-block-$(CONFIG_POSIX) +=3D tests/qemu-iotests-q= uick.sh check-qtest-generic-y =3D tests/qmp-test$(EXESUF) gcov-files-generic-y =3D monitor.c qapi/qmp-dispatch.c check-qtest-generic-y +=3D tests/qmp-cmd-test$(EXESUF) - check-qtest-generic-y +=3D tests/device-introspect-test$(EXESUF) gcov-files-generic-y =3D qdev-monitor.c qmp.c check-qtest-generic-y +=3D tests/cdrom-test$(EXESUF) +check-qtest-generic-y +=3D tests/machine-none-test$(EXESUF) +check-qtest-generic-y +=3D tests/qom-test$(EXESUF) +check-qtest-generic-y +=3D tests/test-hmp$(EXESUF) +check-qtest-generic-$(CONFIG_ISA_TESTDEV) +=3D tests/endianness-test$(EXES= UF) +check-qtest-generic-$(CONFIG_WDT_IB700) +=3D tests/wdt_ib700-test$(EXESUF) +gcov-files-generic-$(CONFIG_WDT_IB700) +=3D hw/watchdog/watchdog.c hw/watc= hdog/wdt_ib700.c =20 gcov-files-ipack-y +=3D hw/ipack/ipack.c check-qtest-ipack-y +=3D tests/ipoctal232-test$(EXESUF) @@ -255,12 +260,9 @@ check-qtest-pci-$(CONFIG_IVSHMEM_DEVICE) +=3D tests/iv= shmem-test$(EXESUF) gcov-files-pci-$(CONFIG_IVSHMEM_DEVICE) +=3D hw/misc/ivshmem.c check-qtest-pci-y +=3D tests/megasas-test$(EXESUF) gcov-files-pci-y +=3D hw/scsi/megasas.c -check-qtest-$(CONFIG_VMXNET3_PCI) +=3D tests/vmxnet3-test$(EXESUF) -gcov-files-$(CONFIG_VMXNET3_PCI) +=3D hw/net/vmxnet3.c -check-qtest-$(CONFIG_ISA_TESTDEV) =3D tests/endianness-test$(EXESUF) -check-qtest-$(CONFIG_WDT_IB700) +=3D tests/wdt_ib700-test$(EXESUF) -gcov-files-$(CONFIG_WDT_IB700) +=3D hw/watchdog/watchdog.c hw/watchdog/wdt= _ib700.c =20 +check-qtest-i386-$(CONFIG_VMXNET3_PCI) +=3D tests/vmxnet3-test$(EXESUF) +gcov-files-i386-$(CONFIG_VMXNET3_PCI) +=3D hw/net/vmxnet3.c check-qtest-i386-y +=3D tests/fdc-test$(EXESUF) gcov-files-i386-y =3D hw/block/fdc.c check-qtest-i386-y +=3D tests/ide-test$(EXESUF) @@ -404,10 +406,6 @@ check-qtest-s390x-y +=3D tests/drive_del-test$(EXESUF) check-qtest-s390x-y +=3D tests/virtio-ccw-test$(EXESUF) check-qtest-s390x-y +=3D tests/cpu-plug-test$(EXESUF) =20 -check-qtest-generic-y +=3D tests/machine-none-test$(EXESUF) -check-qtest-generic-y +=3D tests/qom-test$(EXESUF) -check-qtest-generic-y +=3D tests/test-hmp$(EXESUF) - qapi-schema +=3D alternate-any.json qapi-schema +=3D alternate-array.json qapi-schema +=3D alternate-base.json --=20 1.8.3.1