aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMark Miller <erights@gmail.com>2011-09-25 11:48:37 -0700
committerMark Miller <erights@gmail.com>2011-09-25 11:48:37 -0700
commit58740a7088ec22a7c87321349b5fc35fa53ed6fa (patch)
tree5a1d9028c7db70b4b158076be415f8f2115aa25c /test
parent72a64280aebd15c85db116a38d19cd547773421c (diff)
https://bugs.ecmascript.org/show_bug.cgi?id=22
Diffstat (limited to 'test')
-rw-r--r--test/config/excludelist.xml2
-rw-r--r--test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.6_Properties_of_the_RegExp_Prototype_Object/S15.10.6_A2.js17
2 files changed, 0 insertions, 19 deletions
diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml
index 1940aab82..842be0640 100644
--- a/test/config/excludelist.xml
+++ b/test/config/excludelist.xml
@@ -107,8 +107,6 @@
<test id="S7.8.4_A4.3_T3">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
<test id="S7.8.4_A4.3_T4">https://bugs.ecmascript.org/show_bug.cgi?id=80</test>
- <test id="S15.10.6_A2">https://bugs.ecmascript.org/show_bug.cgi?id=22</test>
-
<test id="S15.5.4.10_A1_T3">https://bugs.ecmascript.org/show_bug.cgi?id=23</test>
<test id="S15.5.4.8_A1_T11">https://bugs.ecmascript.org/show_bug.cgi?id=30</test>
diff --git a/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.6_Properties_of_the_RegExp_Prototype_Object/S15.10.6_A2.js b/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.6_Properties_of_the_RegExp_Prototype_Object/S15.10.6_A2.js
deleted file mode 100644
index a9c5a2256..000000000
--- a/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.6_Properties_of_the_RegExp_Prototype_Object/S15.10.6_A2.js
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S15.10.6_A2;
-* @section: 15.10.6;
-* @assertion: The value of the internal [[Class]] property of the RegExp prototype object is "Object";
-* @description: Checking performs with toString function;
-*/
-
-RegExp.prototype.toString = Object.prototype.toString;
-
-//CHECK#1
-if (RegExp.prototype.toString() !== "[object " + "Object" + "]") {
- $ERROR('#1: RegExp.prototype.toString = Object.prototype.toString; RegExp.prototype.toString() === "[object " + "Object" + "]". Actual: ' + RegExp.prototype.toString());
-}
-