aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2013-05-20 07:46:06 +0000
committerRenato Golin <renato.golin@linaro.org>2013-05-20 07:46:06 +0000
commit3a408fa8789b902f6fb1d8f256f9d00dd27e9619 (patch)
tree86281fa88e622db0e6a3dc2c4492f5670beefcc2 /test/ExecutionEngine
parenta4de3f2c85a5e74e0412283693b9764b7190c766 (diff)
downloadexternal_llvm-3a408fa8789b902f6fb1d8f256f9d00dd27e9619.zip
external_llvm-3a408fa8789b902f6fb1d8f256f9d00dd27e9619.tar.gz
external_llvm-3a408fa8789b902f6fb1d8f256f9d00dd27e9619.tar.bz2
Disable remote MCJIT on pre-v6 ARM
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182235 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/MCJIT/remote/lit.local.cfg11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
new file mode 100644
index 0000000..39b2a95
--- /dev/null
+++ b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
@@ -0,0 +1,11 @@
+config.suffixes = ['.ll', '.c', '.cpp']
+
+def getRoot(config):
+ if not config.parent:
+ return config
+ return getRoot(config.parent)
+
+root = getRoot(config)
+
+if 'armv4' in root.target_triple or 'armv5' in root.target_triple:
+ config.unsupported = True