| 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 # Sections in this file should contain "$compiler == precompiler" or | 5 # Sections in this file should contain "$compiler == precompiler" or |
| 6 # "$runtime == dart_precompiled". | 6 # "$runtime == dart_precompiled". |
| 7 | 7 |
| 8 [ $runtime == dart_precompiled ] | 8 [ $runtime == dart_precompiled ] |
| 9 abstract_beats_arguments_test: MissingCompileTimeError | 9 abstract_beats_arguments_test: MissingCompileTimeError |
| 10 abstract_exact_selector_test/01: MissingCompileTimeError | 10 abstract_exact_selector_test/01: MissingCompileTimeError |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 class_literal_test/18: MissingCompileTimeError | 90 class_literal_test/18: MissingCompileTimeError |
| 91 class_literal_test/19: MissingCompileTimeError | 91 class_literal_test/19: MissingCompileTimeError |
| 92 class_literal_test/20: MissingCompileTimeError | 92 class_literal_test/20: MissingCompileTimeError |
| 93 class_literal_test/21: MissingCompileTimeError | 93 class_literal_test/21: MissingCompileTimeError |
| 94 class_literal_test/22: MissingCompileTimeError | 94 class_literal_test/22: MissingCompileTimeError |
| 95 class_literal_test/23: MissingCompileTimeError | 95 class_literal_test/23: MissingCompileTimeError |
| 96 class_literal_test/24: MissingCompileTimeError | 96 class_literal_test/24: MissingCompileTimeError |
| 97 checked_setter_test: MissingCompileTimeError | 97 checked_setter_test: MissingCompileTimeError |
| 98 class_literal_test/25: MissingCompileTimeError | 98 class_literal_test/25: MissingCompileTimeError |
| 99 covariant_subtyping_with_substitution_test: RuntimeError | 99 covariant_subtyping_with_substitution_test: RuntimeError |
| 100 generic_closure_test: RuntimeError |
| 101 generic_field_mixin6_test/01: MissingCompileTimeError |
| 102 generic_function_bounds_test: RuntimeError |
| 103 generic_function_dcall_test: RuntimeError |
| 104 generic_function_typedef2_test/04: MissingCompileTimeError |
| 100 generic_instanceof_test: RuntimeError | 105 generic_instanceof_test: RuntimeError |
| 101 generic_list_checked_test: RuntimeError | 106 generic_list_checked_test: RuntimeError |
| 102 generic_methods_bounds_test/01: MissingCompileTimeError | 107 generic_methods_bounds_test/01: MissingCompileTimeError |
| 103 generic_methods_bounds_test/02: MissingRuntimeError | 108 generic_methods_bounds_test/02: MissingRuntimeError |
| 104 generic_methods_dynamic_test/01: MissingCompileTimeError | 109 generic_methods_dynamic_test/01: MissingCompileTimeError |
| 105 generic_methods_dynamic_test/02: MissingRuntimeError | 110 generic_methods_dynamic_test/02: MissingRuntimeError |
| 106 generic_methods_dynamic_test/03: MissingCompileTimeError | 111 generic_methods_dynamic_test/03: MissingCompileTimeError |
| 107 generic_methods_dynamic_test/04: MissingRuntimeError | 112 generic_methods_dynamic_test/04: MissingRuntimeError |
| 108 generic_methods_generic_class_tearoff_test: RuntimeError | 113 generic_methods_generic_class_tearoff_test: RuntimeError |
| 109 generic_methods_named_parameters_test: RuntimeError | 114 generic_methods_named_parameters_test: RuntimeError |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 186 |
| 182 # These test entries will be valid for vm (with and without kernel). | 187 # These test entries will be valid for vm (with and without kernel). |
| 183 [ $runtime == dart_precompiled ] | 188 [ $runtime == dart_precompiled ] |
| 184 async_star_cancel_while_paused_test: RuntimeError | 189 async_star_cancel_while_paused_test: RuntimeError |
| 185 async_star_pause_test: Fail, OK | 190 async_star_pause_test: Fail, OK |
| 186 | 191 |
| 187 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r
untime == vm || $runtime == dart_precompiled || $runtime == flutter) ] | 192 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r
untime == vm || $runtime == dart_precompiled || $runtime == flutter) ] |
| 188 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 193 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 189 | 194 |
| 190 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | 195 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] |
| 196 generic_functions_test: Pass # Issue 25869 |
| 191 generic_methods_function_type_test: Pass # Issue 25869 | 197 generic_methods_function_type_test: Pass # Issue 25869 |
| 198 generic_methods_generic_function_parameter_test: Pass # Issue 25869 |
| 192 generic_methods_test: Pass # Issue 25869 | 199 generic_methods_test: Pass # Issue 25869 |
| 193 generic_methods_new_test: Pass # Issue 25869 | 200 generic_methods_new_test: Pass # Issue 25869 |
| 194 generic_local_functions_test: Pass # Issue 25869 | 201 generic_local_functions_test: Pass # Issue 25869 |
| 195 generic_methods_generic_function_parameter_test: Pass # Issue 25869 | 202 |
| 203 [ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && ($c
ompiler == none || $compiler == app_jit || $compiler == precompiler) ] |
| 204 generalized_void_syntax_test: CompileTimeError # Issue #30176. |
| OLD | NEW |