diff options
author | Pavel Labath <labath@google.com> | 2016-01-11 10:55:57 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-01-11 10:55:57 +0000 |
commit | 524025bd2eed7cc5447fc112f409f3d23790fa72 (patch) | |
tree | 911c2d7b94f39ad11676adf4bb2c98ed117d7682 /lldb/packages/Python/lldbsuite/test/python_api | |
parent | e85e6021f040e399203883a78c53b1617053e141 (diff) | |
download | bcm5719-llvm-524025bd2eed7cc5447fc112f409f3d23790fa72.tar.gz bcm5719-llvm-524025bd2eed7cc5447fc112f409f3d23790fa72.zip |
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...
llvm-svn: 257323
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py | 2 |
1 files changed, 1 insertions, 1 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 5a80fd71afa..51c924b2aff 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py @@ -13,6 +13,7 @@ import lldbsuite.test.lldbutil as lldbutil 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() |