mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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.
This commit is contained in:
parent
f72630b784
commit
158f8b7ce3
@ -138,7 +138,7 @@ local function filter_complex_blocks(body)
|
|||||||
for line in body:gmatch("[^\r\n]+") do
|
for line in body:gmatch("[^\r\n]+") do
|
||||||
if not (string.find(line, "(^)", 1, true) ~= nil
|
if not (string.find(line, "(^)", 1, true) ~= nil
|
||||||
or string.find(line, "_ISwupper", 1, true)
|
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_zone_push_finalizer")
|
||||||
or string.find(line, "msgpack_unpacker_reserve_buffer")
|
or string.find(line, "msgpack_unpacker_reserve_buffer")
|
||||||
or string.find(line, "UUID_NULL") -- static const uuid_t UUID_NULL = {...}
|
or string.find(line, "UUID_NULL") -- static const uuid_t UUID_NULL = {...}
|
||||||
|
Loading…
Reference in New Issue
Block a user