diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-12-07 23:55:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-07 23:55:18 +0100 |
commit | ff99cbfc0273bb9f714c32a62ec02b888c196a2e (patch) | |
tree | bbfb82885565dc382721716f3d550a259852ad28 /test/functional/core/job_spec.lua | |
parent | 8da23cb919e55825bc89f0ebfcebcc07374d9d18 (diff) | |
parent | 933c873cae64d3840bb0539b51a983a240eeff28 (diff) | |
download | rneovim-ff99cbfc0273bb9f714c32a62ec02b888c196a2e.tar.gz rneovim-ff99cbfc0273bb9f714c32a62ec02b888c196a2e.tar.bz2 rneovim-ff99cbfc0273bb9f714c32a62ec02b888c196a2e.zip |
Merge #5488 from justinmk/test-fix-mouse-drag
test: Disable unreliable test on travis+ASAN_UBSAN
Diffstat (limited to 'test/functional/core/job_spec.lua')
-rw-r--r-- | test/functional/core/job_spec.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index 58594db8ac..9d24ba62db 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -481,10 +481,9 @@ describe('jobs', function() eq('rows: 40, cols: 10', next_chunk()) end) - it('calling jobclose()', function() - -- this should send SIGHUP to the process + it('jobclose() sends SIGHUP', function() nvim('command', 'call jobclose(j)') - eq({'notification', 'exit', {0, 1}}, next_msg()) + eq({'notification', 'exit', {0, 42}}, next_msg()) end) end) end) |