Ondřej Súkup
dbb5edf5ad
- refreshed patches: disable-unreliable-tests.patch vim-7.4-highlight_fstab.patch * Cscope test fails. * The generated desktop files may be invalid. * No test for checking the cursor style response. * New Unicode character U32FF missing from double-width table. * 'background' not correctly set for 2-digit rgb termresponse. * Add_termcap_entry() is not tested. * New resolve() implementation causes problem for plugins. * 'ttybuiltin' is not tested. * Search string not displayed when 'rightleft' is set. * No statistics displayed after running tests. * Test summary fails in the tiny version. * Still an error when running tests with the tiny version. * Change included for debugging only. * Length for two-digit rgb termresponse is off by one. * No test for wincol() depending on the 'number' option. * Skipped tests are not properly listed. * Some tests are slow. * Double free when garbage_collect() is used in autocommand. * A listener change is merged even when it adds a line. (Paul Jolly) * Older msgfmt cannot generate proper .desktop file. * Summary of tests has incorrect failed count. * Sign order wrong when priority was changed. * When a single test fails the exit code is not set. (Daniel Hahler) * When skipping over code after an exception was thrown expression evaluation is aborted after a function call. (Ingo Karkat) * Redrawing with popups is slow and causes flicker. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=556
78 lines
2.2 KiB
Diff
78 lines
2.2 KiB
Diff
Index: vim-8.1.1561/src/testdir/test_alot.vim
|
|
===================================================================
|
|
--- vim-8.1.1561.orig/src/testdir/test_alot.vim
|
|
+++ vim-8.1.1561/src/testdir/test_alot.vim
|
|
@@ -37,14 +37,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
|
|
@@ -63,7 +61,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.1561/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.1.1561.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.1.1561/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 \
|
|
@@ -189,7 +188,6 @@ NEW_TESTS = \
|
|
test_netbeans \
|
|
test_normal \
|
|
test_number \
|
|
- test_options \
|
|
test_packadd \
|
|
test_partial \
|
|
test_paste \
|
|
@@ -297,7 +295,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.1561/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.1.1561.orig/src/testdir/Makefile
|
|
+++ vim-8.1.1561/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
|
|
@@ -176,8 +174,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: ../option.c gen_opt_test.vim
|
|
- $(VIMPROG) -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../option.c
|
|
-
|
|
test_xxd.res:
|
|
XXD=$(XXDPROG); export XXD; $(RUN_VIMTEST) $(NO_INITS) -S runtest.vim test_xxd.vim
|