summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array')
-rw-r--r--js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/name.js11
-rw-r--r--js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/proto.js1
-rw-r--r--js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js1
3 files changed, 8 insertions, 5 deletions
diff --git a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/name.js b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/name.js
index d7e639093b..d7e0e2c51f 100644
--- a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/name.js
+++ b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/name.js
@@ -21,10 +21,11 @@ includes: [propertyHelper.js]
features: [TypedArray]
---*/
-assert.sameValue(Int32Array.name, "Int32Array");
-
-verifyNotEnumerable(Int32Array, "name");
-verifyNotWritable(Int32Array, "name");
-verifyConfigurable(Int32Array, "name");
+verifyProperty(Int32Array, "name", {
+ value: "Int32Array",
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/proto.js b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/proto.js
index 24f99cf935..cc08cfceec 100644
--- a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/proto.js
+++ b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/proto.js
@@ -1,3 +1,4 @@
+// |reftest| shell-option(--enable-float16array)
// Copyright (C) 2015 André Bargull. 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/TypedArrayConstructors/Int32Array/prototype/proto.js b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js
index cdec27c587..e5a1ade7b1 100644
--- a/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js
+++ b/js/src/tests/test262/built-ins/TypedArrayConstructors/Int32Array/prototype/proto.js
@@ -1,3 +1,4 @@
+// |reftest| shell-option(--enable-float16array)
// Copyright (C) 2015 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.