mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
tests: two edit tests change v:testing from 1 to 0
Problem: tests: two edit tests change v:testing from 1 to 0. Solution: Don't change v:testing in these two tests, since it's already set to 1 in runtest.vim.
This commit is contained in:
parent
a494ce1c64
commit
7a6b4f2ef4
@ -180,6 +180,7 @@ endif
|
|||||||
|
|
||||||
|
|
||||||
" Prepare for calling test_garbagecollect_now().
|
" Prepare for calling test_garbagecollect_now().
|
||||||
|
" Also avois some delays in Insert mode completion.
|
||||||
let v:testing = 1
|
let v:testing = 1
|
||||||
|
|
||||||
" By default, copy each buffer line into allocated memory, so that valgrind can
|
" By default, copy each buffer line into allocated memory, so that valgrind can
|
||||||
|
@ -709,12 +709,9 @@ func Test_edit_CTRL_K()
|
|||||||
%d
|
%d
|
||||||
call setline(1, 'A')
|
call setline(1, 'A')
|
||||||
call cursor(1, 1)
|
call cursor(1, 1)
|
||||||
let v:testing = 1
|
|
||||||
try
|
try
|
||||||
call feedkeys("A\<c-x>\<c-k>\<esc>", 'tnix')
|
call feedkeys("A\<c-x>\<c-k>\<esc>", 'tnix')
|
||||||
catch
|
catch
|
||||||
" error sleeps 2 seconds, when v:testing is not set
|
|
||||||
let v:testing = 0
|
|
||||||
endtry
|
endtry
|
||||||
|
|
||||||
call test_override("char_avail", 1)
|
call test_override("char_avail", 1)
|
||||||
@ -962,12 +959,9 @@ func Test_edit_CTRL_T()
|
|||||||
%d
|
%d
|
||||||
call setline(1, 'mad')
|
call setline(1, 'mad')
|
||||||
call cursor(1, 1)
|
call cursor(1, 1)
|
||||||
let v:testing = 1
|
|
||||||
try
|
try
|
||||||
call feedkeys("A\<c-x>\<c-t>\<esc>", 'tnix')
|
call feedkeys("A\<c-x>\<c-t>\<esc>", 'tnix')
|
||||||
catch
|
catch
|
||||||
" error sleeps 2 seconds, when v:testing is not set
|
|
||||||
let v:testing = 0
|
|
||||||
endtry
|
endtry
|
||||||
call assert_equal(['mad'], getline(1, '$'))
|
call assert_equal(['mad'], getline(1, '$'))
|
||||||
bw!
|
bw!
|
||||||
|
Loading…
x
Reference in New Issue
Block a user