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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 'language/statements/const/syntax/without-initializer-for-statement': [PASS, F
AIL_SLOPPY], | 106 'language/statements/const/syntax/without-initializer-for-statement': [PASS, F
AIL_SLOPPY], |
107 'language/statements/const/syntax/without-initializer-if-expression-statement'
: [PASS, FAIL_SLOPPY], | 107 'language/statements/const/syntax/without-initializer-if-expression-statement'
: [PASS, FAIL_SLOPPY], |
108 'language/statements/const/syntax/without-initializer-if-expression-statement-
else-statement': [PASS, FAIL_SLOPPY], | 108 'language/statements/const/syntax/without-initializer-if-expression-statement-
else-statement': [PASS, FAIL_SLOPPY], |
109 'language/statements/const/syntax/without-initializer-label-statement': [PASS,
FAIL_SLOPPY], | 109 'language/statements/const/syntax/without-initializer-label-statement': [PASS,
FAIL_SLOPPY], |
110 'language/statements/const/syntax/without-initializer-while-expression-stateme
nt': [PASS, FAIL_SLOPPY], | 110 'language/statements/const/syntax/without-initializer-while-expression-stateme
nt': [PASS, FAIL_SLOPPY], |
111 'language/statements/for-in/const-bound-names-fordecl-tdz-for-in': [PASS, FAIL
_SLOPPY], | 111 'language/statements/for-in/const-bound-names-fordecl-tdz-for-in': [PASS, FAIL
_SLOPPY], |
112 'language/statements/for-in/const-fresh-binding-per-iteration-for-in': [PASS,
FAIL_SLOPPY], | 112 'language/statements/for-in/const-fresh-binding-per-iteration-for-in': [PASS,
FAIL_SLOPPY], |
113 'language/statements/for-of/const-bound-names-fordecl-tdz-for-of': [PASS, FAIL
_SLOPPY], | 113 'language/statements/for-of/const-bound-names-fordecl-tdz-for-of': [PASS, FAIL
_SLOPPY], |
114 'language/statements/for-of/const-fresh-binding-per-iteration-for-of': [PASS,
FAIL_SLOPPY], | 114 'language/statements/for-of/const-fresh-binding-per-iteration-for-of': [PASS,
FAIL_SLOPPY], |
115 | 115 |
| 116 # Functions in blocks are var-declared and hoisted in sloppy mode |
| 117 # https://code.google.com/p/v8/issues/detail?id=3305 |
| 118 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS, FAIL_SLOP
PY], |
| 119 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY], |
| 120 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct
ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY], |
| 121 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct
ion-declaration-with-var': [PASS, FAIL_SLOPPY], |
| 122 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w
ith-function-declaration': [PASS, FAIL_SLOPPY], |
| 123 'language/statements/let/block-local-closure-set-before-initialization': [PASS
, FAIL_SLOPPY], |
| 124 |
116 # https://code.google.com/p/v8/issues/detail?id=4405 | 125 # https://code.google.com/p/v8/issues/detail?id=4405 |
117 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl
ock-let-declaration-unseen-outside-of-block': [PASS, FAIL], | 126 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl
ock-let-declaration-unseen-outside-of-block': [PASS, FAIL], |
118 | 127 |
119 # https://code.google.com/p/v8/issues/detail?id=3305 | 128 # https://code.google.com/p/v8/issues/detail?id=3305 |
120 # This times out in sloppy mode because sloppy const assignment does not throw
. | 129 # This times out in sloppy mode because sloppy const assignment does not throw
. |
121 'language/statements/const/syntax/const-invalid-assignment-next-expression-for
': [PASS, FAIL, TIMEOUT], | 130 'language/statements/const/syntax/const-invalid-assignment-next-expression-for
': [PASS, FAIL, TIMEOUT], |
122 | 131 |
123 # Number/Boolean.prototype is a plain object in ES6 | 132 # Number/Boolean.prototype is a plain object in ES6 |
124 # https://code.google.com/p/v8/issues/detail?id=4001 | 133 # https://code.google.com/p/v8/issues/detail?id=4001 |
125 'built-ins/Boolean/prototype/S15.6.3.1_A1': [FAIL], | 134 'built-ins/Boolean/prototype/S15.6.3.1_A1': [FAIL], |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 | 821 |
813 # BUG(3251225): Tests that timeout with --nocrankshaft. | 822 # BUG(3251225): Tests that timeout with --nocrankshaft. |
814 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], | 823 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], |
815 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], | 824 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], |
816 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], | 825 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], |
817 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], | 826 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], |
818 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], | 827 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], |
819 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], | 828 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], |
820 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' | 829 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' |
821 ] | 830 ] |
OLD | NEW |