diff options
author | ZyX <kp-pav@yandex.ru> | 2016-02-09 03:20:16 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2016-04-18 02:47:13 +0300 |
commit | 77776b09c684bc2a0c42114fce5a8b04409ec91d (patch) | |
tree | de255689c5cc709b88e065b1a99bffed0e310ac0 /test/unit/helpers.lua | |
parent | c27395ddc84952b94118de94af4c33f56f6beca5 (diff) | |
download | rneovim-77776b09c684bc2a0c42114fce5a8b04409ec91d.tar.gz rneovim-77776b09c684bc2a0c42114fce5a8b04409ec91d.tar.bz2 rneovim-77776b09c684bc2a0c42114fce5a8b04409ec91d.zip |
eval/encode: Fix writing strings starting with NL to list
Error [found][1] by oni-link.
[1]: https://github.com/neovim/neovim/pull/4131/files#r52239384
Diffstat (limited to 'test/unit/helpers.lua')
-rw-r--r-- | test/unit/helpers.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 7b43b2218c..9b9c1fef0f 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -28,8 +28,10 @@ local function filter_complex_blocks(body) local result = {} for line in body:gmatch("[^\r\n]+") do - if not (string.find(line, "(^)", 1, true) ~= nil or - string.find(line, "_ISwupper", 1, true)) then + if not (string.find(line, "(^)", 1, true) ~= nil + or string.find(line, "_ISwupper", 1, true) + or string.find(line, "msgpack_zone_push_finalizer") + or string.find(line, "msgpack_unpacker_reserve_buffer")) then result[#result + 1] = line end end @@ -103,6 +105,11 @@ local function cimport(...) -- request a sorted version of the new lines (same relative order as the -- original preprocessed file) and feed that to the LuaJIT ffi local new_lines = new_cdefs:to_table() + if os.getenv('NVIM_TEST_PRINT_CDEF') == '1' then + for lnum, line in ipairs(new_lines) do + print(lnum, line) + end + end ffi.cdef(table.concat(new_lines, "\n")) return libnvim |