mirror of https://github.com/tc39/test262.git
Remove redundant and indirect tests
A number of tests for string literals assert the restriction on LegacyOctalEscapeSequence in strict mode code and differ only in the escape sequence under test. Although each is valid, none of the escape sequences are sufficiently distinct from the test 'legacy-octal-escape-sequence-stricts.js' to warrant their inclusion in the test suite. Because that test's use of literal code makes it consumable by parsers and because that test includes much more thorough documentation, it should be preferred. Summary of LegacyOctalEscapeSequences under test in the removed files: test/language/literals/string/7.8.4-10-s.js: eval('var x = " \\10 ";'); test/language/literals/string/7.8.4-11-s.js: eval('var x = "\\16";'); test/language/literals/string/7.8.4-12-s.js: eval('var x = "\\17";'); test/language/literals/string/7.8.4-13-s.js: eval('var x = "\\30";'); test/language/literals/string/7.8.4-14-s.js: eval('var x = "\\31";'); test/language/literals/string/7.8.4-15-s.js: eval('var x = "\\37";'); test/language/literals/string/7.8.4-16-s.js: eval('var x = "\\400";'); test/language/literals/string/7.8.4-17-s.js: eval('var x = "\\411";'); test/language/literals/string/7.8.4-18-s.js: eval('var x = "\\43a";'); test/language/literals/string/7.8.4-19-s.js: eval('var x = "\\463";'); test/language/literals/string/7.8.4-2-s.js: eval('var x = "\\1";'); test/language/literals/string/7.8.4-20-s.js: eval('var x = "\\474";'); test/language/literals/string/7.8.4-21-s.js: eval('var x = "\\77";'); test/language/literals/string/7.8.4-22-s.js: eval('var x = "\\777";'); test/language/literals/string/7.8.4-23-s.js: eval('var x = "\\000";'); test/language/literals/string/7.8.4-24-s.js: eval('var x = "\\001";'); test/language/literals/string/7.8.4-25-s.js: eval('var x = "\\106";'); test/language/literals/string/7.8.4-26-s.js: eval('var x = "\\207";'); test/language/literals/string/7.8.4-27-s.js: eval('var x = "\\377";'); test/language/literals/string/7.8.4-28-s.js: eval('var x = "\\376";'); test/language/literals/string/7.8.4-29-s.js: eval('var x = "\\3760";'); test/language/literals/string/7.8.4-3-s.js: eval('var x = "a\\4";'); test/language/literals/string/7.8.4-32-s.js: eval('var x = "\\1\\1";'); test/language/literals/string/7.8.4-33-s.js: eval('var x = "\\1\\2\\7";'); test/language/literals/string/7.8.4-4-s.js: eval('var x = "z\\7";'); test/language/literals/string/7.8.4-5-s.js: eval('var x = "\\00a";'); test/language/literals/string/7.8.4-6-s.js: eval('var x = "\\01z";'); test/language/literals/string/7.8.4-7-s.js: eval('var x = "a\\03z";'); test/language/literals/string/7.8.4-8-s.js: eval('var x = " \\06";');
This commit is contained in:
parent
3383ba9c1b
commit
2facd45c76
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-10-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = " \\10 ";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-11-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\16";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-12-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\17";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-13-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\30";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-14-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\31";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-15-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\37";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-16-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\400";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-17-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\411";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-18-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\43a";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-19-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\463";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-2-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\1";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-20-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\474";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-21-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\77";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-22-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\777";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-23-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\000";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-24-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\001";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-25-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\106";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-26-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\207";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-27-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\377";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-28-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\376";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-29-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\3760";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-3-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "a\\4";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-30-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\' + '1";');
|
||||
});
|
|
@ -1,15 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-32-s
|
||||
description: >
|
||||
Two OctalEscapeSequences in a String are not allowed in a String
|
||||
under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\1\\1";');
|
||||
});
|
|
@ -1,15 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-33-s
|
||||
description: >
|
||||
Three OctalEscapeSequences in a String are not allowed in a String
|
||||
under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\1\\2\\7";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-4-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "z\\7";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-5-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\00a";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-6-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "\\01z";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-7-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = "a\\03z";');
|
||||
});
|
|
@ -1,13 +0,0 @@
|
|||
// Copyright (c) 2012 Ecma International. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
es5id: 7.8.4-8-s
|
||||
description: An OctalEscapeSequence is not allowed in a String under Strict Mode
|
||||
flags: [onlyStrict]
|
||||
---*/
|
||||
|
||||
|
||||
assert.throws(SyntaxError, function() {
|
||||
eval('var x = " \\06";');
|
||||
});
|
Loading…
Reference in New Issue