mirror of
https://github.com/TangentFoxy/inspect.lua.git
synced 2025-07-28 02:52:18 +00:00
Support LuaJIT cdata and ctype values in Inspector:putValue().
Add special handling for cdata and ctype types provided by LuaJIT: use tostring() to print values of those types, which either provides a more meaningful default type description (e.g. 'ctype<uint64_t>' instead of '<ctype 1>') or a user-defined value as described at http://luajit.org/ext_ffi_api.html#tostring
This commit is contained in:
@@ -71,7 +71,8 @@ describe( 'inspect', function()
|
||||
|
||||
if is_luajit then
|
||||
it('works with luajit cdata', function()
|
||||
assert.equals('{ <cdata 1>, <cdata 2>, <cdata 3> }', inspect({ ffi.new("int", 1), ffi.typeof("int"), ffi.typeof("int")(1) }))
|
||||
assert.equals('{ cdata<int>: PTR, ctype<int>, cdata<int>: PTR }',
|
||||
inspect({ ffi.new("int", 1), ffi.typeof("int"), ffi.typeof("int")(1) }):gsub('(0x%x+)','PTR'))
|
||||
end)
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user