aboutsummaryrefslogtreecommitdiff
path: root/tests/test.lua
diff options
context:
space:
mode:
authorPhilipp Janda <siffiejoe@gmx.net>2015-05-20 07:25:48 +0200
committerPhilipp Janda <siffiejoe@gmx.net>2015-05-20 07:25:48 +0200
commitba065189ae67822ac9c69cc6ba633e3e8e123ef6 (patch)
tree8f064b13129834749ae72c03c15e46ab20adadc2 /tests/test.lua
parentae91294546c2edc60e3349e909740f15c939f1af (diff)
downloadlua-compat-5.3-ba065189ae67822ac9c69cc6ba633e3e8e123ef6.tar.gz
lua-compat-5.3-ba065189ae67822ac9c69cc6ba633e3e8e123ef6.tar.bz2
lua-compat-5.3-ba065189ae67822ac9c69cc6ba633e3e8e123ef6.zip
Add luaL_execresult to C API.
Diffstat (limited to 'tests/test.lua')
-rwxr-xr-xtests/test.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 856230b..f8fa894 100755
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -700,5 +700,10 @@ print(pcall(mod.tolstring, t))
700 700
701___'' 701___''
702print(mod.buffer()) 702print(mod.buffer())
703
704___''
705print(mod.exec("exit 0"))
706print(mod.exec("exit 1"))
707print(mod.exec("exit 25"))
703___'' 708___''
704 709