| 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 == dartk" or | 5 # Sections in this file should contain "$compiler == dartk" or |
| 6 # "$compiler == dartkp". | 6 # "$compiler == dartkp". |
| 7 | 7 |
| 8 [ $compiler == dartk ] | 8 [ $compiler == dartk ] |
| 9 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302
08 | 9 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302
08 |
| 10 | 10 |
| 11 [ $compiler == dartk && $runtime == vm ] | 11 [ $compiler == dartk && $runtime == vm ] |
| 12 assertion_initializer_const_error2_test/none: CompileTimeError | 12 assertion_initializer_const_error2_test/none: CompileTimeError |
| 13 assertion_initializer_const_function_error_test/01: MissingCompileTimeError | 13 assertion_initializer_const_function_error_test/01: MissingCompileTimeError |
| 14 assertion_initializer_test: CompileTimeError | 14 assertion_initializer_test: CompileTimeError |
| 15 cha_deopt1_test: RuntimeError | 15 cha_deopt1_test: RuntimeError |
| 16 cha_deopt2_test: RuntimeError | 16 cha_deopt2_test: RuntimeError |
| 17 cha_deopt3_test: RuntimeError | 17 cha_deopt3_test: RuntimeError |
| 18 generic_methods_bounds_test/01: MissingCompileTimeError |
| 19 generic_methods_bounds_test/02: MissingRuntimeError |
| 20 generic_methods_dynamic_test/01: MissingCompileTimeError |
| 21 generic_methods_dynamic_test/02: MissingRuntimeError |
| 22 generic_methods_dynamic_test/03: MissingCompileTimeError |
| 23 generic_methods_dynamic_test/04: MissingRuntimeError |
| 24 generic_methods_generic_class_tearoff_test: RuntimeError |
| 25 generic_methods_generic_function_result_test/none: RuntimeError |
| 26 generic_methods_named_parameters_test: RuntimeError |
| 27 generic_methods_optional_parameters_test: RuntimeError |
| 28 generic_methods_overriding_test/01: MissingCompileTimeError |
| 29 generic_methods_overriding_test/03: MissingCompileTimeError |
| 30 generic_methods_recursive_bound_test/02: MissingCompileTimeError |
| 31 generic_methods_simple_as_expression_test/02: MissingRuntimeError |
| 32 generic_methods_simple_is_expression_test: RuntimeError |
| 33 generic_methods_tearoff_specialization_test: RuntimeError |
| 34 generic_methods_unused_parameter_test: RuntimeError |
| 35 generic_tearoff_test: CompileTimeError |
| 18 | 36 |
| 19 [ $compiler == dartk && $runtime == vm && !$checked ] | 37 [ $compiler == dartk && $runtime == vm && !$checked ] |
| 20 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError | 38 assertion_initializer_const_error2_test/cc02: MissingCompileTimeError |
| 21 | 39 |
| 22 [ $compiler == dartk && $runtime == vm && $checked ] | 40 [ $compiler == dartk && $runtime == vm && $checked ] |
| 23 assertion_initializer_const_function_test/01: RuntimeError | 41 assertion_initializer_const_function_test/01: RuntimeError |
| 24 regress_30339_test: RuntimeError | 42 regress_30339_test: RuntimeError |
| 25 | 43 |
| 26 [ $compiler == dartkp && $runtime == dart_precompiled ] | 44 [ $compiler == dartkp && $runtime == dart_precompiled ] |
| 27 assertion_initializer_const_error2_test/none: CompileTimeError | 45 assertion_initializer_const_error2_test/none: CompileTimeError |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 async_return_types_test/nestedFuture: Fail | 190 async_return_types_test/nestedFuture: Fail |
| 173 async_return_types_test/wrongTypeParameter: Fail | 191 async_return_types_test/wrongTypeParameter: Fail |
| 174 | 192 |
| 175 # These test entries will be valid for vm (with and without kernel). | 193 # These test entries will be valid for vm (with and without kernel). |
| 176 [ $compiler == none || $compiler == app_jit || $compiler == dartk ] | 194 [ $compiler == none || $compiler == app_jit || $compiler == dartk ] |
| 177 async_star_cancel_while_paused_test: RuntimeError | 195 async_star_cancel_while_paused_test: RuntimeError |
| 178 async_star_pause_test: Fail, OK | 196 async_star_pause_test: Fail, OK |
| 179 | 197 |
| 180 [ $compiler == dartk && $runtime == vm ] | 198 [ $compiler == dartk && $runtime == vm ] |
| 181 async_star_cancel_while_paused_test: RuntimeError | 199 async_star_cancel_while_paused_test: RuntimeError |
| 200 |
| 201 [ $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ] |
| 202 generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 |
| OLD | NEW |