| 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 == dart2app || $co
mpiler == dart2appjit) ] | 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] |
| 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating | 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 cyclic_type_test/02: Fail, OK | 39 cyclic_type_test/02: Fail, OK |
| 40 cyclic_type_test/04: Fail, OK | 40 cyclic_type_test/04: Fail, OK |
| 41 cyclic_type2_test: Fail, OK | 41 cyclic_type2_test: Fail, OK |
| 42 least_upper_bound_expansive_test/*: Fail, OK | 42 least_upper_bound_expansive_test/*: Fail, OK |
| 43 | 43 |
| 44 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 44 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
| 45 async_star_cancel_while_paused_test: RuntimeError | 45 async_star_cancel_while_paused_test: RuntimeError |
| 46 | 46 |
| 47 # Experimental feature: Syntactic support for generic methods. | 47 # Experimental feature: Syntactic support for generic methods. |
| 48 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 48 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| 49 generic_methods_generic_function_parameter_test: CompileTimeError # Issue #27299 |
| 49 | 50 |
| 50 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] | 51 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] |
| 51 # The generic functions tests fail in checked mode because the parsed type param
eters | 52 # The generic functions tests fail in checked mode because the parsed type param
eters |
| 52 # are ignored. | 53 # are ignored. |
| 53 generic_methods_function_type_test: RuntimeError # Issue 25869 | 54 generic_methods_function_type_test: RuntimeError # Issue 25869 |
| 54 generic_methods_test: RuntimeError # Issue 25869 | 55 generic_methods_test: RuntimeError # Issue 25869 |
| 55 generic_methods_new_test: RuntimeError # Issue 25869 | 56 generic_methods_new_test: RuntimeError # Issue 25869 |
| 56 generic_local_functions_test: RuntimeError # Issue 25869 | 57 generic_local_functions_test: RuntimeError # Issue 25869 |
| 57 generic_functions_test: RuntimeError # Issue 25869 | 58 generic_functions_test: RuntimeError # Issue 25869 |
| 58 | 59 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 284 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
| 284 | 285 |
| 285 [$runtime == vm && $compiler == none && $unchecked] | 286 [$runtime == vm && $compiler == none && $unchecked] |
| 286 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 287 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 287 assert_initializer_test/none: pass | 288 assert_initializer_test/none: pass |
| 288 | 289 |
| 289 [$runtime == vm && $compiler == none && $checked] | 290 [$runtime == vm && $compiler == none && $checked] |
| 290 # The VM doesn't enforce that potentially const expressions are actually | 291 # The VM doesn't enforce that potentially const expressions are actually |
| 291 # const expressions when the constructor is called with `const`. | 292 # const expressions when the constructor is called with `const`. |
| 292 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 293 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| OLD | NEW |