From 62108c3b0be46936c83f6d4c98b44ceb5e6f77fd Mon Sep 17 00:00:00 2001 From: ZyX Date: Thu, 23 Mar 2017 21:06:39 +0300 Subject: functests: Disable system(-s -) test on Windows Assume something with system() if second test hangs as well. Assume something with reading stdin if not. --- test/functional/core/main_spec.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/core/main_spec.lua b/test/functional/core/main_spec.lua index 2c4d110f0f..1641149c87 100644 --- a/test/functional/core/main_spec.lua +++ b/test/functional/core/main_spec.lua @@ -36,6 +36,7 @@ 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', -- cgit