mirror of
https://github.com/vim/vim.git
synced 2025-07-24 10:45:12 -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')
|
||||
throw 'skipped: wc command not available'
|
||||
endif
|
||||
if has('win32')
|
||||
" TODO: enable once writing to stdin works on MS-Windows
|
||||
return
|
||||
endif
|
||||
new
|
||||
call setline(1, ['one', 'two', 'three'])
|
||||
%term wc
|
||||
|
@ -761,6 +761,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
29,
|
||||
/**/
|
||||
28,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user