diff src/testdir/test_channel.vim @ 8424:be45d4921f1f v7.4.1503

commit https://github.com/vim/vim/commit/839fd11d7ed1a96bace3159c4d1861658864aae3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 6 21:34:03 2016 +0100 patch 7.4.1503 Problem: Crash when using ch_getjob(). (Damien) Solution: Check for a NULL job.
author Christian Brabandt <cb@256bit.org>
date Sun, 06 Mar 2016 21:45:04 +0100
parents f6d21a33d489
children 02ce040591c8
line wrap: on
line diff
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -108,6 +108,10 @@ func s:communicate(port)
     call assert_false(1, "Can't open channel")
     return
   endif
+  if has('job')
+    " check that no job is handled correctly
+    call assert_equal('no process', string(ch_getjob(handle)))
+  endif
 
   " Simple string request and reply.
   call assert_equal('got it', ch_evalexpr(handle, 'hello!'))