From 51d42917f0a225d6e40cb4746395b3a934d71be2 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 5 Sep 2018 10:04:12 +0200 Subject: [PATCH] test/win: job_spec: increase jobwait() timeout powershell is slow, and this timeout is "worst case" so it doesn't make the tests more costly, only avoids a false-positive. close #8958 --- test/functional/core/job_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index feb9c9aeaa..f8488ca7a3 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -663,7 +663,7 @@ describe('jobs', function() call rpcnotify(g:channel, 'wait', jobwait([ \ jobstart('exit 4'), \ jobstart((has('win32') ? 'Start-Sleep 10' : 'sleep 10').'; exit 5'), - \ ], has('win32') ? 3000 : 100)) + \ ], has('win32') ? 6000 : 100)) ]]) eq({'notification', 'wait', {{4, -1}}}, next_msg()) end)