Files
neovim/test/functional/legacy/106_errorformat_spec.lua
ZyX ff470bb853 functests: Check logs in lua code
It is otherwise impossible to determine which test failed sanitizer/valgrind
check. test/functional/helpers.lua module return was changed so that tests which
do not provide after_each function to get new check will automatically fail.
2016-06-10 21:50:49 +03:00

26 lines
919 B
Lua

-- Tests for errorformat.
local helpers = require('test.functional.helpers')(after_each)
local clear = helpers.clear
local execute, expect = helpers.execute, helpers.expect
describe('errorformat', function()
setup(clear)
it('is working', function()
execute("set efm=%EEEE%m,%WWWW%m,%+CCCC%.%#,%-GGGG%.%#")
execute("cgetexpr ['WWWW', 'EEEE', 'CCCC']")
execute("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))")
execute("cgetexpr ['WWWW', 'GGGG', 'EEEE', 'CCCC']")
execute("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))")
execute("cgetexpr ['WWWW', 'GGGG', 'ZZZZ', 'EEEE', 'CCCC', 'YYYY']")
execute("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))")
expect([=[
[['W', 1], ['E^@CCCC', 1]]
[['W', 1], ['E^@CCCC', 1]]
[['W', 1], ['ZZZZ', 0], ['E^@CCCC', 1], ['YYYY', 0]]]=])
end)
end)