From d15f3b188bf728e0e7bff64163e29dfbee030965 Mon Sep 17 00:00:00 2001 From: Stella Stamenova Date: Tue, 5 Mar 2019 21:03:36 +0000 Subject: [PATCH] [lldbsuite, windows] Skip the TestEvents tests on Windows These tests are flakey on Windows and recently they have started failing AND also hanging the whole suite when they fail. llvm-svn: 355443 --- .../Python/lldbsuite/test/python_api/event/TestEvents.py | 3 +++ 1 file changed, 3 insertions(+) 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 f5d143fbd40b..538a42e96cd8 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 is flakey on Windows AND when it fails, it hangs: llvm.org/pr38373 def test_listen_for_and_print_event(self): """Exercise SBEvent API.""" self.build() @@ -119,6 +120,7 @@ class EventAPITestCase(TestBase): @add_test_categories(['pyapi']) @expectedFlakeyLinux("llvm.org/pr23730") # Flaky, fails ~1/100 cases + @skipIfWindows # This is flakey on Windows AND when it fails, it hangs: llvm.org/pr38373 def test_wait_for_event(self): """Exercise SBListener.WaitForEvent() API.""" self.build() @@ -197,6 +199,7 @@ class EventAPITestCase(TestBase): @expectedFailureAll( oslist=["linux"], bugnumber="llvm.org/pr23617 Flaky, fails ~1/10 cases") + @skipIfWindows # This is flakey on Windows AND when it fails, it hangs: llvm.org/pr38373 def test_add_listener_to_broadcaster(self): """Exercise some SBBroadcaster APIs.""" self.build()