mirror of
https://github.com/vim/vim.git
synced 2025-12-10 18:46:57 -05:00
patch 9.1.1956: tests: test_sort.vim leaves swapfiles behind
Problem: tests: test_sort.vim leaves swapfiles behind Solution: Close open buffers using :bw! instead of :close! Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@ -1500,7 +1500,7 @@ func Test_sort_followed_by_cmd()
|
|||||||
call setline(1, ['3b', '1c', '2a'])
|
call setline(1, ['3b', '1c', '2a'])
|
||||||
%sort /\d\+/ " sort alphabetically
|
%sort /\d\+/ " sort alphabetically
|
||||||
call assert_equal(['2a', '3b', '1c'], getline(1, '$'))
|
call assert_equal(['2a', '3b', '1c'], getline(1, '$'))
|
||||||
close!
|
bw!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for :sort using last search pattern
|
" Test for :sort using last search pattern
|
||||||
@ -1510,7 +1510,7 @@ func Test_sort_last_search_pat()
|
|||||||
call setline(1, ['3b', '1c', '2a'])
|
call setline(1, ['3b', '1c', '2a'])
|
||||||
sort //
|
sort //
|
||||||
call assert_equal(['2a', '3b', '1c'], getline(1, '$'))
|
call assert_equal(['2a', '3b', '1c'], getline(1, '$'))
|
||||||
close!
|
bw!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for :sort with no last search pattern
|
" Test for :sort with no last search pattern
|
||||||
@ -1540,7 +1540,7 @@ func Test_sort_with_marks()
|
|||||||
call assert_equal(2, line("'a"))
|
call assert_equal(2, line("'a"))
|
||||||
call assert_equal(3, line("'b"))
|
call assert_equal(3, line("'b"))
|
||||||
call assert_equal(1, line("'c"))
|
call assert_equal(1, line("'c"))
|
||||||
close!
|
bw!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for sort() using a dict function
|
" Test for sort() using a dict function
|
||||||
|
|||||||
@ -729,6 +729,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 */
|
||||||
|
/**/
|
||||||
|
1956,
|
||||||
/**/
|
/**/
|
||||||
1955,
|
1955,
|
||||||
/**/
|
/**/
|
||||||
|
|||||||
Reference in New Issue
Block a user