| OLD | NEW |
| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 async_star_cancel_while_paused_test: Crash | 398 async_star_cancel_while_paused_test: Crash |
| 399 async_star_no_cancel2_test: Crash | 399 async_star_no_cancel2_test: Crash |
| 400 async_star_no_cancel_test: Crash | 400 async_star_no_cancel_test: Crash |
| 401 async_star_pause_test: Crash | 401 async_star_pause_test: Crash |
| 402 async_star_regression_2238_test: Crash | 402 async_star_regression_2238_test: Crash |
| 403 async_star_regression_23116_test: Crash | 403 async_star_regression_23116_test: Crash |
| 404 async_star_regression_fisk_test: Crash | 404 async_star_regression_fisk_test: Crash |
| 405 async_star_stream_take_test: Crash | 405 async_star_stream_take_test: Crash |
| 406 async_star_take_reyield_test: Crash | 406 async_star_take_reyield_test: Crash |
| 407 | 407 |
| 408 [ $compiler == dart2js && $runtime != none && $checked ] |
| 409 assert_with_message_test: RuntimeError |
| 410 |
| 408 [ $checked && ($compiler == dartk || $compiler == dartkp) ] | 411 [ $checked && ($compiler == dartk || $compiler == dartkp) ] |
| 409 async_return_types_test/nestedFuture: Fail | 412 async_return_types_test/nestedFuture: Fail |
| 410 async_return_types_test/wrongTypeParameter: Fail | 413 async_return_types_test/wrongTypeParameter: Fail |
| 411 | 414 |
| 412 # These test entries will be valid for vm (with and without kernel). | 415 # These test entries will be valid for vm (with and without kernel). |
| 413 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] | 416 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] |
| 414 async_star_cancel_while_paused_test: RuntimeError | 417 async_star_cancel_while_paused_test: RuntimeError |
| 415 # This is OK for now, but we may want to change the semantics to match the test. | 418 # This is OK for now, but we may want to change the semantics to match the test. |
| 416 async_star_pause_test: Fail, OK | 419 async_star_pause_test: Fail, OK |
| 417 | 420 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 async_await_syntax_test/d10a: Crash | 515 async_await_syntax_test/d10a: Crash |
| 513 async_return_types_test/tooManyTypeParameters: CompileTimeError | 516 async_return_types_test/tooManyTypeParameters: CompileTimeError |
| 514 | 517 |
| 515 # Look like bugs. | 518 # Look like bugs. |
| 516 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 | 519 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 |
| 517 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 | 520 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 |
| 518 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 | 521 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 |
| 519 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 | 522 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 |
| 520 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 523 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 521 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 524 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| OLD | NEW |