]> xenbits.xensource.com Git - people/aperard/xen-arm.git/commitdiff
tools/tests: Restrict some tests to x86 only
authorIan Campbell <ian.campbell@citrix.com>
Fri, 21 Dec 2012 17:05:38 +0000 (17:05 +0000)
committerIan Campbell <ian.campbell@citrix.com>
Fri, 21 Dec 2012 17:05:38 +0000 (17:05 +0000)
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>
tools/tests/Makefile

index cc96cd3a7feb7317b3f0a51f90da868d4707a89d..adeb120abc2cab257d078fcc3fc7abe0131ab0b3 100644 (file)
@@ -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