diff options
| author | Shougo <Shougo.Matsu@gmail.com> | 2021-05-07 21:07:13 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-07 08:07:13 -0400 |
| commit | 4be0e92db01a502863ac4bb26dd0fee16d833145 (patch) | |
| tree | e6e578f6d598769c2a465974c07c29eca1aadddf /src/nvim/testdir/test_functions.vim | |
| parent | 17434b88b4892218386b49b400e7eb6d265000ff (diff) | |
| download | rneovim-4be0e92db01a502863ac4bb26dd0fee16d833145.tar.gz rneovim-4be0e92db01a502863ac4bb26dd0fee16d833145.tar.bz2 rneovim-4be0e92db01a502863ac4bb26dd0fee16d833145.zip | |
vim-patch:8.1.1378: delete() can not handle a file name that looks like a pattern (#12784)
Problem: Delete() can not handle a file name that looks like a pattern.
Solution: Use readdir() instead of appending "/*" and expanding wildcards.
(Ken Takata, closes vim/vim#4424, closes vim/vim#696)
https://github.com/vim/vim/commit/701ff0a3e53d253d7300c385e582659bbff7860d
Diffstat (limited to 'src/nvim/testdir/test_functions.vim')
| -rw-r--r-- | src/nvim/testdir/test_functions.vim | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_functions.vim b/src/nvim/testdir/test_functions.vim index 93f567b3a0..c280aedffb 100644 --- a/src/nvim/testdir/test_functions.vim +++ b/src/nvim/testdir/test_functions.vim @@ -1402,6 +1402,10 @@ func Test_bufadd_bufload() endfunc func Test_readdir() + if isdirectory('Xdir') + call delete('Xdir', 'rf') + endif + call mkdir('Xdir') call writefile([], 'Xdir/foo.txt') call writefile([], 'Xdir/bar.txt') @@ -1456,4 +1460,19 @@ func Test_default_arg_value() call assert_equal('msg', HasDefault()) endfunc +func Test_delete_rf() + call mkdir('Xdir') + call writefile([], 'Xdir/foo.txt') + call writefile([], 'Xdir/bar.txt') + call mkdir('Xdir/[a-1]') " issue #696 + call writefile([], 'Xdir/[a-1]/foo.txt') + call writefile([], 'Xdir/[a-1]/bar.txt') + call assert_true(filereadable('Xdir/foo.txt')) + call assert_true(filereadable('Xdir/[a-1]/foo.txt')) + + call assert_equal(0, delete('Xdir', 'rf')) + call assert_false(filereadable('Xdir/foo.txt')) + call assert_false(filereadable('Xdir/[a-1]/foo.txt')) +endfunc + " vim: shiftwidth=2 sts=2 expandtab |