summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/filter
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/filter/callbackfn-resize-arraybuffer.js2
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/filter/length.js11
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/filter/name.js11
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/filter/not-a-constructor.js2
4 files changed, 14 insertions, 12 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/filter/callbackfn-resize-arraybuffer.js b/js/src/tests/test262/built-ins/Array/prototype/filter/callbackfn-resize-arraybuffer.js
index ef7612695d..3908cfc93f 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/filter/callbackfn-resize-arraybuffer.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/filter/callbackfn-resize-arraybuffer.js
@@ -1,4 +1,4 @@
-// |reftest| shell-option(--enable-arraybuffer-resizable) skip-if(!ArrayBuffer.prototype.resize||!xulRuntime.shell) -- resizable-arraybuffer is not enabled unconditionally, requires shell-options
+// |reftest| shell-option(--enable-arraybuffer-resizable) shell-option(--enable-float16array) skip-if(!ArrayBuffer.prototype.resize||!xulRuntime.shell) -- resizable-arraybuffer is not enabled unconditionally, requires shell-options
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
diff --git a/js/src/tests/test262/built-ins/Array/prototype/filter/length.js b/js/src/tests/test262/built-ins/Array/prototype/filter/length.js
index 06c9cf9762..be88cede23 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/filter/length.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/filter/length.js
@@ -23,10 +23,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Array.prototype.filter.length, 1);
-
-verifyNotEnumerable(Array.prototype.filter, 'length');
-verifyNotWritable(Array.prototype.filter, 'length');
-verifyConfigurable(Array.prototype.filter, 'length');
+verifyProperty(Array.prototype.filter, "length", {
+ value: 1,
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Array/prototype/filter/name.js b/js/src/tests/test262/built-ins/Array/prototype/filter/name.js
index 4fbfcefd92..5b4f9754bd 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/filter/name.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/filter/name.js
@@ -19,10 +19,11 @@ info: |
includes: [propertyHelper.js]
---*/
-assert.sameValue(Array.prototype.filter.name, "filter");
-
-verifyNotEnumerable(Array.prototype.filter, "name");
-verifyNotWritable(Array.prototype.filter, "name");
-verifyConfigurable(Array.prototype.filter, "name");
+verifyProperty(Array.prototype.filter, "name", {
+ value: "filter",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/Array/prototype/filter/not-a-constructor.js b/js/src/tests/test262/built-ins/Array/prototype/filter/not-a-constructor.js
index f9b011ced5..2853408ae6 100644
--- a/js/src/tests/test262/built-ins/Array/prototype/filter/not-a-constructor.js
+++ b/js/src/tests/test262/built-ins/Array/prototype/filter/not-a-constructor.js
@@ -29,7 +29,7 @@ assert.sameValue(
assert.throws(TypeError, () => {
new Array.prototype.filter(() => {});
-}, '`new Array.prototype.filter(() => {})` throws TypeError');
+});
reportCompare(0, 0);