OLD | NEW |
1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 # This is an incompatibility between ES5 and V8 on enumerating | 43 # This is an incompatibility between ES5 and V8 on enumerating |
44 # shadowed elements in a for..in loop. | 44 # shadowed elements in a for..in loop. |
45 # https://code.google.com/p/v8/issues/detail?id=705 | 45 # https://code.google.com/p/v8/issues/detail?id=705 |
46 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], | 46 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], |
47 | 47 |
48 ###################### MISSING ES6 FEATURES ####################### | 48 ###################### MISSING ES6 FEATURES ####################### |
49 | 49 |
50 # https://code.google.com/p/v8/issues/detail?id=4163 | 50 # https://code.google.com/p/v8/issues/detail?id=4163 |
51 'built-ins/GeneratorPrototype/next/context-constructor-invocation': [FAIL], | 51 'built-ins/GeneratorPrototype/next/context-constructor-invocation': [FAIL], |
52 | 52 |
53 # https://code.google.com/p/v8/issues/detail?id=4348 | |
54 'built-ins/String/prototype/Symbol.iterator/this-val-non-obj-coercible': [FAIL
], | |
55 | |
56 # The order of adding the name property is wrong | 53 # The order of adding the name property is wrong |
57 # https://code.google.com/p/v8/issues/detail?id=4199 | 54 # https://code.google.com/p/v8/issues/detail?id=4199 |
58 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO
PPY], | 55 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO
PPY], |
59 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO
PPY], | 56 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO
PPY], |
60 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO
PPY], | 57 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO
PPY], |
61 | 58 |
62 # We do not expose Array.prototype.values | 59 # We do not expose Array.prototype.values |
63 # https://code.google.com/p/v8/issues/detail?id=4247 | 60 # https://code.google.com/p/v8/issues/detail?id=4247 |
64 'built-ins/Array/prototype/Symbol.iterator': [FAIL], | 61 'built-ins/Array/prototype/Symbol.iterator': [FAIL], |
65 'built-ins/Array/prototype/values/returns-iterator': [FAIL], | 62 'built-ins/Array/prototype/values/returns-iterator': [FAIL], |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 'language/statements/generators/yield-as-statement': [FAIL], | 620 'language/statements/generators/yield-as-statement': [FAIL], |
624 'language/statements/generators/yield-as-yield-operand': [FAIL], | 621 'language/statements/generators/yield-as-yield-operand': [FAIL], |
625 'language/statements/generators/yield-newline': [FAIL], | 622 'language/statements/generators/yield-newline': [FAIL], |
626 'language/statements/generators/yield-star-before-newline': [FAIL], | 623 'language/statements/generators/yield-star-before-newline': [FAIL], |
627 | 624 |
628 # TODO(4680,rmcilroy): Test262Error: Expected a RangeError to be thrown but no
exception was thrown at all | 625 # TODO(4680,rmcilroy): Test262Error: Expected a RangeError to be thrown but no
exception was thrown at all |
629 'built-ins/Date/prototype/toISOString/15.9.5.43-0-13': [FAIL], | 626 'built-ins/Date/prototype/toISOString/15.9.5.43-0-13': [FAIL], |
630 }], # ignition == True | 627 }], # ignition == True |
631 | 628 |
632 ] | 629 ] |
OLD | NEW |