[Lldb-commits] [lldb] r193830 - Thread::SetState() is not being called upon hitting the breakpoint

Enrico Granata egranata at apple.com
Thu Oct 31 16:36:47 PDT 2013


Author: enrico
Date: Thu Oct 31 18:36:47 2013
New Revision: 193830

URL: http://llvm.org/viewvc/llvm-project?rev=193830&view=rev
Log:
Thread::SetState() is not being called upon hitting the breakpoint
Given that, this test will never pass
Marking as expected failure pending a fix


Modified:
    lldb/trunk/test/functionalities/thread/state/TestThreadStates.py

Modified: lldb/trunk/test/functionalities/thread/state/TestThreadStates.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/state/TestThreadStates.py?rev=193830&r1=193829&r2=193830&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/state/TestThreadStates.py (original)
+++ lldb/trunk/test/functionalities/thread/state/TestThreadStates.py Thu Oct 31 18:36:47 2013
@@ -14,6 +14,7 @@ class ThreadStateTestCase(TestBase):
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dsym_test
+    @unittest2.expectedFailure("rdar://15367566")
     def test_state_after_breakpoint_with_dsym(self):
         """Test thread state after breakpoint."""
         self.buildDsym(dictionary=self.getBuildFlags(use_cpp11=False))
@@ -21,6 +22,7 @@ class ThreadStateTestCase(TestBase):
 
     @expectedFailureFreeBSD('llvm.org/pr15824')
     @dwarf_test
+    @unittest2.expectedFailure("rdar://15367566")
     def test_state_after_breakpoint_with_dwarf(self):
         """Test thread state after breakpoint."""
         self.buildDwarf(dictionary=self.getBuildFlags(use_cpp11=False))





More information about the lldb-commits mailing list