aboutsummaryrefslogtreecommitdiff
path: root/testes/api.lua
diff options
context:
space:
mode:
Diffstat (limited to 'testes/api.lua')
-rw-r--r--testes/api.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/testes/api.lua b/testes/api.lua
index 988250f7..a6ddca8e 100644
--- a/testes/api.lua
+++ b/testes/api.lua
@@ -987,7 +987,7 @@ do
987 987
988 local a = T.testC([[ 988 local a = T.testC([[
989 call 0 1 # create resource 989 call 0 1 # create resource
990 tobeclosed # mark it to be closed 990 toclose # mark it to be closed
991 return 1 991 return 1
992 ]], newresource) 992 ]], newresource)
993 assert(a[1] == 11) 993 assert(a[1] == 11)
@@ -996,7 +996,7 @@ do
996 -- repeat the test, but calling function in a 'multret' context 996 -- repeat the test, but calling function in a 'multret' context
997 local a = {T.testC([[ 997 local a = {T.testC([[
998 call 0 1 # create resource 998 call 0 1 # create resource
999 tobeclosed # mark it to be closed 999 toclose # mark it to be closed
1000 return 2 1000 return 2
1001 ]], newresource)} 1001 ]], newresource)}
1002 assert(type(a[1]) == "string" and a[2][1] == 11) 1002 assert(type(a[1]) == "string" and a[2][1] == 11)
@@ -1005,7 +1005,7 @@ do
1005 -- error 1005 -- error
1006 local a, b = pcall(T.testC, [[ 1006 local a, b = pcall(T.testC, [[
1007 call 0 1 # create resource 1007 call 0 1 # create resource
1008 tobeclosed # mark it to be closed 1008 toclose # mark it to be closed
1009 error # resource is the error object 1009 error # resource is the error object
1010 ]], newresource) 1010 ]], newresource)
1011 assert(a == false and b[1] == 11) 1011 assert(a == false and b[1] == 11)
@@ -1019,10 +1019,10 @@ do
1019 local a = T.testC([[ 1019 local a = T.testC([[
1020 pushvalue 2 1020 pushvalue 2
1021 call 0 1 # create resource 1021 call 0 1 # create resource
1022 tobeclosed # mark it to be closed 1022 toclose # mark it to be closed
1023 pushvalue 2 1023 pushvalue 2
1024 call 0 1 # create another resource 1024 call 0 1 # create another resource
1025 tobeclosed # mark it to be closed 1025 toclose # mark it to be closed
1026 pushvalue 3 1026 pushvalue 3
1027 pushint 2 # there should be two open resources 1027 pushint 2 # there should be two open resources
1028 call 1 0 1028 call 1 0
@@ -1102,7 +1102,7 @@ end)
1102testamem("to-be-closed variables", function() 1102testamem("to-be-closed variables", function()
1103 local flag 1103 local flag
1104 do 1104 do
1105 local scoped x = function () flag = true end 1105 local *toclose x = function () flag = true end
1106 flag = false 1106 flag = false
1107 local x = {} 1107 local x = {}
1108 end 1108 end