issue #135 start adding tests

gccjit-ravi534
Dibyendu Majumdar 6 years ago
parent 935c31f2a7
commit d0bf6616d5

@ -0,0 +1,21 @@
local tests = {}
tests.RETURN = function()
return
end
tests.LOADK = function()
return 1, 4.2, 'hello'
end
tests.MOVE = function(a, b)
local c,d = a,b
return c,d
end
for k,v in pairs(tests) do
print(k)
ravi.dumplua(v)
--v()
end
Loading…
Cancel
Save