aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-09-24 23:28:30 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-10-01 22:27:43 -0400
commit14f3287b9813f5a3bb88596e859a2fb6c6b2e4ae (patch)
tree166f8e3bd3a3bb838b18d8e97788f0fc36d40740
parent17e96d96bac4ea9074a337b263fe85d4755106b6 (diff)
downloadrneovim-14f3287b9813f5a3bb88596e859a2fb6c6b2e4ae.tar.gz
rneovim-14f3287b9813f5a3bb88596e859a2fb6c6b2e4ae.tar.bz2
rneovim-14f3287b9813f5a3bb88596e859a2fb6c6b2e4ae.zip
vim-patch:8.1.0517: Test_window_split_edit_alternate() fails on AppVeyor
Problem: Test_window_split_edit_alternate() fails on AppVeyor. Solution: Disable the failing part for now. https://github.com/vim/vim/commit/d42333d8e9f6c157884f4f1acb458aa992f94f3d
-rw-r--r--src/nvim/testdir/test_window_cmd.vim11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/nvim/testdir/test_window_cmd.vim b/src/nvim/testdir/test_window_cmd.vim
index 9f899fba04..4c93e990ee 100644
--- a/src/nvim/testdir/test_window_cmd.vim
+++ b/src/nvim/testdir/test_window_cmd.vim
@@ -139,10 +139,13 @@ func Test_window_split_edit_alternate()
call assert_equal(l:nr2, winbufnr(2))
only
- " Test the Normal mode command.
- call feedkeys("\<C-W>\<C-^>", 'tx')
- call assert_equal(l:nr2, winbufnr(1))
- call assert_equal(l:nr1, winbufnr(2))
+ " FIXME: this currently fails on AppVeyor, but passes locally
+ if !has('win32')
+ " Test the Normal mode command.
+ call feedkeys("\<C-W>\<C-^>", 'tx')
+ call assert_equal(l:nr2, winbufnr(1))
+ call assert_equal(l:nr1, winbufnr(2))
+ endif
%bw!
endfunc