annotate src/testdir/test_signs.in @ 8473:ade1797aa6f4 v7.4.1527

commit https://github.com/vim/vim/commit/562ca7142845273bca656aa5aeeda90f001062e0 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 9 21:50:05 2016 +0100 patch 7.4.1527 Problem: Channel test is flaky on MS-Windows. Solution: Limit the select() timeout to 50 msec and try with a new socket if it fails.
author Christian Brabandt <cb@256bit.org>
date Wed, 09 Mar 2016 22:00:05 +0100
parents 6a598be6d4e8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6309
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 Tests for signs
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 STARTTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 :so small.vim
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 :if !has("signs")
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5 : e! test.ok
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 : wq! test.out
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 :endif
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 :"
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 :sign define JumpSign text=x
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 :exe 'sign place 42 line=2 name=JumpSign buffer=' . bufnr('')
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 :" Split the window to the bottom to verify :sign-jump will stay in the current
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 :" window if the buffer is displayed there
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 :bot split
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 :exe 'sign jump 42 buffer=' . bufnr('')
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 :call append(line('$'), winnr())
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 :$-1,$w! test.out
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 ENDTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 STARTTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 :qa!
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 ENDTEST
6a598be6d4e8 Add the missing test files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22