Skip to content

Commit

Permalink
Skip pexpect test under ASAN
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-prantl committed May 1, 2024
1 parent dcbf0fc commit fa9e96a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit fa9e96a

Please sign in to comment.