diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-07-18 14:58:15 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2019-07-18 14:58:15 -0300 |
commit | d36a31e6739bcd39c84f637344227af87cfd0ee5 (patch) | |
tree | 68b0049215b0b6cf2a8109e24cb154175bf02c4d /testes/api.lua | |
parent | 024a6071cac749504e0b26a915bda4f52c41a892 (diff) | |
download | lua-d36a31e6739bcd39c84f637344227af87cfd0ee5.tar.gz lua-d36a31e6739bcd39c84f637344227af87cfd0ee5.tar.bz2 lua-d36a31e6739bcd39c84f637344227af87cfd0ee5.zip |
Reviving HARDMEMTESTS
This commit brings a new implementation for HARDMEMTESTS, which forces
an emergency GC whenever possible. It also fixes some issues detected
with this option:
- A small bug in lvm.c: a closure could be collected by an emergency
GC while being initialized.
- Some tests: a memory address can be immediatly reused after a GC;
for instance, two consecutive '{}' expressions can return exactly the
same address, if the first one is not anchored.
Diffstat (limited to 'testes/api.lua')
-rw-r--r-- | testes/api.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testes/api.lua b/testes/api.lua index 8f4e89ac..5da03641 100644 --- a/testes/api.lua +++ b/testes/api.lua | |||
@@ -354,8 +354,11 @@ assert(to("topointer", nil) == null) | |||
354 | assert(to("topointer", "abc") ~= null) | 354 | assert(to("topointer", "abc") ~= null) |
355 | assert(to("topointer", string.rep("x", 10)) == | 355 | assert(to("topointer", string.rep("x", 10)) == |
356 | to("topointer", string.rep("x", 10))) -- short strings | 356 | to("topointer", string.rep("x", 10))) -- short strings |
357 | assert(to("topointer", string.rep("x", 300)) ~= | 357 | do -- long strings |
358 | to("topointer", string.rep("x", 300))) -- long strings | 358 | local s1 = string.rep("x", 300) |
359 | local s2 = string.rep("x", 300) | ||
360 | assert(to("topointer", s1) ~= to("topointer", s2)) | ||
361 | end | ||
359 | assert(to("topointer", T.pushuserdata(20)) ~= null) | 362 | assert(to("topointer", T.pushuserdata(20)) ~= null) |
360 | assert(to("topointer", io.read) ~= null) -- light C function | 363 | assert(to("topointer", io.read) ~= null) -- light C function |
361 | assert(to("topointer", hfunc) ~= null) -- "heavy" C function | 364 | assert(to("topointer", hfunc) ~= null) -- "heavy" C function |