summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/thread/state
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2016-02-10 19:53:36 +0000
committerZachary Turner <zturner@google.com>2016-02-10 19:53:36 +0000
commit362e06d7baa88f51d7712bf976d40b6021d3dc9e (patch)
tree9da74d2b9e354f5aad421e59a0b7d393c1b41553 /lldb/packages/Python/lldbsuite/test/functionalities/thread/state
parent27501e2065f70eb3a1b6bd021e2459102e1f5832 (diff)
downloadbcm5719-llvm-362e06d7baa88f51d7712bf976d40b6021d3dc9e.tar.gz
bcm5719-llvm-362e06d7baa88f51d7712bf976d40b6021d3dc9e.zip
Remove expectedFailureLinux decorator.
llvm-svn: 260422
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/thread/state')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py b/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
index b4c56e83e7a..a6a33d7af61 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
@@ -17,17 +17,17 @@ class ThreadStateTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
- @expectedFailureDarwin("rdar://15367566")
- @expectedFailureFreeBSD('llvm.org/pr15824')
- @expectedFailureLinux("llvm.org/pr15824") # thread states not properly maintained
+ @expectedFailureAll(oslist=["linux"], bugnumber="llvm.org/pr15824 thread states not properly maintained")
+ @expectedFailureAll(oslist=lldbplatformutil.getDarwinOSTriples(), bugnumber="llvm.org/pr15824 thread states not properly maintained")
+ @expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr18190 thread states not properly maintained")
def test_state_after_breakpoint(self):
"""Test thread state after breakpoint."""
self.build(dictionary=self.getBuildFlags(use_cpp11=False))
self.thread_state_after_breakpoint_test()
@skipIfDarwin # 'llvm.org/pr23669', cause Python crash randomly
- @expectedFailureDarwin('llvm.org/pr23669')
- @expectedFailureFreeBSD('llvm.org/pr15824')
+ @expectedFailureAll(oslist=lldbplatformutil.getDarwinOSTriples(), bugnumber="llvm.org/pr23669")
+ @expectedFailureAll(oslist=["freebsd"], bugnumber="llvm.org/pr15824")
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24660")
def test_state_after_continue(self):
"""Test thread state after continue."""
OpenPOWER on IntegriCloud