0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.1217: startup test depends on random source file

Problem:    Startup test depends on random source file.
Solution:   Write a test file to find quickfix errors in.
This commit is contained in:
Bram Moolenaar
2020-07-15 11:19:11 +02:00
parent b6e4e4c6f7
commit 1e1f612bd4
2 changed files with 20 additions and 9 deletions

View File

@@ -285,7 +285,15 @@ endfunc
func Test_q_arg()
CheckFeature quickfix
let source_file = has('win32') ? '..\memfile.c' : '../memfile.c'
let lines =<< trim END
/* some file with an error */
main() {
functionCall(arg; arg, arg);
return 666
}
END
call writefile(lines, 'Xbadfile.c')
let after =<< trim [CODE]
call writefile([&errorfile, string(getpos("."))], "Xtestout")
copen
@@ -295,24 +303,24 @@ func Test_q_arg()
" Test with default argument '-q'.
call assert_equal('errors.err', &errorfile)
call writefile(["../memfile.c:208:5: error: expected ';' before '}' token"], 'errors.err')
call writefile(["Xbadfile.c:4:12: error: expected ';' before '}' token"], 'errors.err')
if RunVim([], after, '-q')
let lines = readfile('Xtestout')
call assert_equal(['errors.err',
\ '[0, 208, 1, 0]',
\ source_file . "|208 col 5| error: expected ';' before '}' token"],
\ '[0, 4, 12, 0]',
\ "Xbadfile.c|4 col 12| error: expected ';' before '}' token"],
\ lines)
endif
call delete('Xtestout')
call delete('errors.err')
" Test with explicit argument '-q Xerrors' (with space).
call writefile(["../memfile.c:208:5: error: expected ';' before '}' token"], 'Xerrors')
call writefile(["Xbadfile.c:4:12: error: expected ';' before '}' token"], 'Xerrors')
if RunVim([], after, '-q Xerrors')
let lines = readfile('Xtestout')
call assert_equal(['Xerrors',
\ '[0, 208, 1, 0]',
\ source_file . "|208 col 5| error: expected ';' before '}' token"],
\ '[0, 4, 12, 0]',
\ "Xbadfile.c|4 col 12| error: expected ';' before '}' token"],
\ lines)
endif
call delete('Xtestout')
@@ -321,8 +329,8 @@ func Test_q_arg()
if RunVim([], after, '-qXerrors')
let lines = readfile('Xtestout')
call assert_equal(['Xerrors',
\ '[0, 208, 1, 0]',
\ source_file . "|208 col 5| error: expected ';' before '}' token"],
\ '[0, 4, 12, 0]',
\ "Xbadfile.c|4 col 12| error: expected ';' before '}' token"],
\ lines)
endif
@@ -330,6 +338,7 @@ func Test_q_arg()
let out = system(GetVimCommand() .. ' -q xyz.err')
call assert_equal(3, v:shell_error)
call delete('Xbadfile.c')
call delete('Xtestout')
call delete('Xerrors')
endfunc

View File

@@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1217,
/**/
1216,
/**/