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 | |
50 | 49 |
51 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] | 50 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] |
52 # The generic functions tests fail in checked mode because the parsed type param
eters | 51 # The generic functions tests fail in checked mode because the parsed type param
eters |
53 # are ignored. | 52 # are ignored. |
54 generic_methods_function_type_test: RuntimeError # Issue 25869 | 53 generic_methods_function_type_test: RuntimeError # Issue 25869 |
55 generic_methods_test: RuntimeError # Issue 25869 | 54 generic_methods_test: RuntimeError # Issue 25869 |
56 generic_methods_new_test: RuntimeError # Issue 25869 | 55 generic_methods_new_test: RuntimeError # Issue 25869 |
57 generic_local_functions_test: RuntimeError # Issue 25869 | 56 generic_local_functions_test: RuntimeError # Issue 25869 |
58 generic_functions_test: RuntimeError # Issue 25869 | 57 generic_functions_test: RuntimeError # Issue 25869 |
| 58 generic_methods_generic_function_parameter_test: RuntimeError # Issue 25869 |
59 | 59 |
60 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru
ntime == dart_app) ] | 60 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru
ntime == dart_app) ] |
61 | 61 |
62 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 62 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
63 unicode_bom_test: Fail # Issue 16067 | 63 unicode_bom_test: Fail # Issue 16067 |
64 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 64 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
65 try_catch_optimized1_test: Skip # Srdjan investigating | 65 try_catch_optimized1_test: Skip # Srdjan investigating |
66 | 66 |
67 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] | 67 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] |
68 type_variable_bounds4_test/01: Fail # Issue 14006 | 68 type_variable_bounds4_test/01: Fail # Issue 14006 |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 286 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
287 | 287 |
288 [$runtime == vm && $compiler == none && $unchecked] | 288 [$runtime == vm && $compiler == none && $unchecked] |
289 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 289 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
290 assert_initializer_test/none: pass | 290 assert_initializer_test/none: pass |
291 | 291 |
292 [$runtime == vm && $compiler == none && $checked] | 292 [$runtime == vm && $compiler == none && $checked] |
293 # The VM doesn't enforce that potentially const expressions are actually | 293 # The VM doesn't enforce that potentially const expressions are actually |
294 # const expressions when the constructor is called with `const`. | 294 # const expressions when the constructor is called with `const`. |
295 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 295 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
OLD | NEW |