[Lldb-commits] [lldb] r181902 - Disable test case that causes assertion failure on Linux
Daniel Malea
daniel.malea at intel.com
Wed May 15 10:46:17 PDT 2013
Author: dmalea
Date: Wed May 15 12:46:16 2013
New Revision: 181902
URL: http://llvm.org/viewvc/llvm-project?rev=181902&view=rev
Log:
Disable test case that causes assertion failure on Linux
- filed llvm.org/pr16016
- fixed URL for llvm.org/pr16000
Modified:
lldb/trunk/test/api/multithreaded/TestMultithreaded.py
Modified: lldb/trunk/test/api/multithreaded/TestMultithreaded.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/api/multithreaded/TestMultithreaded.py?rev=181902&r1=181901&r2=181902&view=diff
==============================================================================
--- lldb/trunk/test/api/multithreaded/TestMultithreaded.py (original)
+++ lldb/trunk/test/api/multithreaded/TestMultithreaded.py Wed May 15 12:46:16 2013
@@ -18,7 +18,7 @@ class SBBreakpointCallbackCase(TestBase)
self.buildProgram('inferior.cpp', self.inferior)
self.addTearDownHook(lambda: os.remove(self.inferior))
- @unittest2.expectedFailure # llvm.org/pr-1600: SBBreakpoint.SetCallback() does nothing
+ @unittest2.expectedFailure # llvm.org/pr16000: SBBreakpoint.SetCallback() does nothing
@skipIfi386
@skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11
def test_breakpoint_callback(self):
@@ -47,6 +47,7 @@ class SBBreakpointCallbackCase(TestBase)
@skipIfi386
@skipIfLinuxClang # buildbot clang version unable to use libstdc++ with c++11
+ @skipIfLinux # llvm.org/pr16016 assertion failure in ProcessPOSIX.cpp.
def test_sb_api_listener_resume(self):
""" Test that a process can be resumed from a non-main thread. """
self.build_and_test('driver.cpp listener_test.cpp test_listener_resume.cpp',
More information about the lldb-commits
mailing list