From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- js/src/jit-test/tests/bigint/asIntN32.js | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 js/src/jit-test/tests/bigint/asIntN32.js (limited to 'js/src/jit-test/tests/bigint/asIntN32.js') diff --git a/js/src/jit-test/tests/bigint/asIntN32.js b/js/src/jit-test/tests/bigint/asIntN32.js new file mode 100644 index 0000000000..ebc570d965 --- /dev/null +++ b/js/src/jit-test/tests/bigint/asIntN32.js @@ -0,0 +1,65 @@ +const tests = [ + [-0x10000000000000001n, -1n], + [-0x10000000000000000n, 0n], + [-0xffffffffffffffffn, 1n], + [-0xfffffffffffffffen, 2n], + [-0x8000000000000001n, -1n], + [-0x8000000000000000n, 0n], + [-0x7fffffffffffffffn, 1n], + [-0x7ffffffffffffffen, 2n], + [-0x100000001n, -1n], + [-0x100000000n, 0n], + [-0xffffffffn, 1n], + [-0xfffffffen, 2n], + [-0x80000001n, 0x7fffffffn], + [-0x80000000n, -0x80000000n], + [-0x7fffffffn, -0x7fffffffn], + [-0x7ffffffen, -0x7ffffffen], + [-9n, -9n], + [-8n, -8n], + [-7n, -7n], + [-6n, -6n], + [-5n, -5n], + [-4n, -4n], + [-3n, -3n], + [-2n, -2n], + [-1n, -1n], + [0n, 0n], + [1n, 1n], + [2n, 2n], + [3n, 3n], + [4n, 4n], + [5n, 5n], + [6n, 6n], + [7n, 7n], + [8n, 8n], + [9n, 9n], + [0x7ffffffen, 0x7ffffffen], + [0x7fffffffn, 0x7fffffffn], + [0x80000000n, -0x80000000n], + [0x80000001n, -0x7fffffffn], + [0xfffffffen, -2n], + [0xffffffffn, -1n], + [0x100000000n, 0n], + [0x100000001n, 1n], + [0x7ffffffffffffffen, -2n], + [0x7fffffffffffffffn, -1n], + [0x8000000000000000n, 0n], + [0x8000000000000001n, 1n], + [0xfffffffffffffffen, -2n], + [0xffffffffffffffffn, -1n], + [0x10000000000000000n, 0n], + [0x10000000000000001n, 1n], +]; + +function f(tests) { + for (let test of tests) { + let input = test[0], expected = test[1]; + + assertEq(BigInt.asIntN(32, input), expected); + } +} + +for (let i = 0; i < 100; ++i) { + f(tests); +} -- cgit v1.2.3