diff options
Diffstat (limited to 'testes')
-rw-r--r-- | testes/locals.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testes/locals.lua b/testes/locals.lua index 62a88df5..ddb75054 100644 --- a/testes/locals.lua +++ b/testes/locals.lua | |||
@@ -592,6 +592,28 @@ end | |||
592 | 592 | ||
593 | if rawget(_G, "T") then | 593 | if rawget(_G, "T") then |
594 | 594 | ||
595 | do | ||
596 | -- bug in 5.4.3 | ||
597 | -- 'lua_settop' may use a pointer to stack invalidated by 'luaF_close' | ||
598 | |||
599 | -- reduce stack size | ||
600 | collectgarbage(); collectgarbage(); collectgarbage() | ||
601 | |||
602 | -- force a stack reallocation | ||
603 | local function loop (n) | ||
604 | if n < 400 then loop(n + 1) end | ||
605 | end | ||
606 | |||
607 | -- close metamethod will reallocate the stack | ||
608 | local o = setmetatable({}, {__close = function () loop(0) end}) | ||
609 | |||
610 | local script = [[toclose 2; settop 1; return 1]] | ||
611 | |||
612 | assert(T.testC(script, o) == script) | ||
613 | |||
614 | end | ||
615 | |||
616 | |||
595 | -- memory error inside closing function | 617 | -- memory error inside closing function |
596 | local function foo () | 618 | local function foo () |
597 | local y <close> = func2close(function () T.alloccount() end) | 619 | local y <close> = func2close(function () T.alloccount() end) |