Disable the MCJIT tests on 32 bit darwin.
authorRafael Espindola <rafael.espindola@gmail.com>
Mon, 29 Apr 2013 21:09:32 +0000 (21:09 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Mon, 29 Apr 2013 21:09:32 +0000 (21:09 +0000)
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

test/ExecutionEngine/MCJIT/lit.local.cfg

index 7bf401b7d43c2877d937010291a7f01c4bd76164..363028671c9f9bf01c72d00f8da509ef2233ccaa 100644 (file)
@@ -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