| 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 17 matching lines...) Expand all Loading... |
| 28 [ | 28 [ |
| 29 | 29 |
| 30 [ALWAYS, { | 30 [ALWAYS, { |
| 31 ###################### NEEDS INVESTIGATION ####################### | 31 ###################### NEEDS INVESTIGATION ####################### |
| 32 | 32 |
| 33 # This is an incompatibility between ES5 and V8 on enumerating | 33 # This is an incompatibility between ES5 and V8 on enumerating |
| 34 # shadowed elements in a for..in loop. | 34 # shadowed elements in a for..in loop. |
| 35 # https://code.google.com/p/v8/issues/detail?id=705 | 35 # https://code.google.com/p/v8/issues/detail?id=705 |
| 36 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], | 36 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], |
| 37 | 37 |
| 38 # Date tests that fail in CE(S)T timezone. |
| 39 # https://bugs.chromium.org/p/v8/issues/detail?id=5449 |
| 40 'built-ins/Date/prototype/setFullYear/new-value-time-clip': [PASS, FAIL], |
| 41 'built-ins/Date/prototype/setMonth/new-value-time-clip': [PASS, FAIL], |
| 42 |
| 38 ###################### MISSING ES6 FEATURES ####################### | 43 ###################### MISSING ES6 FEATURES ####################### |
| 39 | 44 |
| 40 # The order of adding the name property is wrong | 45 # The order of adding the name property is wrong |
| 41 # https://code.google.com/p/v8/issues/detail?id=4199 | 46 # https://code.google.com/p/v8/issues/detail?id=4199 |
| 42 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO
PPY], | 47 'language/computed-property-names/class/static/method-number': [FAIL, FAIL_SLO
PPY], |
| 43 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO
PPY], | 48 'language/computed-property-names/class/static/method-symbol': [FAIL, FAIL_SLO
PPY], |
| 44 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO
PPY], | 49 'language/computed-property-names/class/static/method-string': [FAIL, FAIL_SLO
PPY], |
| 45 | 50 |
| 46 # https://code.google.com/p/v8/issues/detail?id=4248 | 51 # https://code.google.com/p/v8/issues/detail?id=4248 |
| 47 'language/expressions/compound-assignment/S11.13.2_A5.*': [FAIL], | 52 'language/expressions/compound-assignment/S11.13.2_A5.*': [FAIL], |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 'language/module-code/*': [SKIP], | 638 'language/module-code/*': [SKIP], |
| 634 }], # 'variant != ignition' | 639 }], # 'variant != ignition' |
| 635 ['variant == ignition', { | 640 ['variant == ignition', { |
| 636 'language/module-code/comment-*': [SKIP], | 641 'language/module-code/comment-*': [SKIP], |
| 637 'language/module-code/eval-*': [SKIP], | 642 'language/module-code/eval-*': [SKIP], |
| 638 'language/module-code/instn-*': [SKIP], | 643 'language/module-code/instn-*': [SKIP], |
| 639 'language/module-code/namespace/*': [SKIP], | 644 'language/module-code/namespace/*': [SKIP], |
| 640 }], # 'variant == ignition' | 645 }], # 'variant == ignition' |
| 641 | 646 |
| 642 ] | 647 ] |
| OLD | NEW |