forked from OSchip/llvm-project
Exclude more arm jit failures pending PR10783.
llvm-svn: 139074
This commit is contained in:
parent
07d9914620
commit
2f5420b225
|
|
@ -632,7 +632,6 @@ TEST_F(JITTest, AvailableExternallyFunctionIsntCompiled) {
|
||||||
EXPECT_EQ(42, func()) << "func should return 42 from the static version,"
|
EXPECT_EQ(42, func()) << "func should return 42 from the static version,"
|
||||||
<< " not 7 from the IR version.";
|
<< " not 7 from the IR version.";
|
||||||
}
|
}
|
||||||
#endif // !defined(__arm__)
|
|
||||||
|
|
||||||
TEST_F(JITTest, EscapedLazyStubStillCallable) {
|
TEST_F(JITTest, EscapedLazyStubStillCallable) {
|
||||||
TheJIT->DisableLazyCompilation(false);
|
TheJIT->DisableLazyCompilation(false);
|
||||||
|
|
@ -735,8 +734,6 @@ TEST(LazyLoadedJITTest, MaterializableAvailableExternallyFunctionIsntCompiled) {
|
||||||
<< " not 7 from the IR version.";
|
<< " not 7 from the IR version.";
|
||||||
}
|
}
|
||||||
|
|
||||||
// ARM tests disabled pending fix for PR10783.
|
|
||||||
#if !defined(__arm__)
|
|
||||||
TEST(LazyLoadedJITTest, EagerCompiledRecursionThroughGhost) {
|
TEST(LazyLoadedJITTest, EagerCompiledRecursionThroughGhost) {
|
||||||
LLVMContext Context;
|
LLVMContext Context;
|
||||||
const std::string Bitcode =
|
const std::string Bitcode =
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,9 @@ void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) {
|
||||||
FooF2 = M2->getFunction("foo2");
|
FooF2 = M2->getFunction("foo2");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ARM tests disabled pending fix for PR10783.
|
||||||
|
#if !defined(__arm__)
|
||||||
|
|
||||||
TEST(MultiJitTest, EagerMode) {
|
TEST(MultiJitTest, EagerMode) {
|
||||||
LLVMContext Context1;
|
LLVMContext Context1;
|
||||||
Module *M1 = 0;
|
Module *M1 = 0;
|
||||||
|
|
@ -160,5 +163,6 @@ TEST(MultiJitTest, JitPool) {
|
||||||
EXPECT_EQ((intptr_t)getPointerToNamedFunction("getPointerToNamedFunction"),
|
EXPECT_EQ((intptr_t)getPointerToNamedFunction("getPointerToNamedFunction"),
|
||||||
(intptr_t)&getPointerToNamedFunction);
|
(intptr_t)&getPointerToNamedFunction);
|
||||||
}
|
}
|
||||||
|
#endif // !defined(__arm__)
|
||||||
|
|
||||||
} // anonymous namespace
|
} // anonymous namespace
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue