aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core/job_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-12-07 23:55:18 +0100
committerGitHub <noreply@github.com>2016-12-07 23:55:18 +0100
commitff99cbfc0273bb9f714c32a62ec02b888c196a2e (patch)
treebbfb82885565dc382721716f3d550a259852ad28 /test/functional/core/job_spec.lua
parent8da23cb919e55825bc89f0ebfcebcc07374d9d18 (diff)
parent933c873cae64d3840bb0539b51a983a240eeff28 (diff)
downloadrneovim-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.lua5
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)