summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js')
-rw-r--r--js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js166
1 files changed, 166 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js b/js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js
new file mode 100644
index 0000000000..b797a7bfc2
--- /dev/null
+++ b/js/src/tests/test262/language/expressions/less-than-or-equal/bigint-and-bigint.js
@@ -0,0 +1,166 @@
+// Copyright (C) 2017 Josh Wolfe. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+description: Comparisons of BigInt and BigInt values
+esid: sec-abstract-relational-comparison
+info: |
+ ...
+ 3. If both px and py are Strings, then
+ ...
+ 4. Else,
+ a. Let nx be ? ToNumeric(px). Because px and py are primitive values evaluation order is not important.
+ b. Let ny be ? ToNumeric(py).
+ c. If Type(nx) is Type(ny), return ? Type(nx)::lessThan(nx, ny).
+
+ sec-numeric-types-bigint-lessThan
+ BigInt::lessThan (x, y)
+
+ The abstract operation BigInt::lessThan with two arguments x and y of BigInt type returns true if x is less than y and false otherwise.
+
+features: [BigInt]
+---*/
+assert.sameValue(0n <= 0n, true, 'The result of (0n <= 0n) is true');
+assert.sameValue(1n <= 1n, true, 'The result of (1n <= 1n) is true');
+assert.sameValue(-1n <= -1n, true, 'The result of (-1n <= -1n) is true');
+assert.sameValue(0n <= -0n, true, 'The result of (0n <= -0n) is true');
+assert.sameValue(-0n <= 0n, true, 'The result of (-0n <= 0n) is true');
+assert.sameValue(0n <= 1n, true, 'The result of (0n <= 1n) is true');
+assert.sameValue(1n <= 0n, false, 'The result of (1n <= 0n) is false');
+assert.sameValue(0n <= -1n, false, 'The result of (0n <= -1n) is false');
+assert.sameValue(-1n <= 0n, true, 'The result of (-1n <= 0n) is true');
+assert.sameValue(1n <= -1n, false, 'The result of (1n <= -1n) is false');
+assert.sameValue(-1n <= 1n, true, 'The result of (-1n <= 1n) is true');
+
+assert.sameValue(
+ 0x1fffffffffffff01n <= 0x1fffffffffffff02n,
+ true,
+ 'The result of (0x1fffffffffffff01n <= 0x1fffffffffffff02n) is true'
+);
+
+assert.sameValue(
+ 0x1fffffffffffff02n <= 0x1fffffffffffff01n,
+ false,
+ 'The result of (0x1fffffffffffff02n <= 0x1fffffffffffff01n) is false'
+);
+
+assert.sameValue(
+ -0x1fffffffffffff01n <= -0x1fffffffffffff02n,
+ false,
+ 'The result of (-0x1fffffffffffff01n <= -0x1fffffffffffff02n) is false'
+);
+
+assert.sameValue(
+ -0x1fffffffffffff02n <= -0x1fffffffffffff01n,
+ true,
+ 'The result of (-0x1fffffffffffff02n <= -0x1fffffffffffff01n) is true'
+);
+
+assert.sameValue(
+ 0x10000000000000000n <= 0n,
+ false,
+ 'The result of (0x10000000000000000n <= 0n) is false'
+);
+
+assert.sameValue(
+ 0n <= 0x10000000000000000n,
+ true,
+ 'The result of (0n <= 0x10000000000000000n) is true'
+);
+
+assert.sameValue(
+ 0x10000000000000000n <= 1n,
+ false,
+ 'The result of (0x10000000000000000n <= 1n) is false'
+);
+
+assert.sameValue(
+ 1n <= 0x10000000000000000n,
+ true,
+ 'The result of (1n <= 0x10000000000000000n) is true'
+);
+
+assert.sameValue(
+ 0x10000000000000000n <= -1n,
+ false,
+ 'The result of (0x10000000000000000n <= -1n) is false'
+);
+
+assert.sameValue(
+ -1n <= 0x10000000000000000n,
+ true,
+ 'The result of (-1n <= 0x10000000000000000n) is true'
+);
+
+assert.sameValue(
+ 0x10000000000000001n <= 0n,
+ false,
+ 'The result of (0x10000000000000001n <= 0n) is false'
+);
+
+assert.sameValue(
+ 0n <= 0x10000000000000001n,
+ true,
+ 'The result of (0n <= 0x10000000000000001n) is true'
+);
+
+assert.sameValue(
+ -0x10000000000000000n <= 0n,
+ true,
+ 'The result of (-0x10000000000000000n <= 0n) is true'
+);
+
+assert.sameValue(
+ 0n <= -0x10000000000000000n,
+ false,
+ 'The result of (0n <= -0x10000000000000000n) is false'
+);
+
+assert.sameValue(
+ -0x10000000000000000n <= 1n,
+ true,
+ 'The result of (-0x10000000000000000n <= 1n) is true'
+);
+
+assert.sameValue(
+ 1n <= -0x10000000000000000n,
+ false,
+ 'The result of (1n <= -0x10000000000000000n) is false'
+);
+
+assert.sameValue(
+ -0x10000000000000000n <= -1n,
+ true,
+ 'The result of (-0x10000000000000000n <= -1n) is true'
+);
+
+assert.sameValue(
+ -1n <= -0x10000000000000000n,
+ false,
+ 'The result of (-1n <= -0x10000000000000000n) is false'
+);
+
+assert.sameValue(
+ -0x10000000000000001n <= 0n,
+ true,
+ 'The result of (-0x10000000000000001n <= 0n) is true'
+);
+
+assert.sameValue(
+ 0n <= -0x10000000000000001n,
+ false,
+ 'The result of (0n <= -0x10000000000000001n) is false'
+);
+
+assert.sameValue(
+ 0x10000000000000000n <= 0x100000000n,
+ false,
+ 'The result of (0x10000000000000000n <= 0x100000000n) is false'
+);
+
+assert.sameValue(
+ 0x100000000n <= 0x10000000000000000n,
+ true,
+ 'The result of (0x100000000n <= 0x10000000000000000n) is true'
+);
+
+reportCompare(0, 0);