aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/ExecutionEngine
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2009-10-15 16:49:16 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2009-10-15 16:49:16 +0000
commita0d1f50857f0c1fe106159d0333db80c8e038c20 (patch)
treed72290d7832042e76ac7aa686150467a4b8d0f94 /unittests/ExecutionEngine
parent0522c9e121aafb968248ab057fc722d00d727e45 (diff)
downloadexternal_llvm-a0d1f50857f0c1fe106159d0333db80c8e038c20.zip
external_llvm-a0d1f50857f0c1fe106159d0333db80c8e038c20.tar.gz
external_llvm-a0d1f50857f0c1fe106159d0333db80c8e038c20.tar.bz2
Disable another unittest that doesn't work on arm and ppc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine')
-rw-r--r--unittests/ExecutionEngine/JIT/JITTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp
index d7aaea7..41abfff 100644
--- a/unittests/ExecutionEngine/JIT/JITTest.cpp
+++ b/unittests/ExecutionEngine/JIT/JITTest.cpp
@@ -221,7 +221,6 @@ TEST_F(JITTest, NonLazyCompilationStillNeedsStubs) {
F1Ptr();
}
-#endif
// Regression test for PR5162. This used to trigger an AssertingVH inside the
// JIT's Function to stub mapping.
@@ -263,6 +262,7 @@ TEST_F(JITTest, NonLazyLeaksNoStubs) {
EXPECT_EQ(Func2->getNumUses(), 0u);
Func2->eraseFromParent();
}
+#endif
// This code is copied from JITEventListenerTest, but it only runs once for all
// the tests in this directory. Everything seems fine, but that's strange