summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2012-11-01 14:28:51 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2012-11-01 14:28:51 +0000
commitb6843c28ecd44a4a7e9984a3952afe4e1739b116 (patch)
tree6a1d4160163f304cc41f759979e424997e6e521c /test
parenta5f54f14435d881b10d8eb65e19fa42af95757e9 (diff)
downloadllvm-b6843c28ecd44a4a7e9984a3952afe4e1739b116.tar.gz
llvm-b6843c28ecd44a4a7e9984a3952afe4e1739b116.tar.bz2
llvm-b6843c28ecd44a4a7e9984a3952afe4e1739b116.tar.xz
llvm/test/lit.cfg: Don't use mcjit to ppc32 yet, not ready.
Unsupported CPU type! UNREACHABLE executed at llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp:553! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167231 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/lit.cfg3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 76b182747e..79eaa23c8b 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -149,8 +149,9 @@ config.substitutions.append( ('%mcjit_triple', mcjit_triple) )
# Provide a substition for those tests that need to run the jit to obtain data
# but simply want use the currently considered most reliable jit for platform
+# FIXME: ppc32 is not ready for mcjit.
if 'arm' in config.target_triple \
- or 'powerpc' in config.target_triple:
+ or 'powerpc64' in config.target_triple:
defaultIsMCJIT = 'true'
else:
defaultIsMCJIT = 'false'