Ondřej Súkup
361bccec8e
- refreshed patches: disable-unreliable-tests.patch vim-8.0-ttytype-test.patch * Cleared/added match highlighting not updated in other window. (Andi Massimino) * Still some match functions in evalfunc.c. * 'hlsearch' and match highlighting in the wrong place. * Build error without the conceal feature. * Compiler warning for unused argument. * ":dl" is seen as ":dlist" instead of ":delete". * Compiler warning for unused variables. (Tony Mechelynck) * :args output is not aligned. * Coverity warns for using negative index. * Depending on the terminal width :version may miss a line break. * When redrawing popups plines_win() may be called often. * Resizing hashtable is inefficient. * Use of popup window mask is inefficient. * Build failure. * Leaking memory when using a popup window mask. * Autocommand that splits window messes up window layout. * Text added with appendbufline() to another buffer isn't displayed. * Count of g$ not used correctly when text is not wrapped. * No mode char for terminal mapping from maparg(). * Extra line break for wrapping output of :args. * Filetype "vuejs" causes problems for some users. * Some filetype rules are in the wrong place. * Evalfunc.c is still too big. * ":browse oldfiles" is not tested. * get(func, dict, def) does not work properly. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=566
78 lines
2.2 KiB
Diff
78 lines
2.2 KiB
Diff
Index: vim-8.1.2052/src/testdir/test_alot.vim
|
|
===================================================================
|
|
--- vim-8.1.2052.orig/src/testdir/test_alot.vim
|
|
+++ vim-8.1.2052/src/testdir/test_alot.vim
|
|
@@ -38,14 +38,12 @@ source test_join.vim
|
|
source test_jumps.vim
|
|
source test_lambda.vim
|
|
source test_lispwords.vim
|
|
-source test_mapping.vim
|
|
source test_match.vim
|
|
source test_menu.vim
|
|
source test_messages.vim
|
|
source test_modeline.vim
|
|
source test_move.vim
|
|
source test_partial.vim
|
|
-source test_popup.vim
|
|
source test_put.vim
|
|
source test_recover.vim
|
|
source test_reltime.vim
|
|
@@ -65,7 +63,6 @@ source test_tagcase.vim
|
|
source test_tagfunc.vim
|
|
source test_tagjump.vim
|
|
source test_taglist.vim
|
|
-source test_timers.vim
|
|
source test_true_false.vim
|
|
source test_unlet.vim
|
|
source test_virtualedit.vim
|
|
Index: vim-8.1.2052/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.1.2052.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.1.2052/src/testdir/Make_all.mak
|
|
@@ -64,7 +64,6 @@ NEW_TESTS = \
|
|
test_autoload \
|
|
test_backspace_opt \
|
|
test_backup \
|
|
- test_balloon \
|
|
test_balloon_gui \
|
|
test_behave \
|
|
test_blob \
|
|
@@ -192,7 +191,6 @@ NEW_TESTS = \
|
|
test_netbeans \
|
|
test_normal \
|
|
test_number \
|
|
- test_options \
|
|
test_packadd \
|
|
test_partial \
|
|
test_paste \
|
|
@@ -303,7 +301,6 @@ NEW_TESTS_RES = \
|
|
test_autocmd.res \
|
|
test_autoload.res \
|
|
test_backspace_opt.res \
|
|
- test_balloon.res \
|
|
test_balloon_gui.res \
|
|
test_blob.res \
|
|
test_blockedit.res \
|
|
Index: vim-8.1.2052/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.1.2052.orig/src/testdir/Makefile
|
|
+++ vim-8.1.2052/src/testdir/Makefile
|
|
@@ -36,8 +36,6 @@ SCRIPTS = $(SCRIPTS_ALL) \
|
|
# Explicit dependencies.
|
|
test49.out: test49.vim
|
|
|
|
-test_options.res test_alot.res: opt_test.vim
|
|
-
|
|
SCRIPTS_BENCH = bench_re_freeze.out
|
|
|
|
.SUFFIXES: .in .out .res .vim
|
|
@@ -178,8 +176,5 @@ test_gui_init.res: test_gui_init.vim
|
|
$(RUN_VIMTEST) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $<
|
|
@rm vimcmd
|
|
|
|
-opt_test.vim: ../optiondefs.h gen_opt_test.vim
|
|
- $(VIMPROG) -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../optiondefs.h
|
|
-
|
|
test_xxd.res:
|
|
XXD=$(XXDPROG); export XXD; $(RUN_VIMTEST) $(NO_INITS) -S runtest.vim test_xxd.vim
|