mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 9.1.0944: tests: test_registers fails when not run under X11
Problem: tests: test_registers fails when not run under X11 Solution: filter out warning message Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
parent
d0186c54c2
commit
b2a8df35e8
@ -53,6 +53,9 @@ func Test_display_registers()
|
||||
|
||||
" these commands work in the sandbox
|
||||
let a = execute('sandbox display')
|
||||
" When X11 connection is not available, there is a warning W23
|
||||
" filter this out (we could also run the :display comamand twice)
|
||||
let a = substitute(a, 'W23.*0\n', '', '')
|
||||
let b = execute('sandbox registers')
|
||||
|
||||
call assert_equal(a, b)
|
||||
|
@ -704,6 +704,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
944,
|
||||
/**/
|
||||
943,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user