From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: dgilbert@redhat.com, lvivier@redhat.com, peterx@redhat.com
Subject: [Qemu-devel] [PULL 05/19] check: Only test rtl8139 when it is compiled in
Date: Wed, 22 Aug 2018 10:07:37 +0200 [thread overview]
Message-ID: <20180822080751.11307-6-quintela@redhat.com> (raw)
In-Reply-To: <20180822080751.11307-1-quintela@redhat.com>
test-file-redirector uses rtl8139 in everything except s390.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
---
tests/Makefile.include | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/tests/Makefile.include b/tests/Makefile.include
index 0a7101c0bf..bac1a7efe0 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -215,8 +215,8 @@ check-qtest-pci-y += tests/e1000-test$(EXESUF)
gcov-files-pci-y += hw/net/e1000.c
check-qtest-pci-y += tests/e1000e-test$(EXESUF)
gcov-files-pci-y += hw/net/e1000e.c hw/net/e1000e_core.c
-check-qtest-pci-y += tests/rtl8139-test$(EXESUF)
-gcov-files-pci-y += hw/net/rtl8139.c
+check-qtest-pci-$(CONFIG_RTL8139_PCI) += tests/rtl8139-test$(EXESUF)
+gcov-files-pci-$(CONFIG_RTL8139_PCI) += hw/net/rtl8139.c
check-qtest-pci-$(CONFIG_PCNET_PCI) += tests/pcnet-test$(EXESUF)
gcov-files-pci-$(CONFIG_PCNET_PCI) += hw/net/pcnet.c
gcov-files-pci-$(CONFIG_PCNET_PCI) += hw/net/pcnet-pci.c
@@ -306,7 +306,7 @@ check-qtest-i386-$(CONFIG_TPM) += tests/tpm-tis-swtpm-test$(EXESUF)
check-qtest-i386-$(CONFIG_TPM) += tests/tpm-tis-test$(EXESUF)
check-qtest-i386-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
check-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
-check-qtest-i386-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
+check-qtest-i386-$(CONFIG_RTL8139_PCI) += tests/test-filter-redirector$(EXESUF)
check-qtest-i386-y += tests/migration-test$(EXESUF)
check-qtest-i386-y += tests/test-x86-cpuid-compat$(EXESUF)
check-qtest-i386-y += tests/numa-test$(EXESUF)
@@ -356,7 +356,7 @@ gcov-files-ppc64-y += hw/usb/hcd-xhci.c
check-qtest-ppc64-y += $(check-qtest-virtio-y)
check-qtest-ppc64-$(CONFIG_SLIRP) += tests/test-netfilter$(EXESUF)
check-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-mirror$(EXESUF)
-check-qtest-ppc64-$(CONFIG_POSIX) += tests/test-filter-redirector$(EXESUF)
+check-qtest-ppc64-$(CONFIG_RTL8139_PCI) += tests/test-filter-redirector$(EXESUF)
check-qtest-ppc64-y += tests/display-vga-test$(EXESUF)
check-qtest-ppc64-y += tests/numa-test$(EXESUF)
check-qtest-ppc64-$(CONFIG_IVSHMEM) += tests/ivshmem-test$(EXESUF)
--
2.17.1
next prev parent reply other threads:[~2018-08-22 8:08 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-22 8:07 [Qemu-devel] [PULL 00/19] Be able to disable several devices Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 01/19] check: Only test vmxnet3 when it is compiled in Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 02/19] check: Only test ne2000 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 03/19] check: Only test eepro100 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 04/19] check: Only test pcnet " Juan Quintela
2018-08-22 8:07 ` Juan Quintela [this message]
2018-08-22 8:07 ` [Qemu-devel] [PULL 06/19] check: Only test es1370 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 07/19] check: Only test ac97 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 08/19] check: Only test hda " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 09/19] check: Only test ipack " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 10/19] check: Only test ioh3420 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 11/19] check: Only test i82801b11 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 12/19] check: Only test sdhci " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 13/19] check: Only test wdt_ib700 " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 14/19] check: Only test pvpanic " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 15/19] check: Only test nvme " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 16/19] check: Only test usb-ohci " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 17/19] check: Only test usb-uhci devices when they are " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 18/19] check: Only test usb-ehci when it is " Juan Quintela
2018-08-22 8:07 ` [Qemu-devel] [PULL 19/19] check: Only test tpm devices when they are " Juan Quintela
2018-08-24 14:24 ` [Qemu-devel] [PULL 00/19] Be able to disable several devices Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180822080751.11307-6-quintela@redhat.com \
--to=quintela@redhat.com \
--cc=dgilbert@redhat.com \
--cc=lvivier@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).