| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 [ $strong ] | 8 [ $strong ] |
| 9 *: SkipByDesign # tests/language_strong has the strong mode versions of these te
sts. | 9 *: SkipByDesign # tests/language_strong has the strong mode versions of these te
sts. |
| 10 | 10 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 [$compiler == none && $runtime == dartium && $checked] | 59 [$compiler == none && $runtime == dartium && $checked] |
| 60 assertion_initializer_const_function_test/01: RuntimeError | 60 assertion_initializer_const_function_test/01: RuntimeError |
| 61 assertion_initializer_const_function_test/none: RuntimeError | 61 assertion_initializer_const_function_test/none: RuntimeError |
| 62 assertion_initializer_test: RuntimeError | 62 assertion_initializer_test: RuntimeError |
| 63 | 63 |
| 64 [$compiler == app_jit && $runtime == vm && !$checked] | 64 [$compiler == app_jit && $runtime == vm && !$checked] |
| 65 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError | 65 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError |
| 66 assertion_initializer_const_error_test/01: MissingCompileTimeError | 66 assertion_initializer_const_error_test/01: MissingCompileTimeError |
| 67 assertion_initializer_const_function_error_test/01: MissingCompileTimeError | 67 assertion_initializer_const_function_error_test/01: MissingCompileTimeError |
| 68 | 68 |
| 69 [$compiler == app_jit && $runtime == vm && $checked] |
| 70 assertion_initializer_const_function_test/none: RuntimeError |
| 71 |
| 69 [ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && $co
mpiler != dartk && $compiler != dartkp ] | 72 [ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && $co
mpiler != dartk && $compiler != dartkp ] |
| 70 abstract_beats_arguments2_test/01: Crash # Issue 29171 | 73 abstract_beats_arguments2_test/01: Crash # Issue 29171 |
| 71 | 74 |
| 72 [ $runtime == vm || $runtime == dart_precompiled ] | 75 [ $runtime == vm || $runtime == dart_precompiled ] |
| 73 | 76 |
| 74 # These test entries will be valid for vm/dartium (with and without kernel). | 77 # These test entries will be valid for vm/dartium (with and without kernel). |
| 75 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] | 78 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] |
| 76 async_star_cancel_while_paused_test: RuntimeError | 79 async_star_cancel_while_paused_test: RuntimeError |
| 77 # This is OK for now, but we may want to change the semantics to match the test. | 80 # This is OK for now, but we may want to change the semantics to match the test. |
| 78 async_star_pause_test: Fail, OK | 81 async_star_pause_test: Fail, OK |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 | 650 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 |
| 648 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 | 651 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 |
| 649 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 | 652 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 |
| 650 asyncstar_yield_test: Skip # Flutter Issue 9110 | 653 asyncstar_yield_test: Skip # Flutter Issue 9110 |
| 651 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 654 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| 652 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 655 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 653 await_for_test: Skip # Flutter Issue 9110 | 656 await_for_test: Skip # Flutter Issue 9110 |
| 654 await_for_cancel_test: Skip # Flutter Issue 9110 | 657 await_for_cancel_test: Skip # Flutter Issue 9110 |
| 655 | 658 |
| 656 | 659 |
| OLD | NEW |