diff options
author | Vedant Kumar <vsk@apple.com> | 2018-03-19 20:50:49 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2018-03-19 20:50:49 +0000 |
commit | 206f29b8048d510c746f9dd2c702c7179d8ca93f (patch) | |
tree | 823215118277f44b91ad6d00255863c575e09724 /lldb/packages/Python | |
parent | edeeb58f2aac474f6368cb78167d824d083991fb (diff) | |
download | bcm5719-llvm-206f29b8048d510c746f9dd2c702c7179d8ca93f.tar.gz bcm5719-llvm-206f29b8048d510c746f9dd2c702c7179d8ca93f.zip |
[test] Skip flaky TestThreadStates tests on Darwin
These tests do not pass/fail consistently, so just skip them.
This is llvm.org/pr15824 & rdar://problem/28557237.
llvm-svn: 327905
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py | 6 |
1 files changed, 3 insertions, 3 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 4d010dfc17c..0cbd94e199d 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py @@ -21,9 +21,7 @@ class ThreadStateTestCase(TestBase): @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 and <rdar://problem/28557237>") + @skipIfDarwin # llvm.org/pr15824 thread states not properly maintained and <rdar://problem/28557237> @expectedFailureAll( oslist=["freebsd"], bugnumber="llvm.org/pr18190 thread states not properly maintained") @@ -58,6 +56,7 @@ class ThreadStateTestCase(TestBase): @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24668: Breakpoints not resolved correctly") + @skipIfDarwin # llvm.org/pr15824 thread states not properly maintained and <rdar://problem/28557237> def test_process_interrupt(self): """Test process interrupt.""" self.build(dictionary=self.getBuildFlags(use_cpp11=False)) @@ -68,6 +67,7 @@ class ThreadStateTestCase(TestBase): @expectedFailureAll( oslist=["windows"], bugnumber="llvm.org/pr24668: Breakpoints not resolved correctly") + @skipIfDarwin # llvm.org/pr15824 thread states not properly maintained and <rdar://problem/28557237> def test_process_state(self): """Test thread states (comprehensive).""" self.build(dictionary=self.getBuildFlags(use_cpp11=False)) |