comparison src/testdir/runtest.vim @ 11105:7c7e496e625d v8.0.0440

patch 8.0.0440: not enough test coverage in Insert mode commit https://github.com/vim/vim/commit/eb992cb90fd79c77ad2743459ac898e6ac3de939 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 9 18:20:16 2017 +0100 patch 8.0.0440: not enough test coverage in Insert mode Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Mar 2017 18:30:07 +0100
parents 679c12064dbc
children f4971739ea47
comparison
equal deleted inserted replaced
11104:c6f6c6262418 11105:7c7e496e625d
47 47
48 " For consistency run all tests with 'nocompatible' set. 48 " For consistency run all tests with 'nocompatible' set.
49 " This also enables use of line continuation. 49 " This also enables use of line continuation.
50 set nocp viminfo+=nviminfo 50 set nocp viminfo+=nviminfo
51 51
52 " Use utf-8 or latin1 be default, instead of whatever the system default 52 " Use utf-8 or latin1 by default, instead of whatever the system default
53 " happens to be. Individual tests can overrule this at the top of the file. 53 " happens to be. Individual tests can overrule this at the top of the file.
54 if has('multi_byte') 54 if has('multi_byte')
55 set encoding=utf-8 55 set encoding=utf-8
56 else 56 else
57 set encoding=latin1 57 set encoding=latin1
93 set nomore 93 set nomore
94 94
95 " Avoid a three second wait when a message is about to be overwritten by the 95 " Avoid a three second wait when a message is about to be overwritten by the
96 " mode message. 96 " mode message.
97 set noshowmode 97 set noshowmode
98
99 " Clear any overrides.
100 call test_override('ALL', 0)
98 101
99 if exists("*SetUp") 102 if exists("*SetUp")
100 try 103 try
101 call SetUp() 104 call SetUp()
102 catch 105 catch