aboutsummaryrefslogtreecommitdiff
path: root/tests/test-suite/events.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-05-21 22:48:29 +1000
committerdaurnimator <quae@daurnimator.com>2017-05-22 00:50:30 +1000
commit50323a75a96cfa095c1f968dd001b0f7107a722b (patch)
tree483be766d1dcba496b7aa205da8c972fc02c53fd /tests/test-suite/events.js
parentcc3e3c93585d81304954131a9a3982f0786426b7 (diff)
downloadfengari-50323a75a96cfa095c1f968dd001b0f7107a722b.tar.gz
fengari-50323a75a96cfa095c1f968dd001b0f7107a722b.tar.bz2
fengari-50323a75a96cfa095c1f968dd001b0f7107a722b.zip
src/lbaselib.js: Implement argument checking in collectgarbage
Diffstat (limited to 'tests/test-suite/events.js')
-rw-r--r--tests/test-suite/events.js6
1 files changed, 3 insertions, 3 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