diff options
author | Pavel Labath <labath@google.com> | 2015-11-03 16:05:18 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-11-03 16:05:18 +0000 |
commit | 862432c90e25f0901b77aff92cc6e48acd4b212b (patch) | |
tree | 96b8afbbfb52068ef678374e73426b10f35a9511 /lldb/packages/Python/lldbsuite/test/functionalities | |
parent | 53f8a53fb6aee4cfea0bce114973f0964cb9c255 (diff) | |
download | bcm5719-llvm-862432c90e25f0901b77aff92cc6e48acd4b212b.tar.gz bcm5719-llvm-862432c90e25f0901b77aff92cc6e48acd4b212b.zip |
Fix race during process detach
Summary:
The code which was preventing the usage of the OS plugin while detach is in
progress also prevented us to update the thread list correctly. This resulted
in an empty thread list, which confused the detaching logic. Change the
condition do only do what it says (disable the usage of the OS plugin).
Reviewers: clayborg, jingham
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D14201
llvm-svn: 251932
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py b/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py index 2d4ac2d8d00..84c2e36e28c 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py @@ -20,7 +20,6 @@ class AttachResumeTestCase(TestBase): @skipIfRemote @expectedFailureFreeBSD('llvm.org/pr19310') @expectedFailureWindows("llvm.org/pr24778") - @expectedFlakeyLinux('llvm.org/pr19310') def test_attach_continue_interrupt_detach(self): """Test attach/continue/interrupt/detach""" self.build() |