diff options
author | b-r-o-c-k <brockmammen@gmail.com> | 2018-04-14 14:21:36 -0500 |
---|---|---|
committer | b-r-o-c-k <brockmammen@gmail.com> | 2018-04-14 14:21:36 -0500 |
commit | 387fbcd95cade4b0c037d18f404944676a59db09 (patch) | |
tree | f27c6fecbd40b2edd400ae612c77a30883c30512 /test/functional/core/main_spec.lua | |
parent | ad999eaa775d7d4b0cacedb30c6ea3a0ee699a6f (diff) | |
download | rneovim-387fbcd95cade4b0c037d18f404944676a59db09.tar.gz rneovim-387fbcd95cade4b0c037d18f404944676a59db09.tar.bz2 rneovim-387fbcd95cade4b0c037d18f404944676a59db09.zip |
win: Fix reading from stdin
* Reading from stdin on Windows is fixed in the same way as it was in
#8267.
* The file_read function was returning without filling the
destination buffer when it was called with a non-blocking file
descriptor.
Diffstat (limited to 'test/functional/core/main_spec.lua')
-rw-r--r-- | test/functional/core/main_spec.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/core/main_spec.lua b/test/functional/core/main_spec.lua index 1641149c87..2c4d110f0f 100644 --- a/test/functional/core/main_spec.lua +++ b/test/functional/core/main_spec.lua @@ -36,7 +36,6 @@ describe('Command-line option', function() os.remove(dollar_fname) end) it('treats - as stdin', function() - if helpers.pending_win32(pending) then return end eq(nil, lfs.attributes(fname)) funcs.system( {nvim_prog_abs(), '-u', 'NONE', '-i', 'NONE', '--headless', |