Skip to content

Commit c4e8e2c

Browse files
committed
Skip timing-sensitive test under ASAN
1 parent f2d7130 commit c4e8e2c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/test/API/driver/quit_speed/TestQuitWithProcess.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
class DriverQuitSpeedTest(PExpectTest):
1313
source = "main.c"
1414

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

0 commit comments

Comments
 (0)