mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 19:35:37 +00:00
Merge pull request #8650 from jamessan/skip-pydo-tests
oldtest: Disable tests that :py(3)do stop executing when buffer changes
This commit is contained in:
@@ -13,6 +13,8 @@ func Test_pydo()
|
|||||||
pydo vim.command("%d_")
|
pydo vim.command("%d_")
|
||||||
bwipe!
|
bwipe!
|
||||||
|
|
||||||
|
" Disabled until neovim/neovim#8554 is resolved
|
||||||
|
if 0
|
||||||
" Check switching to another buffer does not trigger ml_get error.
|
" Check switching to another buffer does not trigger ml_get error.
|
||||||
new
|
new
|
||||||
let wincount = winnr('$')
|
let wincount = winnr('$')
|
||||||
@@ -21,4 +23,5 @@ func Test_pydo()
|
|||||||
call assert_equal(wincount + 1, winnr('$'))
|
call assert_equal(wincount + 1, winnr('$'))
|
||||||
bwipe!
|
bwipe!
|
||||||
bwipe!
|
bwipe!
|
||||||
|
endif
|
||||||
endfunc
|
endfunc
|
||||||
|
|||||||
@@ -13,6 +13,8 @@ func Test_py3do()
|
|||||||
py3do vim.command("%d_")
|
py3do vim.command("%d_")
|
||||||
bwipe!
|
bwipe!
|
||||||
|
|
||||||
|
" Disabled until neovim/neovim#8554 is resolved
|
||||||
|
if 0
|
||||||
" Check switching to another buffer does not trigger an ml_get error.
|
" Check switching to another buffer does not trigger an ml_get error.
|
||||||
new
|
new
|
||||||
let wincount = winnr('$')
|
let wincount = winnr('$')
|
||||||
@@ -21,4 +23,5 @@ func Test_py3do()
|
|||||||
call assert_equal(wincount + 1, winnr('$'))
|
call assert_equal(wincount + 1, winnr('$'))
|
||||||
bwipe!
|
bwipe!
|
||||||
bwipe!
|
bwipe!
|
||||||
|
endif
|
||||||
endfunc
|
endfunc
|
||||||
|
|||||||
Reference in New Issue
Block a user