| 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 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 8 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
| 9 # Other issues: | 9 # Other issues: |
| 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 cyclic_type_test/04: Fail, OK | 44 cyclic_type_test/04: Fail, OK |
| 45 cyclic_type2_test: Fail, OK | 45 cyclic_type2_test: Fail, OK |
| 46 least_upper_bound_expansive_test/*: Fail, OK | 46 least_upper_bound_expansive_test/*: Fail, OK |
| 47 | 47 |
| 48 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 48 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
| 49 async_star_cancel_while_paused_test: RuntimeError | 49 async_star_cancel_while_paused_test: RuntimeError |
| 50 | 50 |
| 51 # Fails because `as T` is an error rather than being treated like `as dynamic`. | 51 # Fails because `as T` is an error rather than being treated like `as dynamic`. |
| 52 generic_methods_type_expression_test: RuntimeError # Issue 27460 | 52 generic_methods_type_expression_test: RuntimeError # Issue 27460 |
| 53 | 53 |
| 54 # Doesn't yet implement `covariant` keyword. |
| 55 covariant_test/none: CompileTimeError # Issue 28166 |
| 56 covariant_override_test: CompileTimeError # Issue 28166 |
| 57 |
| 54 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | 58 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] |
| 55 # These generic functions tests pass for the wrong reason in checked mode, | 59 # These generic functions tests pass for the wrong reason in checked mode, |
| 56 # because the parsed type parameters are mapped to dynamic type. | 60 # because the parsed type parameters are mapped to dynamic type. |
| 57 generic_methods_function_type_test: Pass # Issue 25869 | 61 generic_methods_function_type_test: Pass # Issue 25869 |
| 58 generic_methods_test: Pass # Issue 25869 | 62 generic_methods_test: Pass # Issue 25869 |
| 59 generic_methods_new_test: Pass # Issue 25869 | 63 generic_methods_new_test: Pass # Issue 25869 |
| 60 generic_local_functions_test: Pass # Issue 25869 | 64 generic_local_functions_test: Pass # Issue 25869 |
| 61 generic_functions_test: Pass # Issue 25869 | 65 generic_functions_test: Pass # Issue 25869 |
| 62 generic_methods_generic_function_parameter_test: Pass # Issue 25869 | 66 generic_methods_generic_function_parameter_test: Pass # Issue 25869 |
| 63 | 67 |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 | 327 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 |
| 324 | 328 |
| 325 [$compiler == dart2analyzer] | 329 [$compiler == dart2analyzer] |
| 326 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 330 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 327 config_import_corelib_test: StaticWarning, OK | 331 config_import_corelib_test: StaticWarning, OK |
| 328 | 332 |
| 329 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 | 333 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 |
| 330 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 | 334 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 |
| 331 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 | 335 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 |
| 332 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 | 336 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 |
| OLD | NEW |