✅ test: check how big Instruction is
parent
3698feeb90
commit
47d5fe3df1
|
@ -425,7 +425,7 @@ fn tailcall () {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn value_size () {
|
fn sizes () {
|
||||||
// Per https://www.lua.org/doc/jucs05.pdf,
|
// Per https://www.lua.org/doc/jucs05.pdf,
|
||||||
// "The Implementation of Lua 5.0",
|
// "The Implementation of Lua 5.0",
|
||||||
//
|
//
|
||||||
|
@ -479,4 +479,6 @@ fn value_size () {
|
||||||
let expected = 8;
|
let expected = 8;
|
||||||
assert! (sz == expected, "{sz} != {expected}");
|
assert! (sz == expected, "{sz} != {expected}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
assert_eq! (size_of::<crate::instruction::Instruction> (), 8);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue