aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-01 15:07:02 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-03-01 15:07:02 +0100
commit699630a97161ef970c40af073f2943c7d90043e7 (patch)
tree284880debd33973254520ea8690aa28ac88ead1c /tests
parent69a7af7a8af1e737fe6afe47998b90c8fd778998 (diff)
downloadfengari-699630a97161ef970c40af073f2943c7d90043e7.tar.gz
fengari-699630a97161ef970c40af073f2943c7d90043e7.tar.bz2
fengari-699630a97161ef970c40af073f2943c7d90043e7.zip
[Parsing tests] Unary op, LOADBOOL
Diffstat (limited to 'tests')
-rw-r--r--tests/lexparse.js32
1 files changed, 31 insertions, 1 deletions
diff --git a/tests/lexparse.js b/tests/lexparse.js
index 2604e72..1a1a7b3 100644
--- a/tests/lexparse.js
+++ b/tests/lexparse.js
@@ -10,6 +10,7 @@ const lapi = require("../src/lapi.js");
const lauxlib = require("../src/lauxlib.js");
const linit = require('../src/linit.js');
+// Roughly the same tests as test/lvm.js to cover all opcodes
test('LOADK, RETURN', function (t) {
let luaCode = `
@@ -97,4 +98,33 @@ test('Binary op', function (t) {
"Program output is correct"
);
-}); \ No newline at end of file
+});
+
+
+test('Unary op, LOADBOOL', function (t) {
+ let luaCode = `
+ local a = 5
+ local b = false
+ return -a, not b, ~a
+ `, L;
+
+ t.plan(1);
+
+ // t.doesNotThrow(function () {
+
+ L = lauxlib.luaL_newstate();
+
+ linit.luaL_openlibs(L);
+
+ lapi.lua_load(L, null, luaCode, "test", "text");
+
+ lapi.lua_call(L, 0, -1);
+
+ // }, "JS Lua program ran without error");
+
+ t.deepEqual(
+ L.stack.slice(L.top - 3, L.top).map(e => e.value),
+ [-5, true, -6],
+ "Program output is correct"
+ );
+});