summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/MCJIT/lit.local.cfg
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-04-29 21:09:32 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-04-29 21:09:32 +0000
commit8a905e7e34e35804d48c8043c4d388b9ef057a08 (patch)
tree649ea88b50155cb2ba11f4d76340bd8c0cf75810 /test/ExecutionEngine/MCJIT/lit.local.cfg
parent233c40b47b663b8d0cfb0280abbb9e8ddb16271d (diff)
downloadllvm-8a905e7e34e35804d48c8043c4d388b9ef057a08.tar.gz
llvm-8a905e7e34e35804d48c8043c4d388b9ef057a08.tar.bz2
llvm-8a905e7e34e35804d48c8043c4d388b9ef057a08.tar.xz
Disable the MCJIT tests on 32 bit darwin.
I recently enabled them on 32 and 64 bit darwin, but it looks like 32 bit is still fairly broken. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180730 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/MCJIT/lit.local.cfg')
-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 7bf401b7d4..363028671c 100644
--- a/test/ExecutionEngine/MCJIT/lit.local.cfg
+++ b/test/ExecutionEngine/MCJIT/lit.local.cfg
@@ -17,5 +17,8 @@ else:
if root.host_arch not in ['i386', 'x86', 'x86_64', 'ARM', 'Mips', 'PowerPC']:
config.unsupported = True
+if 'i386-apple-darwin' in root.target_triple:
+ config.unsupported = True
+
if 'powerpc' in root.target_triple and not 'powerpc64' in root.target_triple:
config.unsupported = True