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