diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-15 16:49:16 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-15 16:49:16 +0000 |
commit | 01b48676cd0951ad218d879b2bc32e06f88598eb (patch) | |
tree | facfefd4b27bb859e21120f6204870380def93a5 /llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | |
parent | d6ba93dc6eb6010b076f01317c45bee94fd925e2 (diff) | |
download | bcm5719-llvm-01b48676cd0951ad218d879b2bc32e06f88598eb.tar.gz bcm5719-llvm-01b48676cd0951ad218d879b2bc32e06f88598eb.zip |
Disable another unittest that doesn't work on arm and ppc.
llvm-svn: 84186
Diffstat (limited to 'llvm/unittests/ExecutionEngine/JIT/JITTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/JITTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp b/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp index d7aaea7134f..41abfffb34b 100644 --- a/llvm/unittests/ExecutionEngine/JIT/JITTest.cpp +++ b/llvm/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 |