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

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

Issue 1288153003: Stage sloppy classes (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More test262 tests pass with sloppy class Created 5 years, 4 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/flag-definitions.h ('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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 # Class, let, 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 'built-ins/Array/prototype/concat/Array.prototype.concat_non-array': [PASS, FA IL_SLOPPY],
80 'built-ins/Promise/all/ctx-ctor': [PASS, FAIL_SLOPPY],
81 'built-ins/Promise/prototype/then/ctor-custom': [PASS, FAIL_SLOPPY],
82 'built-ins/Promise/race/ctx-ctor': [PASS, FAIL_SLOPPY],
83 'built-ins/Promise/reject/ctx-ctor': [PASS, FAIL_SLOPPY],
84 'built-ins/Promise/resolve/ctx-ctor': [PASS, FAIL_SLOPPY],
85 'language/block-scope/leave/finally-block-let-declaration-only-shadows-outer-p arameter-value-1': [PASS, FAIL_SLOPPY], 79 'language/block-scope/leave/finally-block-let-declaration-only-shadows-outer-p arameter-value-1': [PASS, FAIL_SLOPPY],
86 'language/block-scope/leave/finally-block-let-declaration-only-shadows-outer-p arameter-value-2': [PASS, FAIL_SLOPPY], 80 'language/block-scope/leave/finally-block-let-declaration-only-shadows-outer-p arameter-value-2': [PASS, FAIL_SLOPPY],
87 'language/block-scope/leave/for-loop-block-let-declaration-only-shadows-outer- parameter-value-1': [PASS, FAIL_SLOPPY], 81 'language/block-scope/leave/for-loop-block-let-declaration-only-shadows-outer- parameter-value-1': [PASS, FAIL_SLOPPY],
88 'language/block-scope/leave/for-loop-block-let-declaration-only-shadows-outer- parameter-value-2': [PASS, FAIL_SLOPPY], 82 'language/block-scope/leave/for-loop-block-let-declaration-only-shadows-outer- parameter-value-2': [PASS, FAIL_SLOPPY],
89 'language/block-scope/leave/nested-block-let-declaration-only-shadows-outer-pa rameter-value-1': [PASS, FAIL_SLOPPY], 83 'language/block-scope/leave/nested-block-let-declaration-only-shadows-outer-pa rameter-value-1': [PASS, FAIL_SLOPPY],
90 'language/block-scope/leave/nested-block-let-declaration-only-shadows-outer-pa rameter-value-2': [PASS, FAIL_SLOPPY], 84 'language/block-scope/leave/nested-block-let-declaration-only-shadows-outer-pa rameter-value-2': [PASS, FAIL_SLOPPY],
91 'language/block-scope/leave/outermost-binding-updated-in-catch-block-nested-bl ock-let-declaration-unseen-outside-of-block': [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],
92 'language/block-scope/leave/try-block-let-declaration-only-shadows-outer-param eter-value-1': [PASS, FAIL_SLOPPY], 86 'language/block-scope/leave/try-block-let-declaration-only-shadows-outer-param eter-value-1': [PASS, FAIL_SLOPPY],
93 'language/block-scope/leave/try-block-let-declaration-only-shadows-outer-param eter-value-2': [PASS, FAIL_SLOPPY], 87 'language/block-scope/leave/try-block-let-declaration-only-shadows-outer-param eter-value-2': [PASS, FAIL_SLOPPY],
94 'language/block-scope/leave/verify-context-in-finally-block': [PASS, FAIL_SLOP PY], 88 'language/block-scope/leave/verify-context-in-finally-block': [PASS, FAIL_SLOP PY],
(...skipping 12 matching lines...) Expand all
107 'language/block-scope/shadowing/let-declarations-shadowing-parameter-name-let- const-and-var': [PASS, FAIL_SLOPPY], 101 'language/block-scope/shadowing/let-declarations-shadowing-parameter-name-let- const-and-var': [PASS, FAIL_SLOPPY],
108 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY], 102 'language/block-scope/shadowing/lookup-from-closure': [PASS, FAIL_SLOPPY],
109 'language/block-scope/shadowing/lookup-in-and-through-block-contexts': [PASS, FAIL_SLOPPY], 103 'language/block-scope/shadowing/lookup-in-and-through-block-contexts': [PASS, FAIL_SLOPPY],
110 'language/block-scope/shadowing/parameter-name-shadowing-parameter-name-let-co nst-and-var': [PASS, FAIL_SLOPPY], 104 'language/block-scope/shadowing/parameter-name-shadowing-parameter-name-let-co nst-and-var': [PASS, FAIL_SLOPPY],
111 'language/block-scope/syntax/for-in/acquire-properties-from-array': [PASS, FAI L_SLOPPY], 105 'language/block-scope/syntax/for-in/acquire-properties-from-array': [PASS, FAI L_SLOPPY],
112 'language/block-scope/syntax/for-in/acquire-properties-from-object': [PASS, FA IL_SLOPPY], 106 'language/block-scope/syntax/for-in/acquire-properties-from-object': [PASS, FA IL_SLOPPY],
113 'language/block-scope/syntax/for-in/mixed-values-in-iteration': [PASS, FAIL_SL OPPY], 107 'language/block-scope/syntax/for-in/mixed-values-in-iteration': [PASS, FAIL_SL OPPY],
114 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY], 108 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-function-declaration': [PASS, FAIL_SLOPPY],
115 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS, FAIL_SLOPPY], 109 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-funct ion-declaration-with-var': [PASS, FAIL_SLOPPY],
116 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS, FAIL_SLOPPY], 110 'language/block-scope/syntax/redeclaration-in-block/attempt-to-redeclare-var-w ith-function-declaration': [PASS, FAIL_SLOPPY],
117 'language/class/definition/ClassDeclaration_restricted-properties': [PASS, FAI L_SLOPPY],
118 'language/class/definition/ClassExpression_restricted-properties': [PASS, FAIL _SLOPPY],
119 'language/class/definition/ClassMethod_restricted-properties': [PASS, FAIL_SLO PPY],
120 'language/class/method-definition/generator-no-yield': [PASS, FAIL_SLOPPY],
121 'language/class/method-definition/generator-return': [PASS, FAIL_SLOPPY],
122 'language/class/method-definition/yield-as-expression-with-rhs': [PASS, FAIL_S LOPPY],
123 'language/class/method-definition/yield-as-expression-without-rhs': [PASS, FAI L_SLOPPY],
124 'language/class/method-definition/yield-as-generator-method-binding-identifier ': [PASS, FAIL_SLOPPY],
125 'language/class/method-definition/yield-as-literal-property-name': [PASS, FAIL _SLOPPY],
126 'language/class/method-definition/yield-as-property-name': [PASS, FAIL_SLOPPY] ,
127 'language/class/method-definition/yield-as-statement': [PASS, FAIL_SLOPPY],
128 'language/class/method-definition/yield-as-yield-operand': [PASS, FAIL_SLOPPY] ,
129 'language/class/method-definition/yield-newline': [PASS, FAIL_SLOPPY],
130 'language/class/method-definition/yield-star-before-newline': [PASS, FAIL_SLOP PY],
131 'language/computed-property-names/class/accessor/*': [PASS, FAIL_SLOPPY],
132 'language/computed-property-names/class/method/*': [PASS, FAIL_SLOPPY],
133 'language/computed-property-names/class/static/generator-constructor': [PASS, FAIL_SLOPPY],
134 'language/computed-property-names/class/static/generator-prototype': [PASS, FA IL_SLOPPY],
135 'language/computed-property-names/class/static/getter-constructor': [PASS, FAI L_SLOPPY],
136 'language/computed-property-names/class/static/getter-prototype': [PASS, FAIL_ SLOPPY],
137 'language/computed-property-names/class/static/method-constructor': [PASS, FAI L_SLOPPY],
138 'language/computed-property-names/class/static/method-prototype': [PASS, FAIL_ SLOPPY],
139 'language/computed-property-names/class/static/setter-constructor': [PASS, FAI L_SLOPPY],
140 'language/computed-property-names/class/static/setter-prototype': [PASS, FAIL_ SLOPPY],
141 'language/computed-property-names/to-name-side-effects/class': [PASS, FAIL_SLO PPY],
142 'language/computed-property-names/to-name-side-effects/numbers-class': [PASS, FAIL_SLOPPY],
143 'language/expressions/arrow-function/lexical-super-call-from-within-constructo r':[PASS, FAIL_SLOPPY],
144 'language/expressions/arrow-function/lexical-super-property': [PASS, FAIL_SLOP PY],
145 'language/expressions/arrow-function/lexical-super-property-from-within-constr uctor': [PASS, FAIL_SLOPPY],
146 'language/expressions/arrow-function/lexical-supercall-from-immediately-invoke d-arrow': [PASS, FAIL_SLOPPY],
147 'language/expressions/class/restricted-properties': [PASS, FAIL_SLOPPY],
148 'language/expressions/object/method-definition/generator-param-redecl-const': [PASS, FAIL_SLOPPY],
149 'language/expressions/object/method-definition/generator-shadow-parameter-cons t': [PASS, FAIL_SLOPPY],
150 'language/rest-parameters/with-new-target': [PASS, FAIL_SLOPPY],
151 'language/statements/class/arguments/access': [PASS, FAIL_SLOPPY],
152 'language/statements/class/arguments/default-constructor': [PASS, FAIL_SLOPPY] ,
153 'language/statements/class/definition/accessors': [PASS, FAIL_SLOPPY],
154 'language/statements/class/definition/constructable-but-no-prototype': [PASS, FAIL_SLOPPY],
155 'language/statements/class/definition/constructor': [PASS, FAIL_SLOPPY],
156 'language/statements/class/definition/constructor-property': [PASS, FAIL_SLOPP Y],
157 'language/statements/class/definition/constructor-strict-by-default': [PASS, F AIL_SLOPPY],
158 'language/statements/class/definition/getters': [PASS, FAIL_SLOPPY],
159 'language/statements/class/definition/getters-2': [PASS, FAIL_SLOPPY],
160 'language/statements/class/definition/implicit-constructor': [PASS, FAIL_SLOPP Y],
161 'language/statements/class/definition/invalid-extends': [PASS, FAIL_SLOPPY],
162 'language/statements/class/definition/methods': [PASS, FAIL_SLOPPY],
163 'language/statements/class/definition/methods-gen-yield-as-expression-with-rhs ': [PASS, FAIL_SLOPPY],
164 'language/statements/class/definition/methods-gen-yield-as-generator-method-bi nding-identifier': [PASS, FAIL_SLOPPY],
165 'language/statements/class/definition/methods-gen-yield-as-literal-property-na me': [PASS, FAIL_SLOPPY],
166 'language/statements/class/definition/methods-gen-yield-as-property-name': [PA SS, FAIL_SLOPPY],
167 'language/statements/class/definition/methods-gen-yield-as-statement': [PASS, FAIL_SLOPPY],
168 'language/statements/class/definition/methods-gen-yield-as-yield-operand': [PA SS, FAIL_SLOPPY],
169 'language/statements/class/definition/methods-gen-yield-newline': [PASS, FAIL_ SLOPPY],
170 'language/statements/class/definition/methods-gen-yield-star-before-newline': [PASS, FAIL_SLOPPY],
171 'language/statements/class/definition/methods-named-eval-arguments': [PASS, FA IL_SLOPPY],
172 'language/statements/class/definition/methods-restricted-properties': [PASS, F AIL_SLOPPY],
173 'language/statements/class/definition/numeric-property-names': [PASS, FAIL_SLO PPY],
174 'language/statements/class/definition/prototype-getter': [PASS, FAIL_SLOPPY],
175 'language/statements/class/definition/prototype-property': [PASS, FAIL_SLOPPY] ,
176 'language/statements/class/definition/prototype-setter': [PASS, FAIL_SLOPPY],
177 'language/statements/class/definition/prototype-wiring': [PASS, FAIL_SLOPPY],
178 'language/statements/class/definition/setters': [PASS, FAIL_SLOPPY],
179 'language/statements/class/definition/setters-2': [PASS, FAIL_SLOPPY],
180 'language/statements/class/definition/side-effects-in-extends': [PASS, FAIL_SL OPPY],
181 'language/statements/class/definition/side-effects-in-property-define': [PASS, FAIL_SLOPPY],
182 'language/statements/class/definition/this-access-restriction': [PASS, FAIL_SL OPPY],
183 'language/statements/class/definition/this-access-restriction-2': [PASS, FAIL_ SLOPPY],
184 'language/statements/class/definition/this-check-ordering': [PASS, FAIL_SLOPPY ],
185 'language/statements/class/name-binding/basic': [PASS, FAIL_SLOPPY],
186 'language/statements/class/name-binding/const': [PASS, FAIL_SLOPPY],
187 'language/statements/class/name-binding/expression': [PASS, FAIL_SLOPPY],
188 'language/statements/class/name-binding/in-extends-expression': [PASS, FAIL_SL OPPY],
189 'language/statements/class/name-binding/in-extends-expression-assigned': [PASS , FAIL_SLOPPY],
190 'language/statements/class/name-binding/in-extends-expression-grouped': [PASS, FAIL_SLOPPY],
191 'language/statements/class/strict-mode/arguments-caller': [PASS, FAIL_SLOPPY],
192 'language/statements/class/subclass/binding': [PASS, FAIL_SLOPPY],
193 'language/statements/class/subclass/builtins': [PASS, FAIL_SLOPPY],
194 'language/statements/class/subclass/class-definition-evaluation-empty-construc tor-heritage-present': [PASS, FAIL_SLOPPY],
195 'language/statements/class/subclass/class-definition-null-proto': [PASS, FAIL_ SLOPPY],
196 'language/statements/class/subclass/class-definition-null-proto-contains-retur n-override': [PASS, FAIL_SLOPPY],
197 'language/statements/class/subclass/class-definition-null-proto-missing-return -override': [PASS, FAIL_SLOPPY],
198 'language/statements/class/subclass/class-definition-superclass-generator': [P ASS, FAIL_SLOPPY],
199 'language/statements/class/subclass/default-constructor': [PASS, FAIL_SLOPPY],
200 'language/statements/class/subclass/default-constructor-2': [PASS, FAIL_SLOPPY ],
201 'language/statements/class/subclass/derived-class-return-override-with-boolean ': [PASS, FAIL_SLOPPY],
202 'language/statements/class/subclass/derived-class-return-override-with-empty': [PASS, FAIL_SLOPPY],
203 'language/statements/class/subclass/derived-class-return-override-with-null': [PASS, FAIL_SLOPPY],
204 'language/statements/class/subclass/derived-class-return-override-with-number' : [PASS, FAIL_SLOPPY],
205 'language/statements/class/subclass/derived-class-return-override-with-object' : [PASS, FAIL_SLOPPY],
206 'language/statements/class/subclass/derived-class-return-override-with-string' : [PASS, FAIL_SLOPPY],
207 'language/statements/class/subclass/derived-class-return-override-with-symbol' : [PASS, FAIL_SLOPPY],
208 'language/statements/class/subclass/derived-class-return-override-with-this': [PASS, FAIL_SLOPPY],
209 'language/statements/class/subclass/derived-class-return-override-with-undefin ed': [PASS, FAIL_SLOPPY],
210 'language/statements/class/subclass/superclass-prototype-setter-constructor': [PASS, FAIL_SLOPPY],
211 'language/statements/class/subclass/superclass-prototype-setter-method-overrid e': [PASS, FAIL_SLOPPY],
212 'language/statements/class/subclass/superclass-static-method-override': [PASS, FAIL_SLOPPY],
213 'language/statements/class/super/in-constructor': [PASS, FAIL_SLOPPY],
214 'language/statements/class/super/in-getter': [PASS, FAIL_SLOPPY],
215 'language/statements/class/super/in-methods': [PASS, FAIL_SLOPPY],
216 'language/statements/class/super/in-setter': [PASS, FAIL_SLOPPY],
217 'language/statements/class/super/in-static-getter': [PASS, FAIL_SLOPPY],
218 'language/statements/class/super/in-static-methods': [PASS, FAIL_SLOPPY],
219 'language/statements/class/super/in-static-setter': [PASS, FAIL_SLOPPY],
220 'language/statements/class/syntax/class-body-has-direct-super-class-heritage': [PASS, FAIL_SLOPPY],
221 'language/statements/class/syntax/class-body-method-definition-super-property' : [PASS, FAIL_SLOPPY],
222 'language/statements/class/syntax/class-declaration-binding-identifier-class-e lement-list': [PASS, FAIL_SLOPPY],
223 'language/statements/class/syntax/class-declaration-computed-method-definition ': [PASS, FAIL_SLOPPY],
224 'language/statements/class/syntax/class-declaration-computed-method-generator- definition': [PASS, FAIL_SLOPPY],
225 'language/statements/class/syntax/class-declaration-heritage-identifier-refere nce-class-element-list': [PASS, FAIL_SLOPPY],
226 'language/statements/class/syntax/class-expression': [PASS, FAIL_SLOPPY],
227 'language/statements/class/syntax/class-expression-binding-identifier-opt-clas s-element-list': [PASS, FAIL_SLOPPY],
228 'language/statements/class/syntax/class-expression-heritage-identifier-referen ce': [PASS, FAIL_SLOPPY],
229 'language/statements/class/syntax/class-method-propname-constructor': [PASS, F AIL_SLOPPY],
230 'language/statements/class/syntax/early-errors/class-body-constructor-empty-mi ssing-class-heritage': [PASS, FAIL_SLOPPY],
231 'language/statements/const/block-local-closure-get-before-initialization': [PA SS, FAIL_SLOPPY], 111 'language/statements/const/block-local-closure-get-before-initialization': [PA SS, FAIL_SLOPPY],
232 'language/statements/const/block-local-use-before-initialization-in-declaratio n-statement': [PASS, FAIL_SLOPPY], 112 'language/statements/const/block-local-use-before-initialization-in-declaratio n-statement': [PASS, FAIL_SLOPPY],
233 'language/statements/const/block-local-use-before-initialization-in-prior-stat ement': [PASS, FAIL_SLOPPY], 113 'language/statements/const/block-local-use-before-initialization-in-prior-stat ement': [PASS, FAIL_SLOPPY],
234 'language/statements/const/function-local-closure-get-before-initialization': [PASS, FAIL_SLOPPY], 114 'language/statements/const/function-local-closure-get-before-initialization': [PASS, FAIL_SLOPPY],
235 'language/statements/const/function-local-use-before-initialization-in-declara tion-statement': [PASS, FAIL_SLOPPY], 115 'language/statements/const/function-local-use-before-initialization-in-declara tion-statement': [PASS, FAIL_SLOPPY],
236 'language/statements/const/function-local-use-before-initialization-in-prior-s tatement': [PASS, FAIL_SLOPPY], 116 'language/statements/const/function-local-use-before-initialization-in-prior-s tatement': [PASS, FAIL_SLOPPY],
237 'language/statements/const/global-closure-get-before-initialization': [PASS, F AIL_SLOPPY], 117 'language/statements/const/global-closure-get-before-initialization': [PASS, F AIL_SLOPPY],
238 'language/statements/const/global-use-before-initialization-in-declaration-sta tement': [PASS, FAIL_SLOPPY], 118 'language/statements/const/global-use-before-initialization-in-declaration-sta tement': [PASS, FAIL_SLOPPY],
239 'language/statements/const/global-use-before-initialization-in-prior-statement ': [PASS, FAIL_SLOPPY], 119 'language/statements/const/global-use-before-initialization-in-prior-statement ': [PASS, FAIL_SLOPPY],
240 'language/statements/const/syntax/block-scope-syntax-const-declarations-mixed- with-without-initialiser': [PASS, FAIL_SLOPPY], 120 'language/statements/const/syntax/block-scope-syntax-const-declarations-mixed- with-without-initialiser': [PASS, FAIL_SLOPPY],
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 'language/statements/let/syntax/let-closure-inside-condition': [PASS, FAIL_SLO PPY], 169 'language/statements/let/syntax/let-closure-inside-condition': [PASS, FAIL_SLO PPY],
290 'language/statements/let/syntax/let-closure-inside-initialization': [PASS, FAI L_SLOPPY], 170 'language/statements/let/syntax/let-closure-inside-initialization': [PASS, FAI L_SLOPPY],
291 'language/statements/let/syntax/let-closure-inside-next-expression': [PASS, FA IL_SLOPPY], 171 'language/statements/let/syntax/let-closure-inside-next-expression': [PASS, FA IL_SLOPPY],
292 'language/statements/let/syntax/let-iteration-variable-is-freshly-allocated-fo r-each-iteration-multi-let-binding': [PASS, FAIL_SLOPPY], 172 'language/statements/let/syntax/let-iteration-variable-is-freshly-allocated-fo r-each-iteration-multi-let-binding': [PASS, FAIL_SLOPPY],
293 'language/statements/let/syntax/let-iteration-variable-is-freshly-allocated-fo r-each-iteration-single-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],
294 'language/statements/let/syntax/let-outer-inner-let-bindings': [PASS, FAIL_SLO PPY], 174 'language/statements/let/syntax/let-outer-inner-let-bindings': [PASS, FAIL_SLO PPY],
295 'language/statements/let/syntax/with-initialisers-in-statement-positions-case- expression-statement-list': [PASS, FAIL_SLOPPY], 175 'language/statements/let/syntax/with-initialisers-in-statement-positions-case- expression-statement-list': [PASS, FAIL_SLOPPY],
296 'language/statements/let/syntax/with-initialisers-in-statement-positions-defau lt-statement-list': [PASS, FAIL_SLOPPY], 176 'language/statements/let/syntax/with-initialisers-in-statement-positions-defau lt-statement-list': [PASS, FAIL_SLOPPY],
297 'language/statements/let/syntax/without-initialisers-in-statement-positions-ca se-expression-statement-list': [PASS, FAIL_SLOPPY], 177 'language/statements/let/syntax/without-initialisers-in-statement-positions-ca se-expression-statement-list': [PASS, FAIL_SLOPPY],
298 'language/statements/let/syntax/without-initialisers-in-statement-positions-de fault-statement-list': [PASS, FAIL_SLOPPY], 178 'language/statements/let/syntax/without-initialisers-in-statement-positions-de fault-statement-list': [PASS, FAIL_SLOPPY],
299 'language/statements/class/definition/methods-gen-yield-as-expression-without- rhs': [PASS, FAIL_SLOPPY],
300 'language/statements/class/definition/methods-gen-return': [PASS, FAIL_SLOPPY] ,
301 'language/statements/class/definition/methods-gen-no-yield': [PASS, FAIL_SLOPP Y],
302 'language/statements/class/definition/fn-name-static-precedence': [PASS, FAIL_ SLOPPY],
303 'language/statements/class/restricted-properties': [PASS, FAIL_SLOPPY],
304 'language/statements/class/name': [PASS, FAIL_SLOPPY],
305 179
306 # https://code.google.com/p/v8/issues/detail?id=3305 180 # https://code.google.com/p/v8/issues/detail?id=3305
307 # This times out in sloppy mode because sloppy const assignment does not throw . 181 # This times out in sloppy mode because sloppy const assignment does not throw .
308 'language/statements/const/syntax/const-invalid-assignment-next-expression-for ': [PASS, FAIL, TIMEOUT], 182 'language/statements/const/syntax/const-invalid-assignment-next-expression-for ': [PASS, FAIL, TIMEOUT],
309 183
310 # Number/Boolean.prototype is a plain object in ES6 184 # Number/Boolean.prototype is a plain object in ES6
311 # https://code.google.com/p/v8/issues/detail?id=4001 185 # https://code.google.com/p/v8/issues/detail?id=4001
312 'built-ins/Boolean/prototype/S15.6.3.1_A1': [FAIL], 186 'built-ins/Boolean/prototype/S15.6.3.1_A1': [FAIL],
313 'built-ins/Boolean/prototype/S15.6.4_A1': [FAIL], 187 'built-ins/Boolean/prototype/S15.6.4_A1': [FAIL],
314 'built-ins/Boolean/prototype/toString/S15.6.4.2_A1_T1': [FAIL], 188 'built-ins/Boolean/prototype/toString/S15.6.4.2_A1_T1': [FAIL],
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 802
929 # BUG(3251225): Tests that timeout with --nocrankshaft. 803 # BUG(3251225): Tests that timeout with --nocrankshaft.
930 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP], 804 'built-ins/decodeURI/S15.1.3.1_A2.4_T1': [SKIP],
931 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP], 805 'built-ins/decodeURI/S15.1.3.1_A2.5_T1': [SKIP],
932 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP], 806 'built-ins/decodeURIComponent/S15.1.3.2_A2.4_T1': [SKIP],
933 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP], 807 'built-ins/decodeURIComponent/S15.1.3.2_A2.5_T1': [SKIP],
934 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP], 808 'built-ins/encodeURI/S15.1.3.3_A2.3_T1': [SKIP],
935 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP], 809 'built-ins/encodeURIComponent/S15.1.3.4_A2.3_T1': [SKIP],
936 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64' 810 }], # 'arch == arm or arch == mipsel or arch == mips or arch == arm64'
937 ] 811 ]
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698