diff --git a/test/old/testdir/test_crash.vim b/test/old/testdir/test_crash.vim index 7808cbfba6..4e05efed9c 100644 --- a/test/old/testdir/test_crash.vim +++ b/test/old/testdir/test_crash.vim @@ -7,7 +7,12 @@ CheckScreendump " Run the command in terminal and wait for it to complete via notification func s:RunCommandAndWait(buf, cmd) call term_sendkeys(a:buf, a:cmd .. "; printf '" .. TermNotifyParentCmd(v:false) .. "'\") - call WaitForChildNotification() + if ValgrindOrAsan() + " test times out on ASAN CI builds + call WaitForChildNotification(10000) + else + call WaitForChildNotification() + endif endfunc func Test_crash1()