summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2024-05-01 13:11:39 -0700
committerAdrian Prantl <aprantl@apple.com>2024-05-01 13:11:51 -0700
commitfa9e96a2e55226b1f9f9744f42ac5e925297f819 (patch)
tree41ec3ca05528355b6b28ec46c4ad6c8acbd28a7d
parentdcbf0fcd0d5572f7001ebdd3bda6062593ec172b (diff)
Skip pexpect test under ASAN
-rw-r--r--lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py b/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py
index f6bda16560b9..a7c749e1528b 100644
--- a/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py
+++ b/lldb/test/API/macosx/nslog/TestDarwinNSLogOutput.py
@@ -117,6 +117,7 @@ class DarwinNSLogOutputTestCase(TestBase):
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 @@ class DarwinNSLogOutputTestCase(TestBase):
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