From: Roger Pau Monne Date: Mon, 2 Jul 2018 08:28:24 +0000 (+0200) Subject: tests: disable x86 emulator test harness when using clang X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3652 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=150003f8115f8d592f8d7733c67590aee802797a;p=xen.git tests: disable x86 emulator test harness when using clang clang is not capable of building the x86 emulator test harness, so disconnect it from the clang build until it can be fixed. Signed-off-by: Roger Pau Monné Acked-by: Wei Liu --- diff --git a/tools/tests/Makefile b/tools/tests/Makefile index 26c46b4915..a9fc50d789 100644 --- a/tools/tests/Makefile +++ b/tools/tests/Makefile @@ -10,7 +10,9 @@ SUBDIRS-y += mem-sharing ifeq ($(XEN_TARGET_ARCH),__fixme__) SUBDIRS-y += regression endif +ifneq ($(clang),y) SUBDIRS-$(CONFIG_X86) += x86_emulator +endif SUBDIRS-y += xen-access SUBDIRS-y += xenstore SUBDIRS-y += depriv