Author: labath Date: Mon Jan 11 04:55:57 2016 New Revision: 257323 URL: http://llvm.org/viewvc/llvm-project?rev=257323&view=rev Log: Skip TestEvents on linux completely
The test hangs/crashes/fails because it does not use the listener API in a way that LLDB expects. I don't really know if this is the fault of LLDB of the test... 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=257323&r1=257322&r2=257323&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 Mon Jan 11 04:55:57 2016 @@ -13,6 +13,7 @@ import lldbsuite.test.lldbutil as lldbut from lldbsuite.test.lldbtest import * @skipIfDarwin # llvm.org/pr25924, sometimes generating SIGSEGV +@skipIfLinux # llvm.org/pr25924, sometimes generating SIGSEGV class EventAPITestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @@ -25,7 +26,6 @@ class EventAPITestCase(TestBase): @add_test_categories(['pyapi']) @expectedFailureLinux("llvm.org/pr23730") # Flaky, fails ~1/10 cases - @skipIfLinux # skip to avoid crashes def test_listen_for_and_print_event(self): """Exercise SBEvent API.""" self.build() _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits