diff options
author | Renato Golin <renato.golin@linaro.org> | 2014-01-15 09:09:46 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2014-01-15 09:09:46 +0000 |
commit | da3b5987ca287a63ca77d99d67dca81eb95f99fa (patch) | |
tree | 847674407129211712f84a3156a66311ff64bc21 /llvm | |
parent | f7eddfeab59b86173af99885b1b351361e9da070 (diff) | |
download | bcm5719-llvm-da3b5987ca287a63ca77d99d67dca81eb95f99fa.tar.gz bcm5719-llvm-da3b5987ca287a63ca77d99d67dca81eb95f99fa.zip |
Revert 199262 - MCJIT remote still failing on ARM
Disabling remote MCJIT tests on ARM again, as they're still failing when
self-hosting on ARM, despite all my tests. At least now we have more info
on what message it's breaking and what is going on. Investigating.
llvm-svn: 199310
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg index b161331a2be..23628f6181d 100644 --- a/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg +++ b/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg @@ -4,5 +4,5 @@ if 'armv4' in config.root.target_triple or \ # This is temporary, until Remote MCJIT works on ARM # See http://llvm.org/bugs/show_bug.cgi?id=18057 -if 'armv7' in root.host_arch: - config.unsupported = False +if 'armv7' in config.root.target_triple: + config.unsupported = True |