diff options
author | James McCoy <jamessan@jamessan.com> | 2017-11-29 15:23:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 15:23:49 -0500 |
commit | e0466dc5925dbe9c47c9b7aebbe8fe55767dd008 (patch) | |
tree | 9b40e4d3d19bb97936e24011d4645a0327117f43 | |
parent | 2d732a11b1ef12b3a3458f45f2f170954ad3bdc6 (diff) | |
parent | 59f4bd435c6754f475dfb61bb6c881ce914b17e6 (diff) | |
download | rneovim-e0466dc5925dbe9c47c9b7aebbe8fe55767dd008.tar.gz rneovim-e0466dc5925dbe9c47c9b7aebbe8fe55767dd008.tar.bz2 rneovim-e0466dc5925dbe9c47c9b7aebbe8fe55767dd008.zip |
Merge pull request #7657 from jamessan/float128-ffi
unittest: Ignore _Float128 types in ffi
-rw-r--r-- | test/unit/helpers.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 4b9f185156..ac5e394a54 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -138,6 +138,7 @@ local function filter_complex_blocks(body) for line in body:gmatch("[^\r\n]+") do if not (string.find(line, "(^)", 1, true) ~= nil or string.find(line, "_ISwupper", 1, true) + or string.find(line, "_Float128") or string.find(line, "msgpack_zone_push_finalizer") or string.find(line, "msgpack_unpacker_reserve_buffer") or string.find(line, "UUID_NULL") -- static const uuid_t UUID_NULL = {...} |