[Lldb-commits] [lldb] r349781 - [lldbsuite] Un-xfail TestEvents on Windows

Stella Stamenova via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 20 10:00:21 PST 2018


Author: stella.stamenova
Date: Thu Dec 20 10:00:20 2018
New Revision: 349781

URL: http://llvm.org/viewvc/llvm-project?rev=349781&view=rev
Log:
[lldbsuite] Un-xfail TestEvents on Windows

There are a couple of tests in TestEvents that are now passing.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py?rev=349781&r1=349780&r2=349781&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/python_api/event/TestEvents.py Thu Dec 20 10:00:20 2018
@@ -31,7 +31,6 @@ 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()
@@ -120,7 +119,6 @@ class EventAPITestCase(TestBase):
 
     @add_test_categories(['pyapi'])
     @expectedFlakeyLinux("llvm.org/pr23730")  # Flaky, fails ~1/100 cases
-    @expectedFlakeyOS(oslist=["windows"])
     def test_wait_for_event(self):
         """Exercise SBListener.WaitForEvent() API."""
         self.build()
@@ -199,7 +197,6 @@ class EventAPITestCase(TestBase):
     @expectedFailureAll(
         oslist=["linux"],
         bugnumber="llvm.org/pr23617 Flaky, fails ~1/10 cases")
-    @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24778")
     def test_add_listener_to_broadcaster(self):
         """Exercise some SBBroadcaster APIs."""
         self.build()




More information about the lldb-commits mailing list