From bb8cef51dfe7bb59109786a0ca46ad165c39aa38 Mon Sep 17 00:00:00 2001 From: Danil Malyshev Date: Thu, 17 May 2012 21:07:47 +0000 Subject: - Added ExecutionEngine/MCJIT tests - Added HOST_ARCH to Makefile.config.in The HOST_ARCH will be used by MCJIT tests filter, because MCJIT supported only x86 and ARM architectures now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157015 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/ExecutionEngine/MCJIT/lit.local.cfg | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/ExecutionEngine/MCJIT/lit.local.cfg (limited to 'test/ExecutionEngine/MCJIT/lit.local.cfg') diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg new file mode 100644 index 0000000000..4ce788f714 --- /dev/null +++ b/test/ExecutionEngine/MCJIT/lit.local.cfg @@ -0,0 +1,20 @@ +config.suffixes = ['.ll', '.c', '.cpp'] + +def getRoot(config): + if not config.parent: + return config + return getRoot(config.parent) + +root = getRoot(config) + +targets = set(root.targets_to_build.split()) +if ('X86' in targets) | ('ARM' in targets): + config.unsupported = False +else: + config.unsupported = True + +if root.host_arch not in ['x86', 'x86_64', 'ARM']: + config.unsupported = True + +if root.host_os in ['Win32', 'Cygwin', 'MingW', 'Windows']: + config.unsupported = True -- cgit v1.2.3