From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../test262/built-ins/Math/abs/S15.8.2.1_A1.js | 12 +++++++++ .../test262/built-ins/Math/abs/S15.8.2.1_A2.js | 12 +++++++++ .../test262/built-ins/Math/abs/S15.8.2.1_A3.js | 14 ++++++++++ .../test262/built-ins/Math/abs/absolute-value.js | 24 +++++++++++++++++ js/src/tests/test262/built-ins/Math/abs/browser.js | 0 js/src/tests/test262/built-ins/Math/abs/length.js | 31 ++++++++++++++++++++++ js/src/tests/test262/built-ins/Math/abs/name.js | 28 +++++++++++++++++++ .../built-ins/Math/abs/not-a-constructor.js | 31 ++++++++++++++++++++++ .../tests/test262/built-ins/Math/abs/prop-desc.js | 18 +++++++++++++ js/src/tests/test262/built-ins/Math/abs/shell.js | 24 +++++++++++++++++ 10 files changed, 194 insertions(+) create mode 100644 js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A1.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A2.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A3.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/absolute-value.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/browser.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/length.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/name.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/not-a-constructor.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/prop-desc.js create mode 100644 js/src/tests/test262/built-ins/Math/abs/shell.js (limited to 'js/src/tests/test262/built-ins/Math/abs') diff --git a/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A1.js b/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A1.js new file mode 100644 index 0000000000..4bfb1f5a4f --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A1.js @@ -0,0 +1,12 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: If x is NaN, Math.abs(x) is NaN +es5id: 15.8.2.1_A1 +description: Checking if Math.abs(NaN) is NaN +---*/ + +assert.sameValue(Math.abs(NaN), NaN); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A2.js b/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A2.js new file mode 100644 index 0000000000..1ee03e5ec4 --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A2.js @@ -0,0 +1,12 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: If x is -0, Math.abs(x) is +0 +es5id: 15.8.2.1_A2 +description: Checking if Math.abs(-0) equals to +0 +---*/ + +assert.sameValue(Math.abs(-0), 0); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A3.js b/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A3.js new file mode 100644 index 0000000000..d2207aa004 --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/S15.8.2.1_A3.js @@ -0,0 +1,14 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: If x is -Infinity, Math.abs(x) is +Infinity +es5id: 15.8.2.1_A3 +description: Checking if Math.abs(-Infinity) equals to +Infinity +---*/ + +// CHECK#1 +var x = -Infinity; +assert.sameValue(Math.abs(x), +Infinity, 'Math.abs(-Infinity) must return +Infinity'); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/absolute-value.js b/js/src/tests/test262/built-ins/Math/abs/absolute-value.js new file mode 100644 index 0000000000..9aa95e5a29 --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/absolute-value.js @@ -0,0 +1,24 @@ +// Copyright (C) 2016 The V8 Project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-math.abs +description: > + Returns the absolute value of x +info: | + Math.abs ( x ) + + Returns the absolute value of x; the result has the same magnitude as x but + has positive sign. +---*/ + +assert.sameValue(Math.abs(-42), 42, "-42"); +assert.sameValue(Math.abs(42), 42, "42"); +assert.sameValue(Math.abs(-0.000001), 0.000001, "-0.000001"); +assert.sameValue(Math.abs(0.000001), 0.000001, "0.000001"); +assert.sameValue(Math.abs(-1e-17), 1e-17, "-1e-17"); +assert.sameValue(Math.abs(1e-17), 1e-17, "1e-17"); +assert.sameValue(Math.abs(-9007199254740991), 9007199254740991, "-(2**53-1)"); +assert.sameValue(Math.abs(9007199254740991), 9007199254740991, "2**53-1"); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/browser.js b/js/src/tests/test262/built-ins/Math/abs/browser.js new file mode 100644 index 0000000000..e69de29bb2 diff --git a/js/src/tests/test262/built-ins/Math/abs/length.js b/js/src/tests/test262/built-ins/Math/abs/length.js new file mode 100644 index 0000000000..2d031962ae --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/length.js @@ -0,0 +1,31 @@ +// Copyright (C) 2015 André Bargull. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +es6id: 20.2.2.1 +description: > + Math.abs.length is 1. +info: | + Math.abs ( x ) + + 17 ECMAScript Standard Built-in Objects: + Every built-in Function object, including constructors, has a length + property whose value is an integer. Unless otherwise specified, this + value is equal to the largest number of named arguments shown in the + subclause headings for the function description, including optional + parameters. However, rest parameters shown using the form “...name” + are not included in the default argument count. + + Unless otherwise specified, the length property of a built-in Function + object has the attributes { [[Writable]]: false, [[Enumerable]]: false, + [[Configurable]]: true }. +includes: [propertyHelper.js] +---*/ + +assert.sameValue(Math.abs.length, 1); + +verifyNotEnumerable(Math.abs, "length"); +verifyNotWritable(Math.abs, "length"); +verifyConfigurable(Math.abs, "length"); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/name.js b/js/src/tests/test262/built-ins/Math/abs/name.js new file mode 100644 index 0000000000..640f07b811 --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/name.js @@ -0,0 +1,28 @@ +// Copyright (C) 2015 André Bargull. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +es6id: 20.2.2.1 +description: > + Math.abs.name is "abs". +info: | + Math.abs ( x ) + + 17 ECMAScript Standard Built-in Objects: + Every built-in Function object, including constructors, that is not + identified as an anonymous function has a name property whose value + is a String. + + Unless otherwise specified, the name property of a built-in Function + object, if it exists, has the attributes { [[Writable]]: false, + [[Enumerable]]: false, [[Configurable]]: true }. +includes: [propertyHelper.js] +---*/ + +assert.sameValue(Math.abs.name, "abs"); + +verifyNotEnumerable(Math.abs, "name"); +verifyNotWritable(Math.abs, "name"); +verifyConfigurable(Math.abs, "name"); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/not-a-constructor.js b/js/src/tests/test262/built-ins/Math/abs/not-a-constructor.js new file mode 100644 index 0000000000..3fc474119f --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/not-a-constructor.js @@ -0,0 +1,31 @@ +// Copyright (C) 2020 Rick Waldron. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-ecmascript-standard-built-in-objects +description: > + Math.abs does not implement [[Construct]], is not new-able +info: | + ECMAScript Function Objects + + Built-in function objects that are not identified as constructors do not + implement the [[Construct]] internal method unless otherwise specified in + the description of a particular function. + + sec-evaluatenew + + ... + 7. If IsConstructor(constructor) is false, throw a TypeError exception. + ... +includes: [isConstructor.js] +features: [Reflect.construct, arrow-function] +---*/ + +assert.sameValue(isConstructor(Math.abs), false, 'isConstructor(Math.abs) must return false'); + +assert.throws(TypeError, () => { + new Math.abs(); +}, '`new Math.abs()` throws TypeError'); + + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/prop-desc.js b/js/src/tests/test262/built-ins/Math/abs/prop-desc.js new file mode 100644 index 0000000000..11d01c2d6f --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/prop-desc.js @@ -0,0 +1,18 @@ +// Copyright (C) 2017 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +esid: sec-math.abs +description: > + "abs" property of Math +info: | + Section 17: Every other data property described in clauses 18 through 26 + and in Annex B.2 has the attributes { [[Writable]]: true, + [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified. +includes: [propertyHelper.js] +---*/ + +verifyNotEnumerable(Math, "abs"); +verifyWritable(Math, "abs"); +verifyConfigurable(Math, "abs"); + +reportCompare(0, 0); diff --git a/js/src/tests/test262/built-ins/Math/abs/shell.js b/js/src/tests/test262/built-ins/Math/abs/shell.js new file mode 100644 index 0000000000..eda1477282 --- /dev/null +++ b/js/src/tests/test262/built-ins/Math/abs/shell.js @@ -0,0 +1,24 @@ +// GENERATED, DO NOT EDIT +// file: isConstructor.js +// Copyright (C) 2017 André Bargull. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: | + Test if a given function is a constructor function. +defines: [isConstructor] +features: [Reflect.construct] +---*/ + +function isConstructor(f) { + if (typeof f !== "function") { + throw new Test262Error("isConstructor invoked with a non-function value"); + } + + try { + Reflect.construct(function(){}, [], f); + } catch (e) { + return false; + } + return true; +} -- cgit v1.2.3