From 11e967d5af19f1132fa85aa05c5d73b87dbe5a93 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 5 Jul 2025 21:42:59 +0800 Subject: [PATCH] vim-patch:9.1.1511: 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 (zeertzjq). closes: vim/vim#17660 https://github.com/vim/vim/commit/96076bf41e0163cd61ca738b352896d450ee3636 --- test/old/testdir/runtest.vim | 1 + test/old/testdir/test_edit.vim | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/test/old/testdir/runtest.vim b/test/old/testdir/runtest.vim index b7c15a8f18..6b5d370100 100644 --- a/test/old/testdir/runtest.vim +++ b/test/old/testdir/runtest.vim @@ -164,6 +164,7 @@ endif " Prepare for calling test_garbagecollect_now(). +" Also avois some delays in Insert mode completion. let v:testing = 1 let s:has_ffi = luaeval('pcall(require, "ffi")') diff --git a/test/old/testdir/test_edit.vim b/test/old/testdir/test_edit.vim index 7e6ce2a014..2327830d0c 100644 --- a/test/old/testdir/test_edit.vim +++ b/test/old/testdir/test_edit.vim @@ -716,12 +716,9 @@ func Test_edit_CTRL_K() %d call setline(1, 'A') call cursor(1, 1) - let v:testing = 1 try call feedkeys("A\\\", 'tnix') catch - " error sleeps 2 seconds, when v:testing is not set - let v:testing = 0 endtry call Ntest_override("char_avail", 1) @@ -970,12 +967,9 @@ func Test_edit_CTRL_T() %d call setline(1, 'mad') call cursor(1, 1) - let v:testing = 1 try call feedkeys("A\\\", 'tnix') catch - " error sleeps 2 seconds, when v:testing is not set - let v:testing = 0 endtry call assert_equal(['mad'], getline(1, '$')) bw!