summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Giannangeli <giann008@gmail.com>2017-05-25 15:10:57 +0200
committerBenoit Giannangeli <giann008@gmail.com>2017-05-25 15:10:57 +0200
commit393e1a61804eb33e57d92cecd31d62afbef47d3f (patch)
treea7865785b83293b1c9eda8b90a5cc8e82460fef4 /tests
parente2e60488fb92a3ccd09eb0dc005d88ceb657b1f7 (diff)
downloadfengari-393e1a61804eb33e57d92cecd31d62afbef47d3f.tar.gz
fengari-393e1a61804eb33e57d92cecd31d62afbef47d3f.tar.bz2
fengari-393e1a61804eb33e57d92cecd31d62afbef47d3f.zip
ltests.js: testJS/C
Diffstat (limited to 'tests')
-rw-r--r--tests/test-suite/ltests.js32
1 files changed, 30 insertions, 2 deletions
diff --git a/tests/test-suite/ltests.js b/tests/test-suite/ltests.js
index 1c8fe6b..f9d75a6 100644
--- a/tests/test-suite/ltests.js
+++ b/tests/test-suite/ltests.js
@@ -224,7 +224,7 @@ const runJS = function(L, L1, pc) {
} else if (inst === "pushbool") {
lua.lua_pushboolean(L1, getnum(L, L1, pc));
} else if (inst === "pushcclosure") {
- lua.lua_pushcclosure(L1, testC, getnum(L, L1, pc));
+ lua.lua_pushcclosure(L1, testJS, getnum(L, L1, pc));
} else if (inst === "pushint") {
lua.lua_pushinteger(L1, getnum(L, L1, pc));
} else if (inst === "pushnil") {
@@ -323,6 +323,32 @@ const runJS = function(L, L1, pc) {
return 0;
};
+
+const testJS = function(L) {
+ let L1;
+ let pc;
+ if (lua.lua_isuserdata(L, 1)) {
+ L1 = getstate(L);
+ pc = lauxlib.luaL_checkstring(L, 2);
+ }
+ else if (lua.lua_isthread(L, 1)) {
+ L1 = lua.lua_tothread(L, 1);
+ pc = lauxlib.luaL_checkstring(L, 2);
+ }
+ else {
+ L1 = L;
+ pc = lauxlib.luaL_checkstring(L, 1);
+ }
+ return runJS(L, L1, { script: pc, offset: 0 });
+};
+
+const getstate = function(L) {
+ let L1 = lua.lua_touserdata(L, 1);
+ lauxlib.luaL_argcheck(L, L1 !== null, 1, lua.to_luastring("state expected", true));
+ return L1;
+};
+
+
const tpanic = function(L) {
console.error(`PANIC: unprotected error in call to Lua API (${lua.lua_tojsstring(L, -1)})\n`);
return process.exit(1); /* do not return to Lua */
@@ -415,7 +441,9 @@ const coresume = function(L) {
const tests_funcs = {
"newuserdata": newuserdata,
"resume": coresume,
- "sethook": sethook
+ "sethook": sethook,
+ "testJS": testJS,
+ "testC": testJS
};
const luaB_opentests = function(L) {