diff options
author | James McCoy <jamessan@jamessan.com> | 2018-02-25 04:23:12 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-25 10:23:12 +0100 |
commit | 158f8b7ce3051127918148f7f8e9892a4c9ae34f (patch) | |
tree | 3ce637c31dcafb365d87d8252a989d0db07bb2c4 | |
parent | f72630b7842924d66b536a094fe3d99446a2e0a6 (diff) | |
download | rneovim-158f8b7ce3051127918148f7f8e9892a4c9ae34f.tar.gz rneovim-158f8b7ce3051127918148f7f8e9892a4c9ae34f.tar.bz2 rneovim-158f8b7ce3051127918148f7f8e9892a4c9ae34f.zip |
unittest: Ignore all _Float-prefixed types (#8067)
Previously, we ignored only _Float128. But glibc 2.27 added _Float32
and _Float32x. Rather than play whack-a-mole, ignore everything.
-rw-r--r-- | test/unit/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index 87c838dece..5cc2be50b1 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -138,7 +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, "_Float") 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 = {...} |