summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2012-11-20 22:47:44 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2012-11-20 22:47:44 +0000
commit81c4d420bfe93446ca2b167315f12bf275441683 (patch)
treeb25674c3870b038d58c1b7c7850a0d332b4f8edb
parent6b42fadfac775641b124c3eb61a094bc052a059c (diff)
downloadllvm-81c4d420bfe93446ca2b167315f12bf275441683.tar.gz
llvm-81c4d420bfe93446ca2b167315f12bf275441683.tar.bz2
llvm-81c4d420bfe93446ca2b167315f12bf275441683.tar.xz
Merge in r168364 to disable MCJIT execution engine tests on ppc32 (which doesn't currently support MCJIT).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_32@168392 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/ExecutionEngine/MCJIT/lit.local.cfg3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ExecutionEngine/MCJIT/lit.local.cfg b/test/ExecutionEngine/MCJIT/lit.local.cfg
index 7bcb9ae82c..fc29f651aa 100644
--- a/test/ExecutionEngine/MCJIT/lit.local.cfg
+++ b/test/ExecutionEngine/MCJIT/lit.local.cfg
@@ -19,3 +19,6 @@ if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']:
if root.host_os in ['Darwin']:
config.unsupported = True
+
+if 'powerpc' in root.target_triple and not 'powerpc64' in root.target_triple:
+ config.unsupported = True