diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-21 22:48:29 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-22 00:50:30 +1000 |
commit | 50323a75a96cfa095c1f968dd001b0f7107a722b (patch) | |
tree | 483be766d1dcba496b7aa205da8c972fc02c53fd /tests | |
parent | cc3e3c93585d81304954131a9a3982f0786426b7 (diff) | |
download | fengari-50323a75a96cfa095c1f968dd001b0f7107a722b.tar.gz fengari-50323a75a96cfa095c1f968dd001b0f7107a722b.tar.bz2 fengari-50323a75a96cfa095c1f968dd001b0f7107a722b.zip |
src/lbaselib.js: Implement argument checking in collectgarbage
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-suite/events.js | 6 | ||||
-rw-r--r-- | tests/test-suite/nextvar.js | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/test-suite/events.js b/tests/test-suite/events.js index 14391f2..d5ed5ae 100644 --- a/tests/test-suite/events.js +++ b/tests/test-suite/events.js @@ -17,7 +17,7 @@ test("[test-suite] events: testing metatable", function (t) { _ENV = setmetatable({}, {__index=_G}) - collectgarbage() + --collectgarbage() X = X+10 assert(X == 30 and _G.X == 20) @@ -57,7 +57,7 @@ test("[test-suite] events: testing metatable", function (t) { a.parent = {z=25, x=12, [4] = 24} assert(a[1] == 10 and a.z == 28 and a[4] == 27 and a.x == "10") - collectgarbage() + --collectgarbage() a = setmetatable({}, t) function f(t, i, v) rawset(t, i, v-3) end @@ -244,7 +244,7 @@ test("[test-suite] events: test comparison", function (t) { let luaCode = ` t = {} t.__lt = function (a,b,c) - collectgarbage() + --collectgarbage() assert(c == nil) if type(a) == 'table' then a = a.x end if type(b) == 'table' then b = b.x end diff --git a/tests/test-suite/nextvar.js b/tests/test-suite/nextvar.js index 6cf7c74..d119d97 100644 --- a/tests/test-suite/nextvar.js +++ b/tests/test-suite/nextvar.js @@ -658,7 +658,7 @@ test("[test-suite] nextvar: erasing values", function (t) { n = n+1 assert(t[k] == v) t[k] = nil - collectgarbage() + --collectgarbage() assert(t[k] == nil) end assert(n == 5) |