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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 # Experimental feature: Syntactic support for generic methods. | 47 # Experimental feature: Syntactic support for generic methods. |
48 generic_methods_test: CompiletimeError # Issue 25869 | 48 generic_methods_test: CompiletimeError # Issue 25869 |
49 generic_functions_test: CompiletimeError # Issue 25869 | 49 generic_functions_test: CompiletimeError # Issue 25869 |
50 generic_local_functions_test: CompiletimeError # Issue 25869 | 50 generic_local_functions_test: CompiletimeError # Issue 25869 |
51 generic_sends_test: CompiletimeError # Issue 25869 | 51 generic_sends_test: CompiletimeError # Issue 25869 |
52 generic_methods_new_test: CompiletimeError # Issue 25869 | 52 generic_methods_new_test: CompiletimeError # Issue 25869 |
53 generic_methods_function_type_test: CompiletimeError # Issue 25869 | 53 generic_methods_function_type_test: CompiletimeError # Issue 25869 |
54 generic_methods_type_expression_test: CompiletimeError # Issue 25869 | 54 generic_methods_type_expression_test: CompiletimeError # Issue 25869 |
55 | 55 |
| 56 # Experimental feature: Use initializing formals in initializers and constructor
body. |
| 57 initializing_formal_access_test: CompiletimeError # TODO(eernst): Create a suita
ble sdk issue. |
| 58 |
56 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru
ntime == dart_app) ] | 59 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru
ntime == dart_app) ] |
57 | 60 |
58 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 61 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
59 unicode_bom_test: Fail # Issue 16067 | 62 unicode_bom_test: Fail # Issue 16067 |
60 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 63 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
61 try_catch_optimized1_test: Skip # Srdjan investigating | 64 try_catch_optimized1_test: Skip # Srdjan investigating |
62 | 65 |
63 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] | 66 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] |
64 type_variable_bounds4_test/01: Fail # Issue 14006 | 67 type_variable_bounds4_test/01: Fail # Issue 14006 |
65 | 68 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 # TODO(vegorov) StopInstr is unimplemented. | 226 # TODO(vegorov) StopInstr is unimplemented. |
224 vm/debug_break_enabled_vm_test/none: Skip | 227 vm/debug_break_enabled_vm_test/none: Skip |
225 | 228 |
226 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256 | 229 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256 |
227 # fields in an object. | 230 # fields in an object. |
228 large_class_declaration_test: Skip | 231 large_class_declaration_test: Skip |
229 | 232 |
230 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | 233 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] |
231 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 | 234 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 |
232 issue23244_test: Skip # Issue #26373 | 235 issue23244_test: Skip # Issue #26373 |
OLD | NEW |