summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2013-12-03 13:48:28 +0000
committerRenato Golin <renato.golin@linaro.org>2013-12-03 13:48:28 +0000
commit5a10a7cccf9186789ff8591ec7139000a41bc6b6 (patch)
treee9c33921306db55b40bfe058941c3a105c62da58 /test
parentb5dd6691ca6bc1a55553a320e58055365b76d30d (diff)
downloadllvm-5a10a7cccf9186789ff8591ec7139000a41bc6b6.tar.gz
llvm-5a10a7cccf9186789ff8591ec7139000a41bc6b6.tar.bz2
llvm-5a10a7cccf9186789ff8591ec7139000a41bc6b6.tar.xz
Fix lit config for disabled MCJIT tests on ARM
Separating permanent from temporary targets, added the bug that will fix the temporary (PR18057). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196274 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/ExecutionEngine/MCJIT/remote/lit.local.cfg8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
index e811339957..23628f6181 100644
--- a/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
+++ b/test/ExecutionEngine/MCJIT/remote/lit.local.cfg
@@ -1,2 +1,8 @@
-if 'arm' in config.root.target_triple:
+if 'armv4' in config.root.target_triple or \
+ 'armv5' in config.root.target_triple:
+ config.unsupported = True
+
+# This is temporary, until Remote MCJIT works on ARM
+# See http://llvm.org/bugs/show_bug.cgi?id=18057
+if 'armv7' in config.root.target_triple:
config.unsupported = True