Ondřej Súkup
244eb56d7f
- enable test_recover - disable-unreliable-tests.patch * Xxd always reports an old version string. (Åsmund Ervik) * Vim9: using try in catch block causes a hang. * Vim9: an error in a catch block is not reported. * Vim9: profile test fails. * Powershell core not supported by default. * Recover test fails on 32bit systems. (Ondřej Súkup) * Cannot catch errors in a channel command. * A channel command "echoerr" does not show anything. * Crash when passing null string to charclass(). * Vim9: builtin function argument types are not checked at compile time. * JSONC files are not recognized. * Vim9: breakpoint on "for" does not work. * Gemtext files are not recognized. * With 'virtualedit' set to "block" Visual highlight is wrong after using "$". (Marco Trosi) * Garbage collection has useless code. * With concealing enabled and indirectly closing a fold the cursor may be somewhere in a folded line. * Vim9: default argument expression cannot use previous argument * Vim9: builtin function test fails without the +channel feature. * tablabel_tooltip test fails with Athena. (Dominique Pellé) * Test_popup_atcursor_pos() fails without the conceal feature. * With 'virtualedit' set to "block" block selection is wrong after using "$". (Marco Trosi) * Temp files remain after running tests. * Crash when using "quit" at recovery prompt and autocommands are triggered. * Popup window test is flaky on MS-Windows with GUI. * Vim9: missing catch/finally not reported at script level. OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=670
53 lines
1.5 KiB
Diff
53 lines
1.5 KiB
Diff
Index: vim-8.2.3075/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.2.3075.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.2.3075/src/testdir/Make_all.mak
|
|
@@ -63,7 +63,6 @@ NEW_TESTS = \
|
|
test_autoload \
|
|
test_backspace_opt \
|
|
test_backup \
|
|
- test_balloon \
|
|
test_balloon_gui \
|
|
test_behave \
|
|
test_blob \
|
|
@@ -203,7 +202,6 @@ NEW_TESTS = \
|
|
test_netbeans \
|
|
test_normal \
|
|
test_number \
|
|
- test_options \
|
|
test_packadd \
|
|
test_partial \
|
|
test_paste \
|
|
@@ -323,7 +320,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.2.3075/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.2.3075.orig/src/testdir/Makefile
|
|
+++ vim-8.2.3075/src/testdir/Makefile
|
|
@@ -26,9 +26,6 @@ default: nongui
|
|
# This defines SCRIPTS_TINY_OUT, NEW_TESTS and NEW_TESTS_RES.
|
|
include Make_all.mak
|
|
|
|
-# Explicit dependencies.
|
|
-test_options.res test_alot.res: opt_test.vim
|
|
-
|
|
.SUFFIXES: .in .out .res .vim
|
|
|
|
nongui: nolog tinytests newtests report
|
|
@@ -149,9 +146,6 @@ 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
|
|
|