Problem: failing job test fails on MS-Windows.
Solution: Expect "fail" status instead of "dead".
if has('job')
let job = job_start('axdfxsdf')
for i in range(100)
- if job_status(job) == 'dead'
+ let status = job_status(job)
+ if status == 'dead' || status == 'fail'
break
endif
sleep 10m
endfor
- call assert_equal('dead', job_status(job))
+ if has('unix')
+ call assert_equal('dead', job_status(job))
+ else
+ call assert_equal('fail', job_status(job))
+ endif
unlet job
endif
endfunc
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1856,
/**/
1855,
/**/