87ff7f3611
* Test 29 is old style. * Cannot flush change listeners without also redrawing. The line numbers in the list of changes may become invalid. * Text properties don't always move after changes. * When buffer is hidden "F" in 'shortmess' is not used. * Listener callback is called after inserting text. * Some eval functionality is not covered by tests. * Get empty text prop when splitting line just after text prop. * Hang when concealing the '>' shown for a wide char that doesn't fit in the last cell. * Installer needs to product name et al. * Attributes from 'cursorline' overwrite textprop. * Text properties are lost when joining lines. * Using freed memory when joining line with text property. * Text properties not adjusted for Visual block mode delete. * Coverity complains about possibly using a NULL pointer and copying a string into a fixed size buffer. * Stuck in sandbox with ":s/../\=Function/gn". * Error for Python exception does not show useful info. * Fractional scroll position not restored after closing window. * Running tests may cause the window to move. * If writing runs into a conversion error the backup file is deleted. * "W" for wrapping not shown when more than 99 matches. * Text property wrong after :substitute. * Undofile() reports wrong name. (Francisco Giordano) * Undo test fails on Mac. * Getting a list of text lines is clumsy. * Obvious mistakes are accepted as valid expressions. * Some text in heredoc assignment ends the text. (Ozaki Kiichi) OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=553
78 lines
2.2 KiB
Diff
78 lines
2.2 KiB
Diff
Index: vim-8.1.1467/src/testdir/test_alot.vim
|
|
===================================================================
|
|
--- vim-8.1.1467.orig/src/testdir/test_alot.vim
|
|
+++ vim-8.1.1467/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.1467/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.1.1467.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.1.1467/src/testdir/Make_all.mak
|
|
@@ -64,7 +64,6 @@ NEW_TESTS = \
|
|
test_autoload \
|
|
test_backspace_opt \
|
|
test_backup \
|
|
- test_balloon \
|
|
test_behave \
|
|
test_blob \
|
|
test_blockedit \
|
|
@@ -187,7 +186,6 @@ NEW_TESTS = \
|
|
test_netbeans \
|
|
test_normal \
|
|
test_number \
|
|
- test_options \
|
|
test_packadd \
|
|
test_partial \
|
|
test_paste \
|
|
@@ -294,7 +292,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 \
|
|
Index: vim-8.1.1467/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.1.1467.orig/src/testdir/Makefile
|
|
+++ vim-8.1.1467/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
|