diff options
author | Zachary Turner <zturner@google.com> | 2016-02-10 19:53:36 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-10 19:53:36 +0000 |
commit | 362e06d7baa88f51d7712bf976d40b6021d3dc9e (patch) | |
tree | 9da74d2b9e354f5aad421e59a0b7d393c1b41553 /lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py | |
parent | 27501e2065f70eb3a1b6bd021e2459102e1f5832 (diff) | |
download | bcm5719-llvm-362e06d7baa88f51d7712bf976d40b6021d3dc9e.tar.gz bcm5719-llvm-362e06d7baa88f51d7712bf976d40b6021d3dc9e.zip |
Remove expectedFailureLinux decorator.
llvm-svn: 260422
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 | 4 |
1 files changed, 2 insertions, 2 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 046c0865e53..ca829bf6d25 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py @@ -26,7 +26,7 @@ class EventAPITestCase(TestBase): self.line = line_number('main.c', '// Find the line number of function "c" here.') @add_test_categories(['pyapi']) - @expectedFailureLinux("llvm.org/pr23730") # Flaky, fails ~1/10 cases + @expectedFailureAll(oslist=["linux"], bugnumber="llvm.org/pr23730 Flaky, fails ~1/10 cases") def test_listen_for_and_print_event(self): """Exercise SBEvent API.""" self.build() @@ -177,7 +177,7 @@ class EventAPITestCase(TestBase): @skipIfFreeBSD # llvm.org/pr21325 @add_test_categories(['pyapi']) - @expectedFailureLinux("llvm.org/pr23617") # Flaky, fails ~1/10 cases + @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.""" |