mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 18:36:30 +00:00
vim-patch:8.1.1941: getftype() test fails on Mac #10894
Problem: getftype() test fails on Mac.
Solution: Skip /dev/fd/.
ad5db44c01
This commit is contained in:

committed by
Justin M. Keyes

parent
6024fb5267
commit
16c289f217
@@ -143,10 +143,13 @@ func Test_getftype()
|
||||
endif
|
||||
|
||||
for cdevfile in systemlist('find /dev -type c -maxdepth 2 2>/dev/null')
|
||||
" On Mac /def/fd/2 is found but the type is "fifo"
|
||||
if cdevfile !~ '/dev/fd/'
|
||||
let type = getftype(cdevfile)
|
||||
" ignore empty result, can happen if the file disappeared
|
||||
if type != ''
|
||||
call assert_equal('cdev', type)
|
||||
call assert_equal('cdev', type, 'for ' .. cdevfile)
|
||||
endif
|
||||
endif
|
||||
endfor
|
||||
|
||||
@@ -154,7 +157,7 @@ func Test_getftype()
|
||||
let type = getftype(bdevfile)
|
||||
" ignore empty result, can happen if the file disappeared
|
||||
if type != ''
|
||||
call assert_equal('bdev', type)
|
||||
call assert_equal('bdev', type, 'for ' .. bdevfile)
|
||||
endif
|
||||
endfor
|
||||
|
||||
@@ -164,7 +167,7 @@ func Test_getftype()
|
||||
let type = getftype(socketfile)
|
||||
" ignore empty result, can happen if the file disappeared
|
||||
if type != ''
|
||||
call assert_equal('socket', type)
|
||||
call assert_equal('socket', type, 'for ' .. socketfile)
|
||||
endif
|
||||
endfor
|
||||
|
||||
|
Reference in New Issue
Block a user