| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 # This is an incompatibility between ES5 and V8 on enumerating | 46 # This is an incompatibility between ES5 and V8 on enumerating |
| 47 # shadowed elements in a for..in loop. | 47 # shadowed elements in a for..in loop. |
| 48 # https://code.google.com/p/v8/issues/detail?id=705 | 48 # https://code.google.com/p/v8/issues/detail?id=705 |
| 49 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], | 49 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], |
| 50 | 50 |
| 51 ###################### MISSING ES6 FEATURES ####################### | 51 ###################### MISSING ES6 FEATURES ####################### |
| 52 | 52 |
| 53 # Functions in blocks are var-declared and hoisted in sloppy mode | 53 # Functions in blocks are var-declared and hoisted in sloppy mode |
| 54 # https://code.google.com/p/v8/issues/detail?id=3305 | 54 # https://code.google.com/p/v8/issues/detail?id=3305 |
| 55 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS, FAIL_SLOP
PY], | 55 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS], |
| 56 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY], | 56 'language/block-scope/shadowing/lookup-from-closure': [PASS], |
| 57 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct
ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY], | 57 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct
ion-declaration-with-function-declaration': [PASS], |
| 58 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct
ion-declaration-with-var': [PASS, FAIL_SLOPPY], | 58 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct
ion-declaration-with-var': [PASS], |
| 59 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w
ith-function-declaration': [PASS, FAIL_SLOPPY], | 59 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w
ith-function-declaration': [PASS], |
| 60 'language/statements/let/block-local-closure-set-before-initialization': [PASS
, FAIL_SLOPPY], | 60 'language/statements/let/block-local-closure-set-before-initialization': [PASS
], |
| 61 | 61 |
| 62 # https://code.google.com/p/v8/issues/detail?id=4405 | 62 # https://code.google.com/p/v8/issues/detail?id=4405 |
| 63 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl
ock-let-declaration-unseen-outside-of-block': [PASS, FAIL], | 63 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl
ock-let-declaration-unseen-outside-of-block': [PASS, FAIL], |
| 64 | 64 |
| 65 # https://code.google.com/p/v8/issues/detail?id=3305 | 65 # https://code.google.com/p/v8/issues/detail?id=3305 |
| 66 # This times out in sloppy mode because sloppy const assignment does not throw
. | 66 # This times out in sloppy mode because sloppy const assignment does not throw
. |
| 67 'language/statements/const/syntax/const-invalid-assignment-next-expression-for
': [SKIP], | 67 'language/statements/const/syntax/const-invalid-assignment-next-expression-for
': [SKIP], |
| 68 | 68 |
| 69 # It's unclear what the right behavior for [[Enumerate]] is; we're awaiting | 69 # It's unclear what the right behavior for [[Enumerate]] is; we're awaiting |
| 70 # clarification in the spec. Currently, our for-in implementation for | 70 # clarification in the spec. Currently, our for-in implementation for |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 'language/statements/function/S13.2.2_A17_T2': [SKIP], | 639 'language/statements/function/S13.2.2_A17_T2': [SKIP], |
| 640 'language/statements/function/S13.2.2_A17_T3': [SKIP], | 640 'language/statements/function/S13.2.2_A17_T3': [SKIP], |
| 641 }], # ignition == True | 641 }], # ignition == True |
| 642 | 642 |
| 643 ['ignition == True and (arch == arm or arch == arm64)', { | 643 ['ignition == True and (arch == arm or arch == arm64)', { |
| 644 'built-ins/encodeURI*': [SKIP], | 644 'built-ins/encodeURI*': [SKIP], |
| 645 'intl402/9.2.2': [SKIP], | 645 'intl402/9.2.2': [SKIP], |
| 646 }], # ignition == True and (arch == arm or arch == arm64) | 646 }], # ignition == True and (arch == arm or arch == arm64) |
| 647 | 647 |
| 648 ] | 648 ] |
| OLD | NEW |