comparison src/testdir/test_escaped_glob.vim @ 21765:08940efa6b4e v8.2.1432

patch 8.2.1432: various inconsistencies in test files Commit: https://github.com/vim/vim/commit/6d91bcb4d23b5c6a0be72c384beaf385e2d9d606 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 12 18:50:36 2020 +0200 patch 8.2.1432: various inconsistencies in test files Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
author Bram Moolenaar <Bram@vim.org>
date Wed, 12 Aug 2020 19:00:08 +0200
parents e373843e2980
children
comparison
equal deleted inserted replaced
21764:476b6faad407 21765:08940efa6b4e
1 " Test whether glob()/globpath() return correct results with certain escaped 1 " Test whether glob()/globpath() return correct results with certain escaped
2 " characters. 2 " characters.
3
4 source check.vim
3 5
4 func SetUp() 6 func SetUp()
5 " consistent sorting of file names 7 " consistent sorting of file names
6 set nofileignorecase 8 set nofileignorecase
7 endfunction 9 endfunction
8 10
9 function Test_glob() 11 function Test_glob()
10 if !has('unix') 12 " This test fails on Windows because of the special characters in the
11 " This test fails on Windows because of the special characters in the 13 " filenames. Disable the test on non-Unix systems for now.
12 " filenames. Disable the test on non-Unix systems for now. 14 CheckUnix
13 return
14 endif
15 15
16 " Execute these commands in the sandbox, so that using the shell fails. 16 " Execute these commands in the sandbox, so that using the shell fails.
17 " Setting 'shell' to an invalid name causes a memory leak. 17 " Setting 'shell' to an invalid name causes a memory leak.
18 sandbox call assert_equal("", glob('Xxx\{')) 18 sandbox call assert_equal("", glob('Xxx\{'))
19 sandbox call assert_equal("", 'Xxx\$'->glob()) 19 sandbox call assert_equal("", 'Xxx\$'->glob())
29 sandbox call assert_equal("sautest/autoload/globone.vim\nsautest/autoload/globtwo.vim", 29 sandbox call assert_equal("sautest/autoload/globone.vim\nsautest/autoload/globtwo.vim",
30 \ globpath('sautest/autoload', 'glob*.vim')) 30 \ globpath('sautest/autoload', 'glob*.vim'))
31 sandbox call assert_equal(['sautest/autoload/globone.vim', 'sautest/autoload/globtwo.vim'], 31 sandbox call assert_equal(['sautest/autoload/globone.vim', 'sautest/autoload/globtwo.vim'],
32 \ 'glob*.vim'->globpath('sautest/autoload', 0, 1)) 32 \ 'glob*.vim'->globpath('sautest/autoload', 0, 1))
33 endfunction 33 endfunction
34
35 " vim: shiftwidth=2 sts=2 expandtab