diff src/testdir/test_channel.vim @ 7918:ce5a7a613867 v7.4.1255

commit https://github.com/vim/vim/commit/66624ff0d9e1de2fc5eb4f95f3a3a2ed70b10138 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 3 23:59:43 2016 +0100 patch 7.4.1255 Problem: Crash for channel "eval" command without third argument. Solution: Check for missing argument.
author Christian Brabandt <cb@256bit.org>
date Thu, 04 Feb 2016 00:00:05 +0100
parents 54602dcac207
children 14540239601d
line wrap: on
line diff
--- a/src/testdir/test_channel.vim
+++ b/src/testdir/test_channel.vim
@@ -90,6 +90,10 @@ func Test_communicate()
   call assert_equal('ok', ch_sendexpr(handle, 'eval-fails'))
   call assert_equal([-2, 'ERROR'], ch_sendexpr(handle, 'eval-result'))
 
+  " Send a bad eval request. There will be no response.
+  call assert_equal('ok', ch_sendexpr(handle, 'eval-bad'))
+  call assert_equal([-2, 'ERROR'], ch_sendexpr(handle, 'eval-result'))
+
   " make the server quit, can't check if this works, should not hang.
   call ch_sendexpr(handle, '!quit!', 0)