mirror of
https://github.com/neovim/neovim.git
synced 2024-12-21 03:35:02 -07:00
vim-patch:8.1.0317: Cscope test fails when using shadow directory
Problem: Cscope test fails when using shadow directory.
Solution: Resolve symlink in Vim. (James McCoy, closes vim/vim#3364)
320bf2d85e
This commit is contained in:
parent
bf10cdfcc0
commit
6fae460867
@ -259,7 +259,12 @@ endfunc
|
|||||||
" Test ":cs add {dir}" (add the {dir}/cscope.out database)
|
" Test ":cs add {dir}" (add the {dir}/cscope.out database)
|
||||||
func Test_cscope_add_dir()
|
func Test_cscope_add_dir()
|
||||||
call mkdir('Xcscopedir', 'p')
|
call mkdir('Xcscopedir', 'p')
|
||||||
call system('cscope -bk -fXcscopedir/cscope.out ../memfile_test.c')
|
|
||||||
|
" Cscope doesn't handle symlinks, so this needs to be resolved in case a
|
||||||
|
" shadow directory is being used.
|
||||||
|
let memfile = resolve('../memfile_test.c')
|
||||||
|
call system('cscope -bk -fXcscopedir/cscope.out ' . memfile)
|
||||||
|
|
||||||
cs add Xcscopedir
|
cs add Xcscopedir
|
||||||
let a = execute('cscope show')
|
let a = execute('cscope show')
|
||||||
let lines = split(a, "\n", 1)
|
let lines = split(a, "\n", 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user