Skip to content

Commit

Permalink
Exclude more arm jit failures pending PR10783.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139074 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
atrick committed Sep 3, 2011
1 parent 2c84e96 commit 5a76f00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 0 additions & 3 deletions unittests/ExecutionEngine/JIT/JITTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,6 @@ TEST_F(JITTest, AvailableExternallyFunctionIsntCompiled) {
EXPECT_EQ(42, func()) << "func should return 42 from the static version,"
<< " not 7 from the IR version.";
}
#endif // !defined(__arm__)

TEST_F(JITTest, EscapedLazyStubStillCallable) {
TheJIT->DisableLazyCompilation(false);
Expand Down Expand Up @@ -735,8 +734,6 @@ TEST(LazyLoadedJITTest, MaterializableAvailableExternallyFunctionIsntCompiled) {
<< " not 7 from the IR version.";
}

// ARM tests disabled pending fix for PR10783.
#if !defined(__arm__)
TEST(LazyLoadedJITTest, EagerCompiledRecursionThroughGhost) {
LLVMContext Context;
const std::string Bitcode =
Expand Down
4 changes: 4 additions & 0 deletions unittests/ExecutionEngine/JIT/MultiJITTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -160,5 +163,6 @@ TEST(MultiJitTest, JitPool) {
EXPECT_EQ((intptr_t)getPointerToNamedFunction("getPointerToNamedFunction"),
(intptr_t)&getPointerToNamedFunction);
}
#endif // !defined(__arm__)

} // anonymous namespace

0 comments on commit 5a76f00

Please sign in to comment.