summaryrefslogtreecommitdiff
path: root/src/lua.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua.rs')
-rw-r--r--src/lua.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lua.rs b/src/lua.rs
index e5decdf..ec2df98 100644
--- a/src/lua.rs
+++ b/src/lua.rs
@@ -247,6 +247,8 @@ impl Drop for LuaInner {
{
(*ffi::lua_callbacks(self.state())).userdata = ptr::null_mut();
}
+ // This is an internal assertion used in integration tests
+ #[cfg(mlua_test)]
mlua_debug_assert!(
ffi::lua_gettop(extra.ref_thread) == extra.ref_stack_top
&& extra.ref_stack_top as usize == extra.ref_free.len(),