Patch 7.4.1856 (after 7.4.1855)
Problem: failing job test fails on MS-Windows.
Solution: Expect "fail" status instead of "dead".
Files: src/testdir/test_partial.vim
*** ../vim-7.4.1855/src/testdir/test_partial.vim 2016-05-28
22:22:28.830213562 +0200
--- src/testdir/test_partial.vim 2016-05-28 22:43:30.530196207 +0200
***************
*** 254,265 ****
if has('job')
let job = job_start('axdfxsdf')
for i in range(100)
! if job_status(job) == 'dead'
break
endif
sleep 10m
endfor
! call assert_equal('dead', job_status(job))
unlet job
endif
endfunc
--- 254,270 ----
if has('job')
let job = job_start('axdfxsdf')
for i in range(100)
! let status = job_status(job)
! if status == 'dead' || status == 'fail'
break
endif
sleep 10m
endfor
! if has('unix')
! call assert_equal('dead', job_status(job))
! else
! call assert_equal('fail', job_status(job))
! endif
unlet job
endif
endfunc
*** ../vim-7.4.1855/src/version.c 2016-05-28 22:22:28.834213562 +0200
--- src/version.c 2016-05-28 22:44:55.286195041 +0200
***************
*** 755,756 ****
--- 755,758 ----
{ /* Add new patch number below this line */
+ /**/
+ 1856,
/**/
--
How To Keep A Healthy Level Of Insanity:
3. Every time someone asks you to do something, ask if they want fries
with that.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.