mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
vim-patch:9.0.1972: win32: missing '**' expansion test (#25476)
Problem: win32: missing '**' expansion test (after v9.0.1947)
Solution: Add test for MS-Windows
win32: Add "**" test
Vim supports "**" on MS-Windows. However, it is not tested by
`Test_glob_extended_bash`.
Unlike Unix, it doesn't use 'shell' and doesn't support {,} expansion.
So, I added as a separate test.
related: vim/vim#13205
closes: vim/vim#13250
4a1ad55564
Co-authored-by: Ken Takata <kentkt@csc.jp>
This commit is contained in:
@@ -3303,4 +3303,22 @@ func Test_glob_extended_bash()
|
||||
let &shell=_shell
|
||||
endfunc
|
||||
|
||||
" Test for glob() with extended patterns (MS-Windows)
|
||||
" Vim doesn't use 'shell' to expand wildcards on MS-Windows.
|
||||
" Unlike bash, it doesn't support {,} expansion.
|
||||
func Test_glob_extended_mswin()
|
||||
CheckMSWindows
|
||||
|
||||
call mkdir('Xtestglob/foo/bar/src', 'p')
|
||||
call writefile([], 'Xtestglob/foo/bar/src/foo.sh')
|
||||
call writefile([], 'Xtestglob/foo/bar/src/foo.h')
|
||||
call writefile([], 'Xtestglob/foo/bar/src/foo.cpp')
|
||||
|
||||
" Sort output of glob() otherwise we end up with different
|
||||
" ordering depending on whether file system is case-sensitive.
|
||||
let expected = ['Xtestglob/foo/bar/src/foo.cpp', 'Xtestglob/foo/bar/src/foo.h', 'Xtestglob/foo/bar/src/foo.sh']
|
||||
call assert_equal(expected, sort(glob('Xtestglob/**/foo.*', 0, 1)))
|
||||
call delete('Xtestglob', 'rf')
|
||||
endfunc
|
||||
|
||||
" vim: shiftwidth=2 sts=2 expandtab
|
||||
|
||||
Reference in New Issue
Block a user