aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-06 08:15:05 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-06 08:15:05 +0100
commitdfe6b5f2c1bde6900f81f1bb6ddc49724baa0471 (patch)
treec3888f58ae7aba18c44a5859606c191b9b70b550 /tests
parent86a09b63a6a316ee0855ce1d5307ea89f0b6f1ec (diff)
downloadfengari-dfe6b5f2c1bde6900f81f1bb6ddc49724baa0471.tar.gz
fengari-dfe6b5f2c1bde6900f81f1bb6ddc49724baa0471.tar.bz2
fengari-dfe6b5f2c1bde6900f81f1bb6ddc49724baa0471.zip
RETURN follow lua's source more accurately
Diffstat (limited to 'tests')
-rw-r--r--tests/lvm.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lvm.js b/tests/lvm.js
index 54c40ae..d328b6b 100644
--- a/tests/lvm.js
+++ b/tests/lvm.js
@@ -61,7 +61,7 @@ test('LOADK, RETURN', function (t) {
}, "Program executed without errors");
t.strictEqual(
- vm.L.stack[vm.L.top - 1].value,
+ vm.L.stack[vm.L.top].value,
"hello world",
"Program output is correct"
);
@@ -85,7 +85,7 @@ test('MOV', function (t) {
}, "Program executed without errors");
t.strictEqual(
- vm.L.stack[vm.L.top - 1].value,
+ vm.L.stack[vm.L.top].value,
"hello world",
"Program output is correct"
);
@@ -108,7 +108,7 @@ test('Binary op', function (t) {
}, "Program executed without errors");
t.deepEqual(
- vm.L.stack.slice(vm.L.top - 12 - 1, vm.L.top - 1).map(function (e) { return e.value; }),
+ vm.L.stack.slice(vm.L.top, vm.L.top + 12).map(function (e) { return e.value; }),
[15, -5, 50, 0.5, 5, 9765625.0, 0, 0, 15, 15, 5120, 0],
"Program output is correct"
);
@@ -132,7 +132,7 @@ test('Unary op, LOADBOOL', function (t) {
}, "Program executed without errors");
t.deepEqual(
- vm.L.stack.slice(vm.L.top - 3 - 1, vm.L.top - 1).map(function (e) { return e.value; }),
+ vm.L.stack.slice(vm.L.top - 3, vm.L.top).map(function (e) { return e.value; }),
[-5, true, -6],
"Program output is correct"
);
@@ -155,7 +155,7 @@ test('NEWTABLE', function (t) {
}, "Program executed without errors");
t.ok(
- vm.L.stack[vm.L.top - 1] instanceof Table,
+ vm.L.stack[vm.L.top] instanceof Table,
"Program output is correct"
);
});
@@ -182,7 +182,7 @@ test('CALL', function (t) {
}, "Program executed without errors");
t.strictEqual(
- vm.L.stack[vm.L.top - 1].value,
+ vm.L.stack[vm.L.top].value,
3,
"Program output is correct"
);