diff options
author | Ying Chen <chying@google.com> | 2015-05-28 21:03:26 +0000 |
---|---|---|
committer | Ying Chen <chying@google.com> | 2015-05-28 21:03:26 +0000 |
commit | 1135e709c0b5073ca9fb54eebbb852c2a697033d (patch) | |
tree | a0254630b3139fc1404661fe1455fc1e343f8fe6 | |
parent | 0b5890d411fec05e353ea5971456d442f29be7ff (diff) | |
download | bcm5719-llvm-1135e709c0b5073ca9fb54eebbb852c2a697033d.tar.gz bcm5719-llvm-1135e709c0b5073ca9fb54eebbb852c2a697033d.zip |
Skip ThreadStateTestCase.test_state_after_continue_with_dwarf on Darwin
Summary:
- This test cause Python crash randomly on darwin builder
- Tracked by bug 'llvm.org/pr23669'
Test Plan: ./dotest.py -m --executable /Users/lldb_build/testSlave/buildDir/lldb.src/build/Debug/lldb --framework /Users/lldb_build/testSlave/buildDir/lldb.src/build/Debug/LLDB.framework -A x86_64 -C clang -p TestThreadStates.py
Reviewers: chaoren, vharron
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D10053
llvm-svn: 238495
-rw-r--r-- | lldb/test/functionalities/thread/state/TestThreadStates.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/test/functionalities/thread/state/TestThreadStates.py b/lldb/test/functionalities/thread/state/TestThreadStates.py index a08028f6c97..bf02cb24718 100644 --- a/lldb/test/functionalities/thread/state/TestThreadStates.py +++ b/lldb/test/functionalities/thread/state/TestThreadStates.py @@ -37,18 +37,24 @@ class ThreadStateTestCase(TestBase): self.thread_state_after_continue_test() @dwarf_test + @skipIfDarwin # 'llvm.org/pr23669', cause Python crash randomly + @expectedFailureDarwin('llvm.org/pr23669') def test_state_after_continue_with_dwarf(self): """Test thread state after continue.""" self.buildDwarf(dictionary=self.getBuildFlags(use_cpp11=False)) self.thread_state_after_continue_test() @skipUnlessDarwin + @skipIfDarwin # 'llvm.org/pr23669', cause Python crash randomly + @expectedFailureDarwin('llvm.org/pr23669') @dsym_test def test_state_after_expression_with_dsym(self): """Test thread state after expression.""" self.buildDsym(dictionary=self.getBuildFlags(use_cpp11=False)) self.thread_state_after_continue_test() + @skipIfDarwin # 'llvm.org/pr23669', cause Python crash randomly + @expectedFailureDarwin('llvm.org/pr23669') @dwarf_test def test_state_after_expression_with_dwarf(self): """Test thread state after expression.""" |