diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-21 20:52:35 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-21 22:01:27 +1000 |
commit | 53ce9e12d780c65188236c028a618550b7b87e20 (patch) | |
tree | 21188420f05928567b3b564b0979ffac1584e68f | |
parent | 02b6ac31f190d9423f68fa94d0dfabd34e32600a (diff) | |
download | fengari-53ce9e12d780c65188236c028a618550b7b87e20.tar.gz fengari-53ce9e12d780c65188236c028a618550b7b87e20.tar.bz2 fengari-53ce9e12d780c65188236c028a618550b7b87e20.zip |
tests/test-suite/bitwise.js: Now passes
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | tests/test-suite/bitwise.js (renamed from tests/test-suite/inprogress/bitwise.js) | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -53,6 +53,7 @@ IRC: #fengari on freenode - [x] C API - [x] Auxiliary library - [ ] Run [Lua test suite](https://github.com/lua/tests) + - [x] `bitwise.lua` (16/16) - [x] `calls.lua` (32/32) - [x] `closure.lua` (16/16) - [x] `constructs.lua` (`_soft`) (10/10) @@ -62,7 +63,6 @@ IRC: #fengari on freenode - [x] `nextvar.lua` (44/44) - [x] `strings.lua` (34/34) - [x] `vararg.lua` (8/8) - - [ ] `bitwise.lua` (9/16) - [ ] `coroutine.lua` (32/40) - [ ] `errors.lua` (46/64) - [ ] `goto.lua` (16/18) diff --git a/tests/test-suite/inprogress/bitwise.js b/tests/test-suite/bitwise.js index b742b45..3969bb0 100644 --- a/tests/test-suite/inprogress/bitwise.js +++ b/tests/test-suite/bitwise.js @@ -4,9 +4,9 @@ const test = require('tape'); global.WEB = false; -const lua = require('../../../src/lua.js'); -const lauxlib = require('../../../src/lauxlib.js'); -const lualib = require('../../../src/lualib.js'); +const lua = require('../../src/lua.js'); +const lauxlib = require('../../src/lauxlib.js'); +const lualib = require('../../src/lualib.js'); const prefix = ` |