| 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 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 # Non-contractive types are not supported in the vm. | 38 # Non-contractive types are not supported in the vm. |
| 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. | |
| 48 generic_methods_type_expression_test: RuntimeError # Issue 25869 | |
| 49 | |
| 50 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] | 47 [ ($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 | 48 # The generic functions tests fail in checked mode because the parsed type param
eters |
| 52 # are ignored. | 49 # are ignored. |
| 53 generic_methods_function_type_test: RuntimeError # Issue 25869 | 50 generic_methods_function_type_test: RuntimeError # Issue 25869 |
| 54 generic_methods_test: RuntimeError # Issue 25869 | 51 generic_methods_test: RuntimeError # Issue 25869 |
| 55 generic_methods_new_test: RuntimeError # Issue 25869 | 52 generic_methods_new_test: RuntimeError # Issue 25869 |
| 56 generic_local_functions_test: RuntimeError # Issue 25869 | 53 generic_local_functions_test: RuntimeError # Issue 25869 |
| 57 generic_functions_test: RuntimeError # Issue 25869 | 54 generic_functions_test: RuntimeError # Issue 25869 |
| 58 generic_methods_generic_function_parameter_test: RuntimeError # Issue 25869 | 55 generic_methods_generic_function_parameter_test: RuntimeError # Issue 25869 |
| 59 | 56 |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 284 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
| 288 | 285 |
| 289 [$runtime == vm && $compiler == none && $unchecked] | 286 [$runtime == vm && $compiler == none && $unchecked] |
| 290 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. |
| 291 assert_initializer_test/none: pass | 288 assert_initializer_test/none: pass |
| 292 | 289 |
| 293 [$runtime == vm && $compiler == none && $checked] | 290 [$runtime == vm && $compiler == none && $checked] |
| 294 # The VM doesn't enforce that potentially const expressions are actually | 291 # The VM doesn't enforce that potentially const expressions are actually |
| 295 # const expressions when the constructor is called with `const`. | 292 # const expressions when the constructor is called with `const`. |
| 296 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 293 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| OLD | NEW |