diff options
author | Andrew Trick <atrick@apple.com> | 2011-09-03 01:08:35 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-09-03 01:08:35 +0000 |
commit | 5a76f00108a3413cff7aebd30efba02ba965b388 (patch) | |
tree | 649647014364e165835d2ee3d3a11fbdee99d878 /unittests/ExecutionEngine/JIT/MultiJITTest.cpp | |
parent | 2c84e96d3e1b73e16c183557a97fe056eeaacbb0 (diff) |
Exclude more arm jit failures pending PR10783.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139074 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine/JIT/MultiJITTest.cpp')
-rw-r--r-- | unittests/ExecutionEngine/JIT/MultiJITTest.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/unittests/ExecutionEngine/JIT/MultiJITTest.cpp b/unittests/ExecutionEngine/JIT/MultiJITTest.cpp index 8997d39836..91ea64aa53 100644 --- a/unittests/ExecutionEngine/JIT/MultiJITTest.cpp +++ b/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 |