From 7cd21e6f2473d4e7828223e2bf1772938e7ad17d Mon Sep 17 00:00:00 2001 From: Mark Miller Date: Sat, 24 Sep 2011 19:31:03 -0700 Subject: [PATCH] Fixes https://bugs.ecmascript.org/show_bug.cgi?id=120 --- test/config/excludelist.xml | 2 -- .../S15.10.2.11_A1_T2.js | 21 ------------------- .../S15.10.2.11_A1_T3.js | 12 ----------- 3 files changed, 35 deletions(-) delete mode 100644 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 delete mode 100644 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 diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml index 13c89c474c..af58629310 100644 --- a/test/config/excludelist.xml +++ b/test/config/excludelist.xml @@ -144,8 +144,6 @@ https://bugs.ecmascript.org/show_bug.cgi?id=69 - https://bugs.ecmascript.org/show_bug.cgi?id=120 - https://bugs.ecmascript.org/show_bug.cgi?id=120 https://bugs.ecmascript.org/show_bug.cgi?id=133 https://bugs.ecmascript.org/show_bug.cgi?id=128 https://bugs.ecmascript.org/show_bug.cgi?id=127 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 cfa7b0c13a..0000000000 --- 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 27be691187..0000000000 --- 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");