diff options
| author | Renato Golin <renato.golin@linaro.org> | 2013-12-03 13:48:28 +0000 |
|---|---|---|
| committer | Renato Golin <renato.golin@linaro.org> | 2013-12-03 13:48:28 +0000 |
| commit | 2b22f6ae96c28269008649bcefe172f8658acb18 (patch) | |
| tree | 2210213c5e0111a885bbe1f2d17655e7166d0e99 /llvm | |
| parent | 00dcc43b56debb6512a5a66d66bcdf2af29f772b (diff) | |
| download | bcm5719-llvm-2b22f6ae96c28269008649bcefe172f8658acb18.tar.gz bcm5719-llvm-2b22f6ae96c28269008649bcefe172f8658acb18.zip | |
Fix lit config for disabled MCJIT tests on ARM
Separating permanent from temporary targets, added the bug that
will fix the temporary (PR18057).
llvm-svn: 196274
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg b/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg index e811339957b..23628f6181d 100644 --- a/llvm/test/ExecutionEngine/MCJIT/remote/lit.local.cfg +++ b/llvm/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 |

