aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMark Miller <erights@gmail.com>2011-09-24 19:31:03 -0700
committerMark Miller <erights@gmail.com>2011-09-24 19:31:03 -0700
commit7cd21e6f2473d4e7828223e2bf1772938e7ad17d (patch)
tree944608bffee70da3f531f852983066d015578251 /test
parenta277262e89ba7893396b36e5913c8c5f6fe1cb18 (diff)
Fixes https://bugs.ecmascript.org/show_bug.cgi?id=120
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.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T2.js21
-rw-r--r--test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T3.js12
3 files changed, 0 insertions, 35 deletions
diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml
index 13c89c474..af5862931 100644
--- a/test/config/excludelist.xml
+++ b/test/config/excludelist.xml
@@ -144,8 +144,6 @@
<test id="15.4.4.4-5-c-i-1">https://bugs.ecmascript.org/show_bug.cgi?id=69</test>
<!-- Extension clause -->
- <test id="S15.10.2.11_A1_T2">https://bugs.ecmascript.org/show_bug.cgi?id=120</test>
- <test id="S15.10.2.11_A1_T3">https://bugs.ecmascript.org/show_bug.cgi?id=120</test>
<test id="S13.0_A5">https://bugs.ecmascript.org/show_bug.cgi?id=133</test>
<test id="S15.10.4.1_A5_T5">https://bugs.ecmascript.org/show_bug.cgi?id=128</test>
<test id="S7.8.4_A4.3_T5">https://bugs.ecmascript.org/show_bug.cgi?id=127</test>
diff --git a/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T2.js b/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T2.js
deleted file mode 100644
index cfa7b0c13..000000000
--- a/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T2.js
+++ /dev/null
@@ -1,21 +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.2.11_A1_T2;
- * @section: 15.10.2.11;
- * @assertion: DecimalEscape :: DecimalIntegerLiteral [lookahead not in DecimalDigit];
- * @description: It is an error if n is greater than the total number of left capturing parentheses in the entire regular expression;
- * @negative;
-*/
-
-/\1/.exec("");
-/\2/.exec("");
-/\3/.exec("");
-/\4/.exec("");
-/\5/.exec("");
-/\6/.exec("");
-/\7/.exec("");
-/\8/.exec("");
-/\9/.exec("");
-/\10/.exec("");
diff --git a/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T3.js b/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T3.js
deleted file mode 100644
index 27be69118..000000000
--- a/test/suite/sputnik/Conformance/15_Native/15.10_RegExp_Objects/15.10.2_Pattern_Semantics/15.10.2.11_DecimalEscape/S15.10.2.11_A1_T3.js
+++ /dev/null
@@ -1,12 +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.2.11_A1_T3;
- * @section: 15.10.2.11;
- * @assertion: DecimalEscape :: DecimalIntegerLiteral [lookahead not in DecimalDigit];
- * @description: It is an error if n is greater than the total number of left capturing parentheses in the entire regular expression;
- * @negative;
-*/
-
-/(?:A)\2/.exec("AA");