annotate src/testdir/test_assign.vim @ 10829:8233f8f3f7ae v8.0.0304

patch 8.0.0304: assign test fails in the GUI commit https://github.com/vim/vim/commit/1fb0d49803b4f57025ed6a43b1f5b9eb91524645 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 4 21:50:19 2017 +0100 patch 8.0.0304: assign test fails in the GUI Problem: Assign test fails in the GUI. Solution: Skip the test for setting t_k1.
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Feb 2017 22:00:04 +0100
parents 4dea7c96fc82
children 126405b39964
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8512
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Test for assignment
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 func Test_no_type_checking()
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 let v = 1
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 let v = [1,2,3]
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 let v = {'a': 1, 'b': 2}
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 let v = 3.4
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 let v = 'hello'
5104f96b6ecf commit https://github.com/vim/vim/commit/f6f32c38bf3319144a84a01a154c8c91939e7acf
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 endfunc
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
10
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
11 func Test_let_termcap()
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
12 " Terminal code
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
13 let old_t_te = &t_te
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
14 let &t_te = "\<Esc>[yes;"
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
15 call assert_match('t_te.*^[[yes;', execute("set termcap"))
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
16 let &t_te = old_t_te
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
17
10829
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
18 if !has('gui_running')
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
19 " Key code
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
20 let old_t_k1 = &t_k1
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
21 let &t_k1 = "that"
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
22 call assert_match('t_k1.*that', execute("set termcap"))
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
23 let &t_k1 = old_t_k1
8233f8f3f7ae patch 8.0.0304: assign test fails in the GUI
Christian Brabandt <cb@256bit.org>
parents: 10825
diff changeset
24 endif
10825
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
25
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
26 call assert_fails('let x = &t_xx', 'E15')
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
27 let &t_xx = "yes"
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
28 call assert_equal("yes", &t_xx)
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
29 let &t_xx = ""
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
30 call assert_fails('let x = &t_xx', 'E15')
4dea7c96fc82 patch 8.0.0302: cannot set terminal key codes with :let
Christian Brabandt <cb@256bit.org>
parents: 8512
diff changeset
31 endfunc