mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
patch 8.1.0029: terminal test fails on MS-Windows when "wc" exists
Problem: Terminal test fails on MS-Windows when "wc" exists. Solution: Skip test with redirection on MS-Windows.
This commit is contained in:
parent
1149382d21
commit
1580f755c9
@ -580,6 +580,10 @@ func Test_terminal_write_stdin()
|
|||||||
if !executable('wc')
|
if !executable('wc')
|
||||||
throw 'skipped: wc command not available'
|
throw 'skipped: wc command not available'
|
||||||
endif
|
endif
|
||||||
|
if has('win32')
|
||||||
|
" TODO: enable once writing to stdin works on MS-Windows
|
||||||
|
return
|
||||||
|
endif
|
||||||
new
|
new
|
||||||
call setline(1, ['one', 'two', 'three'])
|
call setline(1, ['one', 'two', 'three'])
|
||||||
%term wc
|
%term wc
|
||||||
|
@ -761,6 +761,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
29,
|
||||||
/**/
|
/**/
|
||||||
28,
|
28,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user