summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/NaN
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/NaN')
-rw-r--r--js/src/tests/test262/built-ins/NaN/15.1.1.1-0.js15
-rw-r--r--js/src/tests/test262/built-ins/NaN/S15.1.1.1_A1.js11
-rw-r--r--js/src/tests/test262/built-ins/NaN/S15.1.1.1_A2_T2.js17
-rw-r--r--js/src/tests/test262/built-ins/NaN/S15.1.1.1_A3_T2.js14
-rw-r--r--js/src/tests/test262/built-ins/NaN/S15.1.1.1_A4.js17
-rw-r--r--js/src/tests/test262/built-ins/NaN/browser.js0
-rw-r--r--js/src/tests/test262/built-ins/NaN/prop-desc.js19
-rw-r--r--js/src/tests/test262/built-ins/NaN/shell.js0
8 files changed, 93 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/NaN/15.1.1.1-0.js b/js/src/tests/test262/built-ins/NaN/15.1.1.1-0.js
new file mode 100644
index 0000000000..3240a96e61
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/15.1.1.1-0.js
@@ -0,0 +1,15 @@
+// Copyright (c) 2012 Ecma International. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es5id: 15.1.1.1-0
+description: Global.NaN is a data property with default attribute values (false)
+---*/
+
+var desc = Object.getOwnPropertyDescriptor(this, 'NaN');
+
+assert.sameValue(desc.writable, false, 'desc.writable');
+assert.sameValue(desc.enumerable, false, 'desc.enumerable');
+assert.sameValue(desc.configurable, false, 'desc.configurable');
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A1.js b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A1.js
new file mode 100644
index 0000000000..aa1f65db89
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A1.js
@@ -0,0 +1,11 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+es5id: 15.1.1.1_A1
+description: The initial value of NaN is NaN
+---*/
+
+assert(NaN !== NaN);
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A2_T2.js b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A2_T2.js
new file mode 100644
index 0000000000..43a4423d3c
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A2_T2.js
@@ -0,0 +1,17 @@
+// Copyright (C) 2015 André Bargull. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The NaN is ReadOnly
+es5id: 15.1.1.1_A2_T2
+description: Checking typeof Functions
+flags: [noStrict]
+---*/
+
+// CHECK#1
+NaN = true;
+assert.notSameValue(typeof(NaN), "boolean", 'The value of typeof(NaN) is not "boolean"');
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A3_T2.js b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A3_T2.js
new file mode 100644
index 0000000000..6402c7dbd7
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A3_T2.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: The NaN is DontDelete
+es5id: 15.1.1.1_A3_T2
+description: Use delete
+flags: [noStrict]
+---*/
+assert.sameValue(delete NaN, false, 'The value of `delete NaN` is expected to be false');
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A4.js b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A4.js
new file mode 100644
index 0000000000..86a17cc3e8
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/S15.1.1.1_A4.js
@@ -0,0 +1,17 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: The NaN is DontEnum
+es5id: 15.1.1.1_A3.2
+description: Use for-in statement
+---*/
+
+// CHECK#1
+for (var prop in this) {
+ assert.notSameValue(prop, "NaN", 'The value of prop is not "NaN"');
+}
+
+// TODO: Convert to verifyProperty() format.
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/NaN/browser.js b/js/src/tests/test262/built-ins/NaN/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/browser.js
diff --git a/js/src/tests/test262/built-ins/NaN/prop-desc.js b/js/src/tests/test262/built-ins/NaN/prop-desc.js
new file mode 100644
index 0000000000..766daaaf37
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/prop-desc.js
@@ -0,0 +1,19 @@
+// Copyright (C) 2019 Bocoup. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-value-properties-of-the-global-object-nan
+description: Property descriptor of NaN
+info: |
+ This property has the attributes { [[Writable]]: false, [[Enumerable]]:
+ false, [[Configurable]]: false }.
+includes: [propertyHelper.js]
+---*/
+
+verifyProperty(this, "NaN", {
+ enumerable: false,
+ writable: false,
+ configurable: false
+});
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/built-ins/NaN/shell.js b/js/src/tests/test262/built-ins/NaN/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/built-ins/NaN/shell.js