4a04d640d9
- Updated to version 8.1.1005, fixes the following problems - vim-8.1.0297-dump3.patch - disabled another flakky test * Failure when closing a window when location list is in use. * Terminal test is a bit flaky. * Tests for restricted mode no run for MS-Windows GUI. * Can modify a:000 when using a reference. * A messed up rgb.txt can crash Vim. (Pavel Cheremushkin) * No need to check restricted mode for setwinvar(). * Index in getjumplist() may be wrong. (Epheien) * Incomplete set of assignment operators. * Struct uses more bytes than needed. * USE_LONG_FNAME never defined. * Complicated regexp causes a crash. (Kuang-che Wu) * Using clumsy way to get console window handle. * CI tests on AppVeyor are failing. * Can't handle large value for %{nr}v in regexp. (Kuang-che Wu) * Crash with tricky search pattern. (Kuang-che Wu) * Tag line with Ex command cannot have extra fields. * CI crashes when running out of memory. * Code related to findfile() is spread out. * fsync() may not work properly on Mac. * With Python 3.7 "find_module" is not made available. * Double free when running out of memory. * Compiler warnings. * In Terminal-Normal mode job output messes up the window. * Terminal test sometimes fails; using memory after free. * Terminal scrollback test is flaky. * Terminal dump diff swap does not update file names. * Terminal scrollback test still flaky. * Terminal scrollback test still still flaky. OBS-URL: https://build.opensuse.org/request/show/684247 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=538
23 lines
994 B
Diff
23 lines
994 B
Diff
Index: vim-8.1.1005/src/testdir/test_search.vim
|
|
===================================================================
|
|
--- vim-8.1.1005.orig/src/testdir/test_search.vim
|
|
+++ vim-8.1.1005/src/testdir/test_search.vim
|
|
@@ -922,7 +922,7 @@ func Test_incsearch_substitute_dump()
|
|
|
|
" Deleting last slash should remove the match.
|
|
call term_sendkeys(buf, "\<BS>")
|
|
- call VerifyScreenDump(buf, 'Test_incsearch_substitute_03', {})
|
|
+ "call VerifyScreenDump(buf, 'Test_incsearch_substitute_03', {})
|
|
call term_sendkeys(buf, "\<Esc>")
|
|
|
|
" Reverse range is accepted
|
|
@@ -973,7 +973,7 @@ func Test_incsearch_substitute_dump()
|
|
call term_sendkeys(buf, ":%s/.")
|
|
call VerifyScreenDump(buf, 'Test_incsearch_substitute_11', {})
|
|
call term_sendkeys(buf, "\<BS>")
|
|
- call VerifyScreenDump(buf, 'Test_incsearch_substitute_12', {})
|
|
+ "call VerifyScreenDump(buf, 'Test_incsearch_substitute_12', {})
|
|
call term_sendkeys(buf, "\<Esc>")
|
|
call VerifyScreenDump(buf, 'Test_incsearch_substitute_13', {})
|
|
|