forked from OSchip/llvm-project
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 llvm-svn: 281251
This commit is contained in:
parent
4f671370eb
commit
d0c1c3220a
|
@ -60,6 +60,8 @@ class TestDarwinLogFilterMatchMessage(darwin_log.DarwinLogTestBase):
|
|||
]
|
||||
|
||||
@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(darwin_log.DarwinLogTestBase):
|
|||
"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(darwin_log.DarwinLogTestBase):
|
|||
"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(darwin_log.DarwinLogTestBase):
|
|||
"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(
|
||||
|
|
|
@ -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."""
|
||||
|
|
Loading…
Reference in New Issue