comparison src/testdir/test_terminal.vim @ 18070:873068e19e1f v8.1.2030

patch 8.1.2030: tests fail when build with normal features and terminal Commit: https://github.com/vim/vim/commit/997d42427eaab889058eb047e08d55de9e4a968a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 14 21:23:40 2019 +0200 patch 8.1.2030: tests fail when build with normal features and terminal Problem: Tests fail when build with normal features and terminal. (Dominique Pelle) Solution: Disable tests that won't work. (closes #4932)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Sep 2019 21:30:03 +0200
parents 060e1b1220c6
children 5a5e9eed6029
comparison
equal deleted inserted replaced
18069:1f52c157c2e9 18070:873068e19e1f
1682 call feedkeys("\<C-L>w", 'tx') 1682 call feedkeys("\<C-L>w", 'tx')
1683 call assert_equal(thiswin, win_getid()) 1683 call assert_equal(thiswin, win_getid())
1684 call feedkeys("\<C-W>w", 'tx') 1684 call feedkeys("\<C-W>w", 'tx')
1685 call assert_equal(termwin, win_getid()) 1685 call assert_equal(termwin, win_getid())
1686 1686
1687 set langmap=xjyk 1687 if has('langmap')
1688 call feedkeys("\<C-L>x", 'tx') 1688 set langmap=xjyk
1689 call assert_equal(thiswin, win_getid()) 1689 call feedkeys("\<C-L>x", 'tx')
1690 call feedkeys("\<C-W>y", 'tx') 1690 call assert_equal(thiswin, win_getid())
1691 call assert_equal(termwin, win_getid()) 1691 call feedkeys("\<C-W>y", 'tx')
1692 set langmap= 1692 call assert_equal(termwin, win_getid())
1693 set langmap=
1694 endif
1693 1695
1694 call feedkeys("\<C-L>gt", "xt") 1696 call feedkeys("\<C-L>gt", "xt")
1695 call assert_equal(3, tabpagenr()) 1697 call assert_equal(3, tabpagenr())
1696 tabprev 1698 tabprev
1697 call assert_equal(2, tabpagenr()) 1699 call assert_equal(2, tabpagenr())