diff --git a/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py b/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py index c75ac977ea209..5cfcf5d69fd2a 100644 --- a/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py +++ b/lldb/test/API/driver/quit_speed/TestQuitWithProcess.py @@ -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 @@ -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)