Skip to content

Commit

Permalink
Skip timing-sensitive 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 f2d7130 commit c4e8e2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lldb/test/API/driver/quit_speed/TestQuitWithProcess.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
class DriverQuitSpeedTest(PExpectTest):
source = "main.c"

@skipIfAsan
def test_run_quit(self):
"""Test that the lldb driver's batch mode works correctly."""
import pexpect
Expand All @@ -31,4 +32,4 @@ def test_run_quit(self):
print("Got launch message")
child.sendline("quit")
print("sent quit")
child.expect(pexpect.EOF, timeout=60)
child.expect(pexpect.EOF, timeout=15)

0 comments on commit c4e8e2c

Please sign in to comment.