diff options
author | Stella Stamenova <stilis@microsoft.com> | 2018-08-02 21:26:19 +0000 |
---|---|---|
committer | Stella Stamenova <stilis@microsoft.com> | 2018-08-02 21:26:19 +0000 |
commit | 0faca0f09f43369ab7132f884d4f54873f54a168 (patch) | |
tree | 3993dce2ef092d57e336991c8c8ffba0789c43a9 /lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py | |
parent | db3e54436ebdda3deb4efc297c1c9a0fd0a03222 (diff) | |
download | bcm5719-llvm-0faca0f09f43369ab7132f884d4f54873f54a168.tar.gz bcm5719-llvm-0faca0f09f43369ab7132f884d4f54873f54a168.zip |
[lldbsuite, windows] Mark tests as XFAIL on Windows or skip them
Summary:
1) Several tests that are flakey on windows fail the run even if they are marked as expected to be flakey. This is because they fail frequently enough that even a retry won't help
2) Skip several tests on Windows that will occasionally hang rather than failing or exiting. This is causing the entire test suite to hang
Reviewers: asmith, labath, zturner
Reviewed By: zturner
Differential Revision: https://reviews.llvm.org/D50198
llvm-svn: 338769
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py | 2 |
1 files changed, 1 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 ad87796766c..754acade015 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py @@ -21,7 +21,7 @@ class AttachResumeTestCase(TestBase): @skipIfRemote @expectedFailureAll(oslist=['freebsd'], bugnumber='llvm.org/pr19310') - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778") + @skipIfWindows # llvm.org/pr24778, llvm.org/pr21753 def test_attach_continue_interrupt_detach(self): """Test attach/continue/interrupt/detach""" self.build() |