vim/vim-8.1.0297-dump3.patch

23 lines
994 B
Diff
Raw Normal View History

Accepting request 684247 from home:mimi_vx:branches:editors - 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
2019-03-12 11:49:04 +01:00
Index: vim-8.1.1005/src/testdir/test_search.vim
Accepting request 630978 from home:mimi_vx:branches:editors - update to version 8.1.318 - add vim-8.1.0297-dump3.patch - disable broken test * helpgrep with language doesn't work properly * build failure without the +eval feature * information about a swap file is unavailable * wrong type for flags used in signal handlers * filtering entries in a quickfix list is not easy * File info message not always suppressed with 'F' in 'shortmess'. * profiling does not show a count for condition lines * a quick undo shows "1 seconds ago" * there is no good way to get the window layout * plural messages are not translated properly * no redraw when using a STOP signal on Vim and then CONT * line2byte() is wrong for last line with 'noeol' * crash when using :suspend and "fg" * GTK: input method popup displayed on wrong screen. * the old window title might be freed twice * command parsing for 'incsearch' is a bit ugly * no 'incsearch' highlighting for :vimgrep and similar * checks for type of stack is cryptic * 'incsearch' highlighting not used for :sort * "cit" on an empty HTML tag changes the whole tag * cursor moves to wrong column after quickfix jump * quickfix code uses cmdidx too often * MAX is not defined everywhere * 'incsearch' does not apply to :smagic and :snomagic * 'cursorline' highlighting wrong with 'incsearch' * 'incsearch' does not work with command modifiers * parsing command modifiers is not separated * 'incsearch' highlighting does not work for ":g!/" OBS-URL: https://build.opensuse.org/request/show/630978 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=514
2018-08-23 09:45:26 +02:00
===================================================================
Accepting request 684247 from home:mimi_vx:branches:editors - 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
2019-03-12 11:49:04 +01:00
--- vim-8.1.1005.orig/src/testdir/test_search.vim
+++ vim-8.1.1005/src/testdir/test_search.vim
Accepting request 672541 from home:coolo:branches:editors - Update to version 8.1.0887, fixes the following problems * Undo with text properties not tested. * setline() and setbufline() do not clear text properties. * Text properties are not adjusted for :substitute. * If a buffer was deleted a channel can't write to it. * Channel test fails sometimes. * When using text props may free memory that is not allocated. * Internal error when using :popup. * When test_edit fails 'insertmode' may not be reset and the next test may get stuck. (James McCoy) * ":sign place" requires the buffer argument. * Clearing the window is used too often, causing the command line to be cleared when opening a tab. (Miroslav Koškár) * Compiler warning for uninitialized variable. (Tony Mechelynck) * Using "gt" sometimes does not redraw a tab. (Jason Franklin) * Sign message not translated and inconsistent spacing. * ":sign place" only uses the current buffer. * Compiler warnings with 64-bit compiler. * Building with Ruby 2.6 gives compiler warnings. * :colorscheme isn't tested enough * Tabline is not always redrawn when something that is used in 'tabline' changes. * Text property columns are not adjusted for changed indent. * Third argument for redrawWinline() is always FALSE. * Windows are updated for every added/deleted sign. * When using timers may wait for job exit quite long. * Test files still use function!. * MS-Windows build instructions are a bit outdated. * Images for NSIS take up too much space. * Unessesary #if lines in GTK code. * Superfluous call to redraw_win_later(). * Get warning message when 'completefunc' returns nothing. * There is no function for the ":sign jump" command. OBS-URL: https://build.opensuse.org/request/show/672541 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=534
2019-02-07 20:50:05 +01:00
@@ -922,7 +922,7 @@ func Test_incsearch_substitute_dump()
Accepting request 636139 from home:mimi_vx:branches:editors - update to version 8.1.401 * refresh vim-8.1.0297-dump3.patch * Can't get swap name of another buffer. * Using freed memory with :diffget. * 'hlsearch' highlight remains in other window * No event triggered after updating diffs * Diffs are not always updated correctly * Not all white space difference options available. * Error while typing :/foo/s// with 'incsearch' enabled * Building in a shadow directory fails. * Coverity complains about possible NULL pointer use. * Sign ordering depends on +netbeans feature. * Missing source file rename. * some make programs can't handle dependency on "xdiff/../" * Variable declaration not at start of block. * "make proto" doesn't work well. * Xdiff doesn't use the Vim memory allocation functions * Compiler warning for uninitialized variable. * Moving the cursor is slow when 'relativenumber' is set. * Screen updating still slow when 'cursorline' is set. * Argument types for select() may be wrong. * Not using internal diff if 'diffopt' is not changed * Continuation lines cannot contain comments. * GTK code has too many #ifdefs and building fails with GTK 2.10. * getchar(1) no longer processes pending messages * Pieces of the xdiff code are not used. * Function profile doesn't specify where it was defined. * compiler warning in xdiff code * Internal diff isn't used by default as advertised. * Cannot get the script line number when executing a function. OBS-URL: https://build.opensuse.org/request/show/636139 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=516
2018-09-17 13:34:01 +02:00
Accepting request 630978 from home:mimi_vx:branches:editors - update to version 8.1.318 - add vim-8.1.0297-dump3.patch - disable broken test * helpgrep with language doesn't work properly * build failure without the +eval feature * information about a swap file is unavailable * wrong type for flags used in signal handlers * filtering entries in a quickfix list is not easy * File info message not always suppressed with 'F' in 'shortmess'. * profiling does not show a count for condition lines * a quick undo shows "1 seconds ago" * there is no good way to get the window layout * plural messages are not translated properly * no redraw when using a STOP signal on Vim and then CONT * line2byte() is wrong for last line with 'noeol' * crash when using :suspend and "fg" * GTK: input method popup displayed on wrong screen. * the old window title might be freed twice * command parsing for 'incsearch' is a bit ugly * no 'incsearch' highlighting for :vimgrep and similar * checks for type of stack is cryptic * 'incsearch' highlighting not used for :sort * "cit" on an empty HTML tag changes the whole tag * cursor moves to wrong column after quickfix jump * quickfix code uses cmdidx too often * MAX is not defined everywhere * 'incsearch' does not apply to :smagic and :snomagic * 'cursorline' highlighting wrong with 'incsearch' * 'incsearch' does not work with command modifiers * parsing command modifiers is not separated * 'incsearch' highlighting does not work for ":g!/" OBS-URL: https://build.opensuse.org/request/show/630978 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=514
2018-08-23 09:45:26 +02:00
" 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
Accepting request 684247 from home:mimi_vx:branches:editors - 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
2019-03-12 11:49:04 +01:00
@@ -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', {})