07977d81ec
Update to v2.1.0-rc3 OBS-URL: https://build.opensuse.org/request/show/242053 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=220
36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
From 6bcc0297f33189667a882fa2db3a7c7f064fe52b Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20F=C3=A4rber?= <afaerber@suse.de>
|
|
Date: Mon, 7 Apr 2014 16:03:08 +0200
|
|
Subject: [PATCH] tests: Don't run qom-test twice
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Commit 3687d5325 accidentally resulted in running qom-test twice
|
|
for x86_64, once directly via the wildcard, and once because x86_64
|
|
includes all the i386 qtests (which includes qom-test).
|
|
|
|
Filter out x86_64 as well as microblazeel and xtensaeb to fix this.
|
|
|
|
Cc: Peter Maydell <peter.maydell@linaro.org>
|
|
Signed-off-by: Andreas Färber <afaerber@suse.de>
|
|
---
|
|
tests/Makefile | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/Makefile b/tests/Makefile
|
|
index 4b2e1bb..db6cbc1 100644
|
|
--- a/tests/Makefile
|
|
+++ b/tests/Makefile
|
|
@@ -186,7 +186,9 @@ check-qtest-microblazeel-y = $(check-qtest-microblaze-y)
|
|
check-qtest-xtensaeb-y = $(check-qtest-xtensa-y)
|
|
|
|
# qom-test works for all sysemu architectures:
|
|
-$(foreach target,$(SYSEMU_TARGET_LIST), \
|
|
+QTEST_SYSEMU_TARGET_LIST=$(filter-out x86_64 microblazeel xtensaeb, \
|
|
+ $(SYSEMU_TARGET_LIST))
|
|
+$(foreach target,$(QTEST_SYSEMU_TARGET_LIST), \
|
|
$(eval check-qtest-$(target)-y += tests/qom-test$(EXESUF)))
|
|
|
|
check-qapi-schema-y := $(addprefix tests/qapi-schema/, \
|