diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/jit-test/tests/bigint/bigint-not.js | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/bigint/bigint-not.js')
-rw-r--r-- | js/src/jit-test/tests/bigint/bigint-not.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/bigint/bigint-not.js b/js/src/jit-test/tests/bigint/bigint-not.js new file mode 100644 index 0000000000..796f7027f7 --- /dev/null +++ b/js/src/jit-test/tests/bigint/bigint-not.js @@ -0,0 +1,51 @@ +const tests = [ + [-0x10000000000000001n, 0x10000000000000000n], + [-0x10000000000000000n, 0xffffffffffffffffn], + [-0xffffffffffffffffn, 0xfffffffffffffffen], + [-0xfffffffffffffffen, 0xfffffffffffffffdn], + [-0x8000000000000001n, 0x8000000000000000n], + [-0x8000000000000000n, 0x7fffffffffffffffn], + [-0x7fffffffffffffffn, 0x7ffffffffffffffen], + [-0x7ffffffffffffffen, 0x7ffffffffffffffdn], + [-0x100000001n, 0x100000000n], + [-0x100000000n, 0xffffffffn], + [-0xffffffffn, 0xfffffffen], + [-0xfffffffen, 0xfffffffdn], + [-0x80000001n, 0x80000000n], + [-0x80000000n, 0x7fffffffn], + [-0x7fffffffn, 0x7ffffffen], + [-0x7ffffffen, 0x7ffffffdn], + [-2n, 1n], + [-1n, 0n], + [0n, -1n], + [1n, -2n], + [2n, -3n], + [0x7ffffffen, -0x7fffffffn], + [0x7fffffffn, -0x80000000n], + [0x80000000n, -0x80000001n], + [0x80000001n, -0x80000002n], + [0xfffffffen, -0xffffffffn], + [0xffffffffn, -0x100000000n], + [0x100000000n, -0x100000001n], + [0x100000001n, -0x100000002n], + [0x7ffffffffffffffen, -0x7fffffffffffffffn], + [0x7fffffffffffffffn, -0x8000000000000000n], + [0x8000000000000000n, -0x8000000000000001n], + [0x8000000000000001n, -0x8000000000000002n], + [0xfffffffffffffffen, -0xffffffffffffffffn], + [0xffffffffffffffffn, -0x10000000000000000n], + [0x10000000000000000n, -0x10000000000000001n], + [0x10000000000000001n, -0x10000000000000002n], +]; + +function f(tests) { + for (let test of tests) { + let input = test[0], expected = test[1]; + + assertEq(~input, expected); + } +} + +for (let i = 0; i < 200; ++i) { + f(tests); +} |