[Lldb-commits] [lldb] r193843 - This only fails on Darwin ; thanks Jim for pointing that out
Enrico Granata
egranata at apple.com
Thu Oct 31 17:57:53 PDT 2013
Author: enrico
Date: Thu Oct 31 19:57:53 2013
New Revision: 193843
URL: http://llvm.org/viewvc/llvm-project?rev=193843&view=rev
Log:
This only fails on Darwin ; thanks Jim for pointing that out
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=193843&r1=193842&r2=193843&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/state/TestThreadStates.py (original)
+++ lldb/trunk/test/functionalities/thread/state/TestThreadStates.py Thu Oct 31 19:57:53 2013
@@ -14,7 +14,7 @@ class ThreadStateTestCase(TestBase):
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
@dsym_test
- @unittest2.expectedFailure("rdar://15367566")
+ @expectedFailureDarwin("rdar://15367566")
def test_state_after_breakpoint_with_dsym(self):
"""Test thread state after breakpoint."""
self.buildDsym(dictionary=self.getBuildFlags(use_cpp11=False))
@@ -22,7 +22,7 @@ class ThreadStateTestCase(TestBase):
@expectedFailureFreeBSD('llvm.org/pr15824')
@dwarf_test
- @unittest2.expectedFailure("rdar://15367566")
+ @expectedFailureDarwin("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