diff options
| author | Pavel Labath <labath@google.com> | 2015-12-01 17:59:56 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2015-12-01 17:59:56 +0000 |
| commit | 00fea6362739271e3fc76854f12a5f26a292c082 (patch) | |
| tree | 0f8b2e1f12d01deddd286dc0e8470a6900bf7b35 /lldb/packages/Python/lldbsuite/test/functionalities | |
| parent | b8bfd25239a68b8cf99af4d04796e90027cdca2e (diff) | |
| download | bcm5719-llvm-00fea6362739271e3fc76854f12a5f26a292c082.tar.gz bcm5719-llvm-00fea6362739271e3fc76854f12a5f26a292c082.zip | |
Revert "Fix race during process interruption"
The android buildbot gets quite flaky after this change. I'm reverting it while I investigate.
llvm-svn: 254430
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities')
| -rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py | 4 |
1 files changed, 1 insertions, 3 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 693c0a70fd6..87b5cffac6e 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py @@ -20,6 +20,7 @@ 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() @@ -51,9 +52,6 @@ class AttachResumeTestCase(TestBase): self.runCmd("process interrupt") lldbutil.expect_state_changes(self, listener, [lldb.eStateStopped]) - # Second interrupt should have no effect. - self.expect("process interrupt", patterns=["Process is not running"], error=True) - # check that this breakpoint is auto-cleared on detach (r204752) self.runCmd("br set -f main.cpp -l %u" % (line_number('main.cpp', '// Set breakpoint here'))) |

