summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-06-17 17:42:07 +1000
committerdaurnimator <quae@daurnimator.com>2017-06-17 17:42:07 +1000
commitdd9e8a96e3ec7a7698c36e3612fbda12d7de2d0f (patch)
treedfeb5594c2e8dc9d7fe89cd9251363dbcaaa8d5e /tests
parentb32d8ec4d12f48ff4930f5b98b744661f974b0d4 (diff)
downloadfengari-dd9e8a96e3ec7a7698c36e3612fbda12d7de2d0f.tar.gz
fengari-dd9e8a96e3ec7a7698c36e3612fbda12d7de2d0f.tar.bz2
fengari-dd9e8a96e3ec7a7698c36e3612fbda12d7de2d0f.zip
src/lstrlib.js: a 'long' is 4 bytes in JS
Diffstat (limited to 'tests')
-rw-r--r--tests/test-suite/inprogress/tpack.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test-suite/inprogress/tpack.js b/tests/test-suite/inprogress/tpack.js
index 64f0cc9..b5ae5a9 100644
--- a/tests/test-suite/inprogress/tpack.js
+++ b/tests/test-suite/inprogress/tpack.js
@@ -80,12 +80,11 @@ test("[test-suite] tpack: minimum behavior for integer formats", function (t) {
assert(unpack("h", pack("h", 0x7fff)) == 0x7fff)
assert(unpack("h", pack("h", -0x8000)) == -0x8000)
- -- TODO: JS mask will force a value between 0 and 255
- -- assert(unpack("L", pack("L", 0xffffffff)) == 0xffffffff)
+ assert(unpack("L", pack("L", 0xffffffff)) == 0xffffffff)
assert(unpack("l", pack("l", 0x7fffffff)) == 0x7fffffff)
assert(unpack("l", pack("l", -0x80000000)) == -0x80000000)
`, L;
-
+
t.plan(2);
t.doesNotThrow(function () {