[Lldb-commits] [lldb] r281251 - xfail TestQueues.py and TestDarwinLogFilterMatchMessage.py
Todd Fiala via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 12 13:23:13 PDT 2016
Author: tfiala
Date: Mon Sep 12 15:23:13 2016
New Revision: 281251
URL: http://llvm.org/viewvc/llvm-project?rev=281251&view=rev
Log:
xfail TestQueues.py and TestDarwinLogFilterMatchMessage.py
It looks like the message-content-retrieval aspect of DarwinLog
support is flaky, not just the regex match against it. Slightly
less frequently than the regex matching, I am seeing the
direct string-match variant of log-message-content matching
also fail.
Tracked by:
llvm.org/pr30299
rdar://28237450
Modified:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py?rev=281251&r1=281250&r2=281251&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py Mon Sep 12 15:23:13 2016
@@ -60,6 +60,8 @@ class TestDarwinLogFilterMatchMessage(da
]
@decorators.skipUnlessDarwin
+ @decorators.expectedFailureAll(oslist=["macosx"],
+ bugnumber="llvm.org/pr30299")
def test_filter_accept_message_full_match(self):
"""Test that fall-through reject, accept match whole message works."""
self.do_test(
@@ -79,6 +81,8 @@ class TestDarwinLogFilterMatchMessage(da
"should be")
@decorators.skipUnlessDarwin
+ @decorators.expectedFailureAll(oslist=["macosx"],
+ bugnumber="llvm.org/pr30299")
def test_filter_no_accept_message_partial_match(self):
"""Test that fall-through reject, match message via partial content match doesn't accept."""
self.do_test(
@@ -99,6 +103,8 @@ class TestDarwinLogFilterMatchMessage(da
"should be")
@decorators.skipUnlessDarwin
+ @decorators.expectedFailureAll(oslist=["macosx"],
+ bugnumber="llvm.org/pr30299")
def test_filter_reject_category_full_match(self):
"""Test that fall-through accept, reject match message works."""
self.do_test(
@@ -118,6 +124,8 @@ class TestDarwinLogFilterMatchMessage(da
"should be")
@decorators.skipUnlessDarwin
+ @decorators.expectedFailureAll(oslist=["macosx"],
+ bugnumber="llvm.org/pr30299")
def test_filter_accept_category_second_rule(self):
"""Test that fall-through reject, accept match category on second rule works."""
self.do_test(
Modified: lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py?rev=281251&r1=281250&r2=281251&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py Mon Sep 12 15:23:13 2016
@@ -17,6 +17,7 @@ class TestQueues(TestBase):
mydir = TestBase.compute_mydir(__file__)
@skipUnlessDarwin
+ @expectedFailureAll(bugnumber="rdar://28237450")
@add_test_categories(['pyapi'])
def test_with_python_api(self):
"""Test queues inspection SB APIs."""
More information about the lldb-commits
mailing list