Mercurial > vim
annotate src/testdir/test_escaped_glob.vim @ 30245:8f85b5c45432 v9.0.0458
patch 9.0.0458: splitting a line with a text prop "above" moves it down
Commit: https://github.com/vim/vim/commit/3b93cf218fc70897c11de0415221e7899e9a527a
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 13 18:34:18 2022 +0100
patch 9.0.0458: splitting a line with a text prop "above" moves it down
Problem: Splitting a line with a text prop "above" moves it to a new line
below.
Solution: Keep an "above" text prop above the first line.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 13 Sep 2022 19:45:03 +0200 |
parents | 08940efa6b4e |
children |
rev | line source |
---|---|
11651
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Test whether glob()/globpath() return correct results with certain escaped |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 " characters. |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
4 source check.vim |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
5 |
20003
e373843e2980
patch 8.2.0557: no IPv6 support for channels
Bram Moolenaar <Bram@vim.org>
parents:
17912
diff
changeset
|
6 func SetUp() |
11651
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 " consistent sorting of file names |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 set nofileignorecase |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 endfunction |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 function Test_glob() |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
12 " This test fails on Windows because of the special characters in the |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
13 " filenames. Disable the test on non-Unix systems for now. |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
14 CheckUnix |
14929
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
15 |
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
16 " Execute these commands in the sandbox, so that using the shell fails. |
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
17 " Setting 'shell' to an invalid name causes a memory leak. |
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
18 sandbox call assert_equal("", glob('Xxx\{')) |
17912
9fac6d0de69a
patch 8.1.1952: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
19 sandbox call assert_equal("", 'Xxx\$'->glob()) |
16277
5ef25fa57f71
patch 8.1.1143: may pass weird strings to file name expansion
Bram Moolenaar <Bram@vim.org>
parents:
14929
diff
changeset
|
20 w! Xxx\{ |
11651
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
21 w! Xxx\$ |
14929
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
22 sandbox call assert_equal("Xxx{", glob('Xxx\{')) |
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
23 sandbox call assert_equal("Xxx$", glob('Xxx\$')) |
12899
9e04de2aa738
patch 8.0.1326: largefile test fails on CI, glob test on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11651
diff
changeset
|
24 call delete('Xxx{') |
9e04de2aa738
patch 8.0.1326: largefile test fails on CI, glob test on MS-Windows
Christian Brabandt <cb@256bit.org>
parents:
11651
diff
changeset
|
25 call delete('Xxx$') |
11651
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
26 endfunction |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
27 |
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
28 function Test_globpath() |
14929
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
29 sandbox call assert_equal("sautest/autoload/globone.vim\nsautest/autoload/globtwo.vim", |
13002
f7b2ecaeb79c
patch 8.0.1377: cannot call a dict function in autoloaded dict
Christian Brabandt <cb@256bit.org>
parents:
12899
diff
changeset
|
30 \ globpath('sautest/autoload', 'glob*.vim')) |
14929
b1df7f99efb7
patch 8.1.0476: memory leaks in test_escaped_glob
Bram Moolenaar <Bram@vim.org>
parents:
13002
diff
changeset
|
31 sandbox call assert_equal(['sautest/autoload/globone.vim', 'sautest/autoload/globtwo.vim'], |
17912
9fac6d0de69a
patch 8.1.1952: more functions can be used as a method
Bram Moolenaar <Bram@vim.org>
parents:
16277
diff
changeset
|
32 \ 'glob*.vim'->globpath('sautest/autoload', 0, 1)) |
11651
140d51d5b5c3
patch 8.0.0708: some tests are old style
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
33 endfunction |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
34 |
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20003
diff
changeset
|
35 " vim: shiftwidth=2 sts=2 expandtab |