Ondřej Súkup
f8931248a4
- refreshed disable-unreliable-tests.patch * Running make in src/po leaves LINGUAS file behind. (Ken Takata) * Delaying half a second after the top-bot message. * Detecting *.tmpl as htmlcheetah is outdated. * Test17 is old style. * Running tests leaves XTest_tabpage_cmdheight file behind. * Cannot build with +eval but without +mouse. * Search stats don't show for mapped command. * May not have enough space to add "W" to search stats. * .hgignore and .gitignore are either distributed or in git, not both. * Not easy to change directory and restore. * Invalid command line arguments not tested. * When vimrun.exe does not exist external command may fail. * Crash when using invalid command line argument. * Invalid argument test fails without GTK. * Invalid argument test fails without X clipboard. * "extends" from 'listchars' is used when 'list' is off. (Hiroyuki Yoshinaga) * In a terminal 'ballooneval' does not work right away. * When compiled with VIMDLL some messages are not shown. * v:beval_text is not tested in Visual mode. * Not possible to hide a balloon. * There is no easy way to manipulate environment variables. * Borland support is outdated and doesn't work. * Cannot reconnect to the X server after it restarted. * The Normal highlight is not defined when compiled with GUI. * Test for Normal highlight fails on MS-Windows GUI. * Named function arguments are never optional. * Aborting an autocmd with an exception is not tested. * Coverity warning for using uninitialized variable. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=551
90 lines
2.5 KiB
Diff
90 lines
2.5 KiB
Diff
Index: vim-8.1.1330/src/testdir/test_alot.vim
|
|
===================================================================
|
|
--- vim-8.1.1330.orig/src/testdir/test_alot.vim
|
|
+++ vim-8.1.1330/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.1330/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.1.1330.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.1.1330/src/testdir/Make_all.mak
|
|
@@ -68,7 +68,6 @@ NEW_TESTS = \
|
|
test_autoload \
|
|
test_backspace_opt \
|
|
test_backup \
|
|
- test_balloon \
|
|
test_behave \
|
|
test_blob \
|
|
test_blockedit \
|
|
@@ -191,7 +190,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_blob.res \
|
|
test_blockedit.res \
|
|
test_breakindent.res \
|
|
@@ -413,11 +410,8 @@ NEW_TESTS_RES = \
|
|
test_tcl.res \
|
|
test_termencoding.res \
|
|
test_termcodes.res \
|
|
- test_terminal.res \
|
|
- test_terminal_fail.res \
|
|
test_textformat.res \
|
|
test_textobjects.res \
|
|
- test_textprop.res \
|
|
test_undo.res \
|
|
test_user_func.res \
|
|
test_usercommands.res \
|
|
Index: vim-8.1.1330/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.1.1330.orig/src/testdir/Makefile
|
|
+++ vim-8.1.1330/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
|
|
@@ -166,8 +164,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
|