Browse Source

Fix: delete unsupported feature from test

Akeit0 1 year ago
parent
commit
87b421482b
1 changed files with 10 additions and 5 deletions
  1. 10 5
      tests/Lua.Tests/tests-lua/coroutine.lua

+ 10 - 5
tests/Lua.Tests/tests-lua/coroutine.lua

@@ -1,7 +1,7 @@
 print "testing coroutines"
 print "testing coroutines"
 
 
 -- local debug = require'debug'
 -- local debug = require'debug'
-
+local weakTableSupported = false
 local f
 local f
 
 
 local main, ismain = coroutine.running()
 local main, ismain = coroutine.running()
@@ -205,8 +205,10 @@ C[1] = x;
 local f = x()
 local f = x()
 assert(f() == 21 and x()() == 32 and x() == f)
 assert(f() == 21 and x()() == 32 and x() == f)
 x = nil
 x = nil
-collectgarbage()
-assert(C[1] == nil)
+if weakTableSupported then
+  collectgarbage()
+  assert(C[1] == nil)
+end
 assert(f() == 43 and f() == 53)
 assert(f() == 43 and f() == 53)
 
 
 
 
@@ -239,8 +241,11 @@ assert(a and b == 3)
 assert(coroutine.status(co1) == 'dead')
 assert(coroutine.status(co1) == 'dead')
 
 
 -- infinite recursion of coroutines
 -- infinite recursion of coroutines
-a = function(a) coroutine.wrap(a)(a) end
-assert(not pcall(a, a))
+-- C# cannot catch stack overflow exception 
+if false then
+  local a = coroutine.wrap(function () a() end)
+  assert(not pcall(a))
+end
 
 
 
 
 -- access to locals of erroneous coroutines
 -- access to locals of erroneous coroutines