comparison src/testdir/test_display.vim @ 19754:c9cc9e5c87e0 v8.2.0433

patch 8.2.0433: INT signal not properly tested Commit: https://github.com/vim/vim/commit/bad8804cdd739a5a7321b8411ad7fd4f45741b54 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 23 20:54:32 2020 +0100 patch 8.2.0433: INT signal not properly tested Problem: INT signal not properly tested. Solution: Add a test. Also clean up some unnecessary lines. (Dominique Pelle, closes #5828)
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Mar 2020 21:00:04 +0100
parents 623afba3566a
children c087099e9163
comparison
equal deleted inserted replaced
19753:cf2885e38afd 19754:c9cc9e5c87e0
190 call writefile([], longName) 190 call writefile([], longName)
191 let buf = RunVimInTerminal('-N -u NONE ' .. longName, #{rows: 8}) 191 let buf = RunVimInTerminal('-N -u NONE ' .. longName, #{rows: 8})
192 192
193 call VerifyScreenDump(buf, 'Test_long_file_name_1', {}) 193 call VerifyScreenDump(buf, 'Test_long_file_name_1', {})
194 194
195 call term_sendkeys(buf, ":q\<cr>")
196
197 " clean up 195 " clean up
198 call StopVimInTerminal(buf) 196 call StopVimInTerminal(buf)
199 call delete(longName) 197 call delete(longName)
200 endfunc 198 endfunc
201 199