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/python_api/event/TestEvents.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/python_api/event/TestEvents.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py b/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py index 8a9e456f345..9c8fa978207 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py @@ -31,6 +31,7 @@ class EventAPITestCase(TestBase): @expectedFailureAll( oslist=["linux"], bugnumber="llvm.org/pr23730 Flaky, fails ~1/10 cases") + @skipIfWindows # This test will hang on windows llvm.org/pr21753 def test_listen_for_and_print_event(self): """Exercise SBEvent API.""" self.build() |