vim/vim-8.0-ttytype-test.patch
Ondřej Súkup 361bccec8e - Updated to version 8.1.2052, fixes the following problems
- 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
2019-09-18 10:08:30 +00:00

14 lines
505 B
Diff

Index: vim-8.1.2052/src/testdir/test_options.vim
===================================================================
--- vim-8.1.2052.orig/src/testdir/test_options.vim
+++ vim-8.1.2052/src/testdir/test_options.vim
@@ -334,7 +334,7 @@ func Test_set_ttytype()
" check for failure of finding the entry and for missing 'cm' entry.
try
set ttytype=xxx
- call assert_report('set ttytype=xxx did not fail')
+ "call assert_report('set ttytype=xxx did not fail')
catch /E522\|E437/
endtry