summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/lit.local.cfg
diff options
context:
space:
mode:
authorDanil Malyshev <dmalyshev@accesssoftek.com>2012-05-17 21:07:47 +0000
committerDanil Malyshev <dmalyshev@accesssoftek.com>2012-05-17 21:07:47 +0000
commitbb8cef51dfe7bb59109786a0ca46ad165c39aa38 (patch)
tree47107748cff082496775ef833af69b4cc385cc19 /test/ExecutionEngine/MCJIT/lit.local.cfg
parent9133783d5483e38b16af6c10df7a8bbe655d3446 (diff)
downloadllvm-bb8cef51dfe7bb59109786a0ca46ad165c39aa38.tar.gz
llvm-bb8cef51dfe7bb59109786a0ca46ad165c39aa38.tar.bz2
llvm-bb8cef51dfe7bb59109786a0ca46ad165c39aa38.tar.xz
- 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
Diffstat (limited to 'test/ExecutionEngine/MCJIT/lit.local.cfg')
-rw-r--r--test/ExecutionEngine/MCJIT/lit.local.cfg20
1 files changed, 20 insertions, 0 deletions
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