diff --git a/test/config/excludelist.xml b/test/config/excludelist.xml index 0dabee53f5..24b2299f45 100644 --- a/test/config/excludelist.xml +++ b/test/config/excludelist.xml @@ -1,14 +1,5 @@  - - problem, test needs 'var' prior to interface in strict mode - problem, test needs 'var' prior to package in strict mode - problem, test needs 'var' prior to private in strict mode - problem, test needs 'var' prior to protected in strict mode - problem, test needs 'var' prior to public in strict mode - problem, test needs 'var' prior to static in strict mode - @@ -145,10 +136,6 @@ https://bugs.ecmascript.org/show_bug.cgi?id=127 https://bugs.ecmascript.org/show_bug.cgi?id=127 - - https://bugs.ecmascript.org/show_bug.cgi?id=59 - https://bugs.ecmascript.org/show_bug.cgi?id=59 - https://bugs.ecmascript.org/show_bug.cgi?id=60 https://bugs.ecmascript.org/show_bug.cgi?id=60 diff --git a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T1.js b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T1.js index 7005b74ad4..da70851e32 100644 --- a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T1.js +++ b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T1.js @@ -6,8 +6,10 @@ * @section: 7.8.4; * @assertion: NonEscapeSequence is not EscapeCharacter; * @description: EscapeCharacter :: DecimalDigits :: 1; + * @onlyStrict * @negative -*/ + */ +"use strict"; //CHECK#1 "\1" diff --git a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T2.js b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T2.js index e05d30179e..93405fa0d4 100644 --- a/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T2.js +++ b/test/suite/sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T2.js @@ -6,8 +6,10 @@ * @section: 7.8.4; * @assertion: NonEscapeSequence is not EscapeCharacter; * @description: EscapeCharacter :: DecimalDigits :: 7; + * @onlyStrict * @negative -*/ + */ +"use strict"; //CHECK#1 "\7"