aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2012-12-21 17:05:38 +0000
committerIan Campbell <ian.campbell@citrix.com>2012-12-21 17:05:38 +0000
commit737604dcadb70919e38f73621f1616eb9e25fbcb (patch)
tree67123d0d23c142ddbbfb808ff9a1244ec615b98a /tools/tests
parent7c9ff7aeb8541e36339c1b05f2e91fb01085eca8 (diff)
downloadxen-737604dcadb70919e38f73621f1616eb9e25fbcb.tar.gz
xen-737604dcadb70919e38f73621f1616eb9e25fbcb.tar.bz2
xen-737604dcadb70919e38f73621f1616eb9e25fbcb.zip
tools/tests: Restrict some tests to x86 only
MCE injection and x86_emulator are clearly x86 specific. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/tests')
-rw-r--r--tools/tests/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tests/Makefile b/tools/tests/Makefile
index cc96cd3a7f..adeb120abc 100644
--- a/tools/tests/Makefile
+++ b/tools/tests/Makefile
@@ -5,12 +5,12 @@ CFLAGS += $(CFLAGS_libxenctrl)
LDLIBS += $(LDLIBS_libxenctrl)
SUBDIRS-y :=
-SUBDIRS-y += mce-test
+SUBDIRS-$(CONFIG_X86) += mce-test
SUBDIRS-y += mem-sharing
ifeq ($(XEN_TARGET_ARCH),__fixme__)
SUBDIRS-y += regression
endif
-SUBDIRS-y += x86_emulator
+SUBDIRS-$(CONFIG_X86) += x86_emulator
SUBDIRS-y += xen-access
.PHONY: all clean install distclean