| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 async_return_types_test/nestedFuture: Fail | 419 async_return_types_test/nestedFuture: Fail |
| 420 async_return_types_test/wrongTypeParameter: Fail | 420 async_return_types_test/wrongTypeParameter: Fail |
| 421 | 421 |
| 422 # These test entries will be valid for vm (with and without kernel). | 422 # These test entries will be valid for vm (with and without kernel). |
| 423 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] | 423 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] |
| 424 async_star_cancel_while_paused_test: RuntimeError | 424 async_star_cancel_while_paused_test: RuntimeError |
| 425 # This is OK for now, but we may want to change the semantics to match the test. | 425 # This is OK for now, but we may want to change the semantics to match the test. |
| 426 async_star_pause_test: Fail, OK | 426 async_star_pause_test: Fail, OK |
| 427 | 427 |
| 428 [ $compiler == dartk && $runtime == vm ] | 428 [ $compiler == dartk && $runtime == vm ] |
| 429 async_star_cancel_and_throw_in_finally_test: RuntimeError | |
| 430 async_star_cancel_while_paused_test: RuntimeError | 429 async_star_cancel_while_paused_test: RuntimeError |
| 431 async_star_regression_fisk_test: Timeout | |
| 432 async_star_stream_take_test: Timeout | |
| 433 async_star_take_reyield_test: Timeout | |
| 434 | 430 |
| 435 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 431 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| 436 async_star_regression_2238_test: CompileTimeError, RuntimeError | 432 async_star_regression_2238_test: CompileTimeError, RuntimeError |
| 437 | 433 |
| 438 # flutter uses --error_on_bad_type, --error_on_bad_override | 434 # flutter uses --error_on_bad_type, --error_on_bad_override |
| 439 # and --await_is_keyword so # the following tests fail with | 435 # and --await_is_keyword so # the following tests fail with |
| 440 # a Compilation Error | 436 # a Compilation Error |
| 441 [ $runtime == flutter ] | 437 [ $runtime == flutter ] |
| 442 async_await_test: CompileTimeError | 438 async_await_test: CompileTimeError |
| 443 async_await_syntax_test/a05c: CompileTimeError | 439 async_await_syntax_test/a05c: CompileTimeError |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 async_await_syntax_test/d10a: Crash | 518 async_await_syntax_test/d10a: Crash |
| 523 async_return_types_test/tooManyTypeParameters: CompileTimeError | 519 async_return_types_test/tooManyTypeParameters: CompileTimeError |
| 524 | 520 |
| 525 # Look like bugs. | 521 # Look like bugs. |
| 526 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 | 522 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 |
| 527 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 | 523 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 |
| 528 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 | 524 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 |
| 529 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 | 525 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 |
| 530 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 526 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 531 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 527 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| OLD | NEW |