diff --git a/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py b/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py index f6bda16560b96..a7c749e1528b0 100644 --- a/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py +++ b/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py @@ -117,6 +117,7 @@ def do_test(self, expect_regexes=None, settings_commands=None): self.runCmd("process continue") self.expect(expect_regexes) + @skipIfAsan # avoid dealing with pexpect timeout flakyness on bots @skipIf(oslist=["linux"], archs=["arm", "aarch64"]) @skipUnlessDarwin @skipIfRemote # this test is currently written using lldb commands & assumes running on local system @@ -132,6 +133,7 @@ def test_nslog_output_is_displayed(self): self.assertGreater(len(self.child.match.groups()), 0) self.assertEqual("This is a message from NSLog", self.child.match.group(1)) + @skipIfAsan # avoid dealing with pexpect timeout flakyness on bots @skipIf(oslist=["linux"], archs=["arm", "aarch64"]) @skipUnlessDarwin @skipIfRemote # this test is currently written using lldb commands & assumes running on local system