diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2012-10-31 16:18:02 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2012-10-31 16:18:02 +0000 |
commit | 1caa6f9575abe3dc0d0243292c8ea3fd2f8336f2 (patch) | |
tree | d8cb7751bea1b5346f187cde21c08321946c1554 /llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp | |
parent | b71f72aa82415d8305b3c4decc0c0f42caf1a51e (diff) | |
download | bcm5719-llvm-1caa6f9575abe3dc0d0243292c8ea3fd2f8336f2.tar.gz bcm5719-llvm-1caa6f9575abe3dc0d0243292c8ea3fd2f8336f2.zip |
Disable all old-JIT unit tests on PowerPC.
These tests were all failing since the old JIT doesn't work
for PowerPC (any more), and there are no plans to attempt to
fix it again (instead, work focuses on MCJIT).
llvm-svn: 167133
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp index 5b99d5b676e..4a22e2f641e 100644 --- a/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp +++ b/llvm/unittests/ExecutionEngine/JIT/MultiJITTest.cpp @@ -65,8 +65,8 @@ void createModule2(LLVMContext &Context2, Module *&M2, Function *&FooF2) { FooF2 = M2->getFunction("foo2"); } -// ARM tests disabled pending fix for PR10783. -#if !defined(__arm__) +// ARM and PowerPC tests disabled pending fix for PR10783. +#if !defined(__arm__) && !defined(__powerpc__) TEST(MultiJitTest, EagerMode) { LLVMContext Context1; @@ -176,6 +176,6 @@ TEST(MultiJitTest, JitPool) { #endif EXPECT_TRUE(sa == fa); } -#endif // !defined(__arm__) +#endif // !defined(__arm__) && !defined(__powerpc__) } // anonymous namespace |