forked from aniani/vim
patch 8.1.1546: in some tests 'tags' is set but not restored
Problem: In some tests 'tags' is set but not restored. (Daniel Hahler) Solution: Restore 'tags'. (closes #4535)
This commit is contained in:
@@ -1100,6 +1100,7 @@ func Test_OptionSet()
|
|||||||
|
|
||||||
" Cleanup
|
" Cleanup
|
||||||
au! OptionSet
|
au! OptionSet
|
||||||
|
" set tags&
|
||||||
for opt in ['nu', 'ai', 'acd', 'ar', 'bs', 'backup', 'cul', 'cp', 'backupext', 'tags', 'spelllang', 'statusline', 'foldignore', 'cmdheight', 'undolevels', 'wrapmargin', 'foldcolumn', 'wrapscan', 'autoread', 'cindent', 'cursorcolumn']
|
for opt in ['nu', 'ai', 'acd', 'ar', 'bs', 'backup', 'cul', 'cp', 'backupext', 'tags', 'spelllang', 'statusline', 'foldignore', 'cmdheight', 'undolevels', 'wrapmargin', 'foldcolumn', 'wrapscan', 'autoread', 'cindent', 'cursorcolumn']
|
||||||
exe printf(":set %s&vim", opt)
|
exe printf(":set %s&vim", opt)
|
||||||
endfor
|
endfor
|
||||||
|
@@ -378,6 +378,7 @@ func Test_getcompletion()
|
|||||||
endfor
|
endfor
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
|
|
||||||
call assert_fails('call getcompletion("", "burp")', 'E475:')
|
call assert_fails('call getcompletion("", "burp")', 'E475:')
|
||||||
endfunc
|
endfunc
|
||||||
|
@@ -237,6 +237,7 @@ func Test_set_completion()
|
|||||||
|
|
||||||
call feedkeys(":set tags=./\\\\ dif\<C-A>\<C-B>\"\<CR>", 'tx')
|
call feedkeys(":set tags=./\\\\ dif\<C-A>\<C-B>\"\<CR>", 'tx')
|
||||||
call assert_equal('"set tags=./\\ diff diffexpr diffopt', @:)
|
call assert_equal('"set tags=./\\ diff diffexpr diffopt', @:)
|
||||||
|
set tags&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_set_errors()
|
func Test_set_errors()
|
||||||
|
@@ -44,6 +44,7 @@ func Test_tagcase()
|
|||||||
endfor
|
endfor
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
set ic&
|
set ic&
|
||||||
setg tc&
|
setg tc&
|
||||||
setl tc&
|
setl tc&
|
||||||
|
@@ -20,6 +20,7 @@ func Test_cancel_ptjump()
|
|||||||
call assert_equal(2, winnr('$'))
|
call assert_equal(2, winnr('$'))
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
quit
|
quit
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
@@ -104,6 +105,7 @@ func Test_tagjump_switchbuf()
|
|||||||
enew | only
|
enew | only
|
||||||
call delete('Xfile1')
|
call delete('Xfile1')
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
set switchbuf&vim
|
set switchbuf&vim
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
@@ -431,7 +433,7 @@ func Test_tagnr_recall()
|
|||||||
tag
|
tag
|
||||||
call assert_equal(bufname('%'), 'Xtest.h')
|
call assert_equal(bufname('%'), 'Xtest.h')
|
||||||
|
|
||||||
set tag&
|
set tags&
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
bwipe Xtest.h
|
bwipe Xtest.h
|
||||||
bwipe Xtest.c
|
bwipe Xtest.c
|
||||||
@@ -467,6 +469,7 @@ func Test_tag_line_toolong()
|
|||||||
endtry
|
endtry
|
||||||
call assert_equal('Ignoring long line in tags file', split(execute('messages'), '\n')[-1])
|
call assert_equal('Ignoring long line in tags file', split(execute('messages'), '\n')[-1])
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
let &verbose = old_vbs
|
let &verbose = old_vbs
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@ func Test_taglist()
|
|||||||
call assert_equal('call cursor(3, 4)', cmd[0]['cmd'])
|
call assert_equal('call cursor(3, 4)', cmd[0]['cmd'])
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
bwipe
|
bwipe
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
@@ -50,6 +51,7 @@ func Test_taglist_native_etags()
|
|||||||
\ map(taglist('set_signals'), {i, v -> [v.name, v.cmd]}))
|
\ map(taglist('set_signals'), {i, v -> [v.name, v.cmd]}))
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_taglist_ctags_etags()
|
func Test_taglist_ctags_etags()
|
||||||
@@ -69,6 +71,7 @@ func Test_taglist_ctags_etags()
|
|||||||
\ map(taglist('set_signals'), {i, v -> [v.name, v.cmd]}))
|
\ map(taglist('set_signals'), {i, v -> [v.name, v.cmd]}))
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_tags_too_long()
|
func Test_tags_too_long()
|
||||||
@@ -110,4 +113,5 @@ func Test_tagsfile_without_trailing_newline()
|
|||||||
call assert_equal('Foo', tl[0].name)
|
call assert_equal('Foo', tl[0].name)
|
||||||
|
|
||||||
call delete('Xtags')
|
call delete('Xtags')
|
||||||
|
set tags&
|
||||||
endfunc
|
endfunc
|
||||||
|
@@ -777,6 +777,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1546,
|
||||||
/**/
|
/**/
|
||||||
1545,
|
1545,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user