Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: test/test262-es6/test262-es6.status

Issue 1327483002: Stage sloppy let (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: another test Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'built-ins/Math/sin/S15.8.2.16_A7': [PASS, FAIL_OK], 67 'built-ins/Math/sin/S15.8.2.16_A7': [PASS, FAIL_OK],
68 'built-ins/Math/tan/S15.8.2.18_A7': [PASS, FAIL_OK], 68 'built-ins/Math/tan/S15.8.2.18_A7': [PASS, FAIL_OK],
69 69
70 # This is an incompatibility between ES5 and V8 on enumerating 70 # This is an incompatibility between ES5 and V8 on enumerating
71 # shadowed elements in a for..in loop. 71 # shadowed elements in a for..in loop.
72 # https://code.google.com/p/v8/issues/detail?id=705 72 # https://code.google.com/p/v8/issues/detail?id=705
73 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK], 73 'language/statements/for-in/12.6.4-2': [PASS, FAIL_OK],
74 74
75 ###################### MISSING ES6 FEATURES ####################### 75 ###################### MISSING ES6 FEATURES #######################
76 76
77 # Class, let, const in sloppy mode. 77 # Const is still interpreted as legacy const in sloppy mode
78 # https://code.google.com/p/v8/issues/detail?id=3305 78 # https://code.google.com/p/v8/issues/detail?id=3305
79 'language/block-scope/leave/finally-block-let-declaration-only-shadows-outer-p arameter-value-1': [PASS, FAIL_SLOPPY],
80 'language/block-scope/leave/finally-block-let-declaration-only-shadows-outer-p arameter-value-2': [PASS, FAIL_SLOPPY],
81 'language/block-scope/leave/for-loop-block-let-declaration-only-shadows-outer- parameter-value-1': [PASS, FAIL_SLOPPY],
82 'language/block-scope/leave/for-loop-block-let-declaration-only-shadows-outer- parameter-value-2': [PASS, FAIL_SLOPPY],
83 'language/block-scope/leave/nested-block-let-declaration-only-shadows-outer-pa rameter-value-1': [PASS, FAIL_SLOPPY],
84 'language/block-scope/leave/nested-block-let-declaration-only-shadows-outer-pa rameter-value-2': [PASS, FAIL_SLOPPY],
85 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl ock-let-declaration-unseen-outside-of-block': [PASS, FAIL_SLOPPY],
86 'language/block-scope/leave/try-block-let-declaration-only-shadows-outer-param eter-value-1': [PASS, FAIL_SLOPPY],
87 'language/block-scope/leave/try-block-let-declaration-only-shadows-outer-param eter-value-2': [PASS, FAIL_SLOPPY],
88 'language/block-scope/leave/verify-context-in-finally-block': [PASS, FAIL_SLOP PY],
89 'language/block-scope/leave/verify-context-in-for-loop-block': [PASS, FAIL_SLO PPY],
90 'language/block-scope/leave/verify-context-in-labelled-block': [PASS, FAIL_SLO PPY],
91 'language/block-scope/leave/verify-context-in-try-block': [PASS, FAIL_SLOPPY],
92 'language/block-scope/leave/x-after-break-to-label': [PASS, FAIL_SLOPPY],
93 'language/block-scope/leave/x-before-continue': [PASS, FAIL_SLOPPY],
94 'language/block-scope/return-from/block-let': [PASS, FAIL_SLOPPY],
95 'language/block-scope/shadowing/catch-parameter-shadowing-let-declaration': [P ASS, FAIL_SLOPPY],
96 'language/block-scope/shadowing/const-declaration-shadowing-catch-parameter': [PASS, FAIL_SLOPPY], 79 'language/block-scope/shadowing/const-declaration-shadowing-catch-parameter': [PASS, FAIL_SLOPPY],
97 'language/block-scope/shadowing/const-declarations-shadowing-parameter-name-le t-const-and-var-variables': [PASS, FAIL_SLOPPY], 80 'language/block-scope/shadowing/const-declarations-shadowing-parameter-name-le t-const-and-var-variables': [PASS, FAIL_SLOPPY],
98 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS, FAIL_SLOP PY],
99 'language/block-scope/shadowing/dynamic-lookup-in-and-through-block-contexts': [PASS, FAIL_SLOPPY],
100 'language/block-scope/shadowing/let-declaration-shadowing-catch-parameter': [P ASS, FAIL_SLOPPY],
101 'language/block-scope/shadowing/let-declarations-shadowing-parameter-name-let- const-and-var': [PASS, FAIL_SLOPPY],
102 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY],
103 'language/block-scope/shadowing/lookup-in-and-through-block-contexts': [PASS, FAIL_SLOPPY],
104 'language/block-scope/shadowing/parameter-name-shadowing-parameter-name-let-co nst-and-var': [PASS, FAIL_SLOPPY],
105 'language/block-scope/syntax/for-in/acquire-properties-from-array': [PASS, FAI L_SLOPPY],
106 'language/block-scope/syntax/for-in/acquire-properties-from-object': [PASS, FA IL_SLOPPY],
107 'language/block-scope/syntax/for-in/mixed-values-in-iteration': [PASS, FAIL_SL OPPY],
108 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY],
109 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS, FAIL_SLOPPY],
110 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS, FAIL_SLOPPY],
111 'language/statements/const/block-local-closure-get-before-initialization': [PA SS, FAIL_SLOPPY], 81 'language/statements/const/block-local-closure-get-before-initialization': [PA SS, FAIL_SLOPPY],
112 'language/statements/const/block-local-use-before-initialization-in-declaratio n-statement': [PASS, FAIL_SLOPPY], 82 'language/statements/const/block-local-use-before-initialization-in-declaratio n-statement': [PASS, FAIL_SLOPPY],
113 'language/statements/const/block-local-use-before-initialization-in-prior-stat ement': [PASS, FAIL_SLOPPY], 83 'language/statements/const/block-local-use-before-initialization-in-prior-stat ement': [PASS, FAIL_SLOPPY],
114 'language/statements/const/function-local-closure-get-before-initialization': [PASS, FAIL_SLOPPY], 84 'language/statements/const/function-local-closure-get-before-initialization': [PASS, FAIL_SLOPPY],
115 'language/statements/const/function-local-use-before-initialization-in-declara tion-statement': [PASS, FAIL_SLOPPY], 85 'language/statements/const/function-local-use-before-initialization-in-declara tion-statement': [PASS, FAIL_SLOPPY],
116 'language/statements/const/function-local-use-before-initialization-in-prior-s tatement': [PASS, FAIL_SLOPPY], 86 'language/statements/const/function-local-use-before-initialization-in-prior-s tatement': [PASS, FAIL_SLOPPY],
117 'language/statements/const/global-closure-get-before-initialization': [PASS, F AIL_SLOPPY], 87 'language/statements/const/global-closure-get-before-initialization': [PASS, F AIL_SLOPPY],
118 'language/statements/const/global-use-before-initialization-in-declaration-sta tement': [PASS, FAIL_SLOPPY], 88 'language/statements/const/global-use-before-initialization-in-declaration-sta tement': [PASS, FAIL_SLOPPY],
119 'language/statements/const/global-use-before-initialization-in-prior-statement ': [PASS, FAIL_SLOPPY], 89 'language/statements/const/global-use-before-initialization-in-prior-statement ': [PASS, FAIL_SLOPPY],
120 'language/statements/const/syntax/block-scope-syntax-const-declarations-mixed- with-without-initialiser': [PASS, FAIL_SLOPPY], 90 'language/statements/const/syntax/block-scope-syntax-const-declarations-mixed- with-without-initialiser': [PASS, FAIL_SLOPPY],
(...skipping 10 matching lines...) Expand all
131 'language/statements/const/syntax/with-initializer-label-statement': [PASS, FA IL_SLOPPY], 101 'language/statements/const/syntax/with-initializer-label-statement': [PASS, FA IL_SLOPPY],
132 'language/statements/const/syntax/with-initializer-while-expression-statement' : [PASS, FAIL_SLOPPY], 102 'language/statements/const/syntax/with-initializer-while-expression-statement' : [PASS, FAIL_SLOPPY],
133 'language/statements/const/syntax/without-initializer-case-expression-statemen t-list': [PASS, FAIL_SLOPPY], 103 'language/statements/const/syntax/without-initializer-case-expression-statemen t-list': [PASS, FAIL_SLOPPY],
134 'language/statements/const/syntax/without-initializer-default-statement-list': [PASS, FAIL_SLOPPY], 104 'language/statements/const/syntax/without-initializer-default-statement-list': [PASS, FAIL_SLOPPY],
135 'language/statements/const/syntax/without-initializer-do-statement-while-expre ssion': [PASS, FAIL_SLOPPY], 105 'language/statements/const/syntax/without-initializer-do-statement-while-expre ssion': [PASS, FAIL_SLOPPY],
136 '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],
137 '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],
138 '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],
139 'language/statements/const/syntax/without-initializer-label-statement': [PASS, FAIL_SLOPPY], 109 'language/statements/const/syntax/without-initializer-label-statement': [PASS, FAIL_SLOPPY],
140 '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],
141 'language/statements/continue/labeled-continue': [PASS, FAIL_SLOPPY],
142 'language/statements/continue/nested-let-bound-for-loops-inner-continue': [PAS S, FAIL_SLOPPY],
143 'language/statements/continue/nested-let-bound-for-loops-labeled-continue': [P ASS, FAIL_SLOPPY],
144 'language/statements/continue/nested-let-bound-for-loops-outer-continue': [PAS S, FAIL_SLOPPY],
145 'language/statements/continue/no-label-continue': [PASS, FAIL_SLOPPY],
146 'language/statements/continue/shadowing-loop-variable-in-same-scope-as-continu e': [PASS, FAIL_SLOPPY],
147 'language/statements/continue/simple-and-labeled': [PASS, FAIL_SLOPPY],
148 '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],
149 '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],
150 'language/statements/for-in/let-bound-names-fordecl-tdz-for-in': [PASS, FAIL_S LOPPY],
151 'language/statements/for-in/let-fresh-binding-per-iteration-for-in': [PASS, FA IL_SLOPPY],
152 '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],
153 '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],
154 'language/statements/for-of/let-bound-names-fordecl-tdz-for-of': [PASS, FAIL_S LOPPY], 115
155 'language/statements/for-of/let-fresh-binding-per-iteration-for-of': [PASS, FA IL_SLOPPY], 116 # Functions in blocks are var-declared and hoisted in sloppy mode
156 'language/statements/for/const-fresh-binding-per-iteration-for': [PASS, FAIL_S LOPPY], 117 # https://code.google.com/p/v8/issues/detail?id=3305
157 'language/statements/for/let-fresh-binding-per-iteration-for': [PASS, FAIL_SLO PPY], 118 'language/block-scope/shadowing/dynamic-lookup-from-closure': [PASS, FAIL_SLOP PY],
158 'language/statements/let/block-local-closure-get-before-initialization': [PASS , FAIL_SLOPPY], 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],
159 'language/statements/let/block-local-closure-set-before-initialization': [PASS , FAIL_SLOPPY], 123 'language/statements/let/block-local-closure-set-before-initialization': [PASS , FAIL_SLOPPY],
160 'language/statements/let/block-local-use-before-initialization-in-declaration- statement': [PASS, FAIL_SLOPPY], 124
161 'language/statements/let/block-local-use-before-initialization-in-prior-statem ent': [PASS, FAIL_SLOPPY],
162 'language/statements/let/function-local-closure-get-before-initialization': [P ASS, FAIL_SLOPPY],
163 'language/statements/let/function-local-closure-set-before-initialization': [P ASS, FAIL_SLOPPY],
164 'language/statements/let/function-local-use-before-initialization-in-declarati on-statement': [PASS, FAIL_SLOPPY],
165 'language/statements/let/function-local-use-before-initialization-in-prior-sta tement': [PASS, FAIL_SLOPPY],
166 'language/statements/let/global-closure-get-before-initialization': [PASS, FAI L_SLOPPY],
167 'language/statements/let/global-closure-set-before-initialization': [PASS, FAI L_SLOPPY],
168 'language/statements/let/syntax/let': [PASS, FAIL_SLOPPY],
169 'language/statements/let/syntax/let-closure-inside-condition': [PASS, FAIL_SLO PPY],
170 'language/statements/let/syntax/let-closure-inside-initialization': [PASS, FAI L_SLOPPY],
171 'language/statements/let/syntax/let-closure-inside-next-expression': [PASS, FA IL_SLOPPY],
172 'language/statements/let/syntax/let-iteration-variable-is-freshly-allocated-fo r-each-iteration-multi-let-binding': [PASS, FAIL_SLOPPY],
173 'language/statements/let/syntax/let-iteration-variable-is-freshly-allocated-fo r-each-iteration-single-let-binding': [PASS, FAIL_SLOPPY],
174 'language/statements/let/syntax/let-outer-inner-let-bindings': [PASS, FAIL_SLO PPY],
175 'language/statements/let/syntax/with-initialisers-in-statement-positions-case- expression-statement-list': [PASS, FAIL_SLOPPY],
176 'language/statements/let/syntax/with-initialisers-in-statement-positions-defau lt-statement-list': [PASS, FAIL_SLOPPY],
177 'language/statements/let/syntax/without-initialisers-in-statement-positions-ca se-expression-statement-list': [PASS, FAIL_SLOPPY],
178 'language/statements/let/syntax/without-initialisers-in-statement-positions-de fault-statement-list': [PASS, FAIL_SLOPPY],
179 125
180 # https://code.google.com/p/v8/issues/detail?id=3305 126 # https://code.google.com/p/v8/issues/detail?id=3305
181 # This times out in sloppy mode because sloppy const assignment does not throw . 127 # This times out in sloppy mode because sloppy const assignment does not throw .
182 'language/statements/const/syntax/const-invalid-assignment-next-expression-for ': [PASS, FAIL, TIMEOUT], 128 'language/statements/const/syntax/const-invalid-assignment-next-expression-for ': [PASS, FAIL, TIMEOUT],
183 129
130 # https://code.google.com/p/v8/issues/detail?id=4403
131 'language/statements/let/syntax/identifier-let-disallowed-as-boundname': [PASS , FAIL_SLOPPY],
132
184 # Number/Boolean.prototype is a plain object in ES6 133 # Number/Boolean.prototype is a plain object in ES6
185 # https://code.google.com/p/v8/issues/detail?id=4001 134 # https://code.google.com/p/v8/issues/detail?id=4001
186 'built-ins/Boolean/prototype/S15.6.3.1_A1': [FAIL], 135 'built-ins/Boolean/prototype/S15.6.3.1_A1': [FAIL],
187 'built-ins/Boolean/prototype/S15.6.4_A1': [FAIL], 136 'built-ins/Boolean/prototype/S15.6.4_A1': [FAIL],
188 'built-ins/Boolean/prototype/toString/S15.6.4.2_A1_T1': [FAIL], 137 'built-ins/Boolean/prototype/toString/S15.6.4.2_A1_T1': [FAIL],
189 'built-ins/Boolean/prototype/toString/S15.6.4.2_A1_T2': [FAIL], 138 'built-ins/Boolean/prototype/toString/S15.6.4.2_A1_T2': [FAIL],
190 'built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T1': [FAIL], 139 'built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T1': [FAIL],
191 'built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T2': [FAIL], 140 'built-ins/Boolean/prototype/valueOf/S15.6.4.3_A1_T2': [FAIL],
192 'built-ins/Number/15.7.4-1': [FAIL], 141 'built-ins/Number/15.7.4-1': [FAIL],
193 'built-ins/Number/prototype/S15.7.3.1_A2_*': [FAIL], 142 'built-ins/Number/prototype/S15.7.3.1_A2_*': [FAIL],
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 748
800 # BUG(3251225): Tests that timeout with --nocrankshaft. 749 # BUG(3251225): Tests that timeout with --nocrankshaft.
801 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], 750 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP],
802 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], 751 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP],
803 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], 752 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP],
804 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], 753 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP],
805 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], 754 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP],
806 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], 755 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP],
807 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 756 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
808 ] 757 ]
OLDNEW
« no previous file with comments | « src/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698