diff options
author | Numkil <kevin.jossart@hotmail.com> | 2015-02-25 12:28:32 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-02-26 19:23:37 -0500 |
commit | bbc9eff9ae16e954b9fe72641b3650f23be2e4dd (patch) | |
tree | 03c735a19a3adda322453bd1282d76699f6edb94 | |
parent | f28941b96d6cf69a82f6848afae1803feb530200 (diff) | |
download | rneovim-bbc9eff9ae16e954b9fe72641b3650f23be2e4dd.tar.gz rneovim-bbc9eff9ae16e954b9fe72641b3650f23be2e4dd.tar.bz2 rneovim-bbc9eff9ae16e954b9fe72641b3650f23be2e4dd.zip |
test: mark job/pty test as pending #2058
- closes #2057
- see https://github.com/neovim/neovim/issues/2057 for discussion
-rw-r--r-- | test/functional/job/job_spec.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/job/job_spec.lua b/test/functional/job/job_spec.lua index 0051de09e1..ca653bb269 100644 --- a/test/functional/job/job_spec.lua +++ b/test/functional/job/job_spec.lua @@ -170,7 +170,8 @@ describe('jobs', function() eq('screen resized. rows: 40, columns: 10', next_chunk()) end) - it('preprocessing ctrl+c with terminal driver', function() + -- FIXME This test is flawed because there is no telling when the OS will send chunks of data. + pending('preprocessing ctrl+c with terminal driver', function() send('\\<c-c>') eq('^Cinterrupt received, press again to exit', next_chunk()) send('\\<c-c>') |