summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2024-05-01 12:54:43 -0700
committerAdrian Prantl <aprantl@apple.com>2024-05-01 12:55:36 -0700
commitc4e8e2c67bbfff2d1b23210c375c173aa05e3848 (patch)
treed11d9aa0db8706ef28626d3caa2daa3ba0fb1e2d
parentf2d71305792dbcc48c67d9cfde4d8c33c582fb74 (diff)
Skip timing-sensitive test under ASAN
-rw-r--r--lldb/test/API/driver/quit_speed/TestQuitWithProcess.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py b/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
index c75ac977ea20..5cfcf5d69fd2 100644
--- a/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
+++ b/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
@@ -12,6 +12,7 @@ from lldbsuite.test.lldbpexpect import PExpectTest
class DriverQuitSpeedTest(PExpectTest):
source = "main.c"
+ @skipIfAsan
def test_run_quit(self):
"""Test that the lldb driver's batch mode works correctly."""
import pexpect
@@ -31,4 +32,4 @@ class DriverQuitSpeedTest(PExpectTest):
print("Got launch message")
child.sendline("quit")
print("sent quit")
- child.expect(pexpect.EOF, timeout=60)
+ child.expect(pexpect.EOF, timeout=15)