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

Side by Side Diff: tests/language_2/language_2.status

Issue 2987083002: More status fixes (Closed)
Patch Set: Created 3 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 | « tests/html/html.status ('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 (c) 2017, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. 5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet.
6 # Analyzer does, but only when "--strong" is used. 6 # Analyzer does, but only when "--strong" is used.
7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co mpiler == dart2analyzer && ! $strong && ! $checked) ] 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co mpiler == dart2analyzer && ! $strong && ! $checked) ]
8 abstract_beats_arguments_test: MissingCompileTimeError 8 abstract_beats_arguments_test: MissingCompileTimeError
9 abstract_exact_selector_test/01: MissingCompileTimeError 9 abstract_exact_selector_test/01: MissingCompileTimeError
10 abstract_factory_constructor_test/00: MissingCompileTimeError 10 abstract_factory_constructor_test/00: MissingCompileTimeError
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 async_await_syntax_test/a06a: RuntimeError # Issue 27394 171 async_await_syntax_test/a06a: RuntimeError # Issue 27394
172 async_await_syntax_test/a07b: Crash # Issue 27394 172 async_await_syntax_test/a07b: Crash # Issue 27394
173 async_await_syntax_test/a08b: Crash # Issue 27394 173 async_await_syntax_test/a08b: Crash # Issue 27394
174 async_await_syntax_test/b06a: RuntimeError # Issue 27394 174 async_await_syntax_test/b06a: RuntimeError # Issue 27394
175 async_await_syntax_test/c06a: RuntimeError # Issue 27394 175 async_await_syntax_test/c06a: RuntimeError # Issue 27394
176 async_await_syntax_test/d06a: RuntimeError # Issue 27394 176 async_await_syntax_test/d06a: RuntimeError # Issue 27394
177 177
178 [ $compiler == dart2js && $runtime == d8 && $checked && $dart2js_with_kernel_in_ ssa && ! $dart2js_with_kernel ] 178 [ $compiler == dart2js && $runtime == d8 && $checked && $dart2js_with_kernel_in_ ssa && ! $dart2js_with_kernel ]
179 assertion_initializer_const_function_test/none: RuntimeError 179 assertion_initializer_const_function_test/none: RuntimeError
180 180
181 [ $compiler == dart2js && $runtime == d8 && $checked ]
182 assertion_test: RuntimeError
183
184 [ $compiler == dart2js && $runtime == jsshell && $checked ]
185 assertion_test: RuntimeError
186
181 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $host_checke d ] 187 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $host_checke d ]
182 assertion_initializer_const_function_test/01: Crash 188 assertion_initializer_const_function_test/01: Crash
183 assign_instance_method_negative_test: Crash 189 assign_instance_method_negative_test: Crash
184 async_await_syntax_test/d04a: Crash 190 async_await_syntax_test/d04a: Crash
185 async_await_syntax_test/d07a: Crash 191 async_await_syntax_test/d07a: Crash
186 async_await_syntax_test/d08a: Crash 192 async_await_syntax_test/d08a: Crash
187 async_await_syntax_test/d08b: Crash 193 async_await_syntax_test/d08b: Crash
188 async_await_syntax_test/d08c: Crash 194 async_await_syntax_test/d08c: Crash
189 195
190 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $minified ] 196 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $minified ]
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 # The VM doesn't enforce that potentially const expressions are actually 362 # The VM doesn't enforce that potentially const expressions are actually
357 # const expressions when the constructor is called with `const`. 363 # const expressions when the constructor is called with `const`.
358 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. 364 assert_initializer_test/4*: MissingCompileTimeError # Issue 392.
359 365
360 [ $compiler == dart2js && ! $dart2js_with_kernel && $runtime != none ] 366 [ $compiler == dart2js && ! $dart2js_with_kernel && $runtime != none ]
361 async_star_cancel_while_paused_test: RuntimeError # Issue 22853 367 async_star_cancel_while_paused_test: RuntimeError # Issue 22853
362 368
363 [ $compiler == dart2js && $runtime == jsshell && ! $dart2js_with_kernel ] 369 [ $compiler == dart2js && $runtime == jsshell && ! $dart2js_with_kernel ]
364 async_star_no_cancel_test: RuntimeError # Need triage 370 async_star_no_cancel_test: RuntimeError # Need triage
365 async_star_no_cancel2_test: RuntimeError # Need triage 371 async_star_no_cancel2_test: RuntimeError # Need triage
372 async_star_await_pauses_test: RuntimeError # Need triage
366 373
367 [ $compiler == dart2js && $checked && ! $dart2js_with_kernel ] 374 [ $compiler == dart2js && $checked && ! $dart2js_with_kernel ]
368 async_return_types_test/nestedFuture: Fail # Issue 26429 375 async_return_types_test/nestedFuture: Fail # Issue 26429
369 async_return_types_test/wrongTypeParameter: Fail # Issue 26429 376 async_return_types_test/wrongTypeParameter: Fail # Issue 26429
370 377
371 [ $compiler == dart2js && $dart2js_with_kernel_in_ssa ] 378 [ $compiler == dart2js && $dart2js_with_kernel_in_ssa ]
372 async_star_pause_test: RuntimeError # Issue 27394 379 async_star_pause_test: RuntimeError # Issue 27394
373 async_star_regression_fisk_test: RuntimeError # Issue 27394 380 async_star_regression_fisk_test: RuntimeError # Issue 27394
374 async_star_stream_take_test: RuntimeError # Issue 27394 381 async_star_stream_take_test: RuntimeError # Issue 27394
375 async_star_take_reyield_test: RuntimeError # Issue 27394 382 async_star_take_reyield_test: RuntimeError # Issue 27394
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 async_await_syntax_test/d10a: Crash 522 async_await_syntax_test/d10a: Crash
516 async_return_types_test/tooManyTypeParameters: CompileTimeError 523 async_return_types_test/tooManyTypeParameters: CompileTimeError
517 524
518 # Look like bugs. 525 # Look like bugs.
519 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 526 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110
520 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 527 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110
521 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 528 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110
522 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 529 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110
523 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 530 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110
524 async_star_no_cancel_test: Skip # Flutter Issue 9110 531 async_star_no_cancel_test: Skip # Flutter Issue 9110
OLDNEW
« no previous file with comments | « tests/html/html.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698