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
This commit is contained in:
Ying Chen 2015-05-28 21:03:26 +00:00
parent 0b5890d411
commit 1135e709c0
1 changed files with 6 additions and 0 deletions

View File

@ -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."""