From 8c642b6172f0ae59724575a30823fe8dde01591e Mon Sep 17 00:00:00 2001 From: Mark Miller Date: Sun, 25 Sep 2011 11:11:11 -0700 Subject: [PATCH] Fixes https://bugs.ecmascript.org/show_bug.cgi?id=58 --- test/config/excludelist.xml | 5 ----- .../7.8.4_String_Literals/S7.8.4_A6.4_T1.js | 13 ------------- .../7.8.4_String_Literals/S7.8.4_A6.4_T2.js | 13 ------------- .../7.8.4_String_Literals/S7.8.4_A7.4_T1.js | 13 ------------- .../7.8.4_String_Literals/S7.8.4_A7.4_T2.js | 13 ------------- 5 files changed, 57 deletions(-) delete mode 100644 test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T1.js delete mode 100644 test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T2.js delete mode 100644 test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T1.js delete mode 100644 test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T2.js diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml index 423d540f42..cdd67f2fc9 100644 --- a/test/config/excludelist.xml +++ b/test/config/excludelist.xml @@ -116,11 +116,6 @@ https://bugs.ecmascript.org/show_bug.cgi?id=30 - https://bugs.ecmascript.org/show_bug.cgi?id=58 - https://bugs.ecmascript.org/show_bug.cgi?id=58 - https://bugs.ecmascript.org/show_bug.cgi?id=58 - https://bugs.ecmascript.org/show_bug.cgi?id=58 - https://bugs.ecmascript.org/show_bug.cgi?id=61 https://bugs.ecmascript.org/show_bug.cgi?id=61 https://bugs.ecmascript.org/show_bug.cgi?id=61 diff --git a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T1.js b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T1.js deleted file mode 100644 index dc4314c150..0000000000 --- a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T1.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2009 the Sputnik authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/** - * @name: S7.8.4_A6.4_T1; - * @section: 7.8.4; - * @assertion: HexEscapeSequence \X HexDigit HexDigit is incorrect; - * @description: Checking if execution of "\X01" passes; - * @negative -*/ - -//CHECK#1 -"\X01" diff --git a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T2.js b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T2.js deleted file mode 100644 index 676caf3140..0000000000 --- a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A6.4_T2.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2009 the Sputnik authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/** - * @name: S7.8.4_A6.4_T2; - * @section: 7.8.4; - * @assertion: HexEscapeSequence \X HexDigit HexDigit is incorrect; - * @description: Checking if execution of "\X0A" passes; - * @negative -*/ - -//CHECK#1 -"\X0A" diff --git a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T1.js b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T1.js deleted file mode 100644 index 934affedc0..0000000000 --- a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T1.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2009 the Sputnik authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/** - * @name: S7.8.4_A7.4_T1; - * @section: 7.8.4; - * @assertion: UnicodeEscapeSequence \U HexDigit HexDigit HexDigit HexDigit is incorrect; - * @description: Checking if execution of "\U0001" passes; - * @negative -*/ - -//CHECK#1 -"\U0001" diff --git a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T2.js b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T2.js deleted file mode 100644 index d96f0f3ffe..0000000000 --- a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.4_T2.js +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2009 the Sputnik authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/** - * @name: S7.8.4_A7.4_T2; - * @section: 7.8.4; - * @assertion: UnicodeEscapeSequence \U HexDigit HexDigit HexDigit HexDigit is incorrect; - * @description: Checking if execution of "\U000A" passes; - * @negative -*/ - -//CHECK#1 -"\U000A"