summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2011-09-03 01:08:35 +0000
committerAndrew Trick <atrick@apple.com>2011-09-03 01:08:35 +0000
commit2f5420b2259d41f828d2fadeff6fb4fce8e955db (patch)
tree4122e0756487d3e404258e66576997c592362807 /llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
parent07d9914620f413fbb821177c4073ba04f46455f4 (diff)
downloadbcm5719-llvm-2f5420b2259d41f828d2fadeff6fb4fce8e955db.tar.gz
bcm5719-llvm-2f5420b2259d41f828d2fadeff6fb4fce8e955db.zip
Exclude more arm jit failures pending PR10783.
llvm-svn: 139074
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
index 8997d39836c..91ea64aa53c 100644
--- a/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
+++ b/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp
@@ -65,6 +65,9 @@ void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
FooF2 = M2->getFunction("foo2");
}
+// ARM tests disabled pending fix for PR10783.
+#if !defined(__arm__)
+
TEST(MultiJitTest, EagerMode) {
LLVMContext Context1;
Module *M1 = 0;
@@ -160,5 +163,6 @@ TEST(MultiJitTest, JitPool) {
EXPECT_EQ((intptr_t)getPointerToNamedFunction("getPointerToNamedFunction"),
(intptr_t)&getPointerToNamedFunction);
}
+#endif // !defined(__arm__)
} // anonymous namespace
OpenPOWER on IntegriCloud