| 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 | |
| 59 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru
ntime == dart_app) ] | 56 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru
ntime == dart_app) ] |
| 60 | 57 |
| 61 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 58 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 62 unicode_bom_test: Fail # Issue 16067 | 59 unicode_bom_test: Fail # Issue 16067 |
| 63 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 60 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
| 64 try_catch_optimized1_test: Skip # Srdjan investigating | 61 try_catch_optimized1_test: Skip # Srdjan investigating |
| 65 | 62 |
| 66 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] | 63 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) && $checked ] |
| 67 type_variable_bounds4_test/01: Fail # Issue 14006 | 64 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 68 | 65 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 # TODO(vegorov) StopInstr is unimplemented. | 223 # TODO(vegorov) StopInstr is unimplemented. |
| 227 vm/debug_break_enabled_vm_test/none: Skip | 224 vm/debug_break_enabled_vm_test/none: Skip |
| 228 | 225 |
| 229 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256 | 226 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256 |
| 230 # fields in an object. | 227 # fields in an object. |
| 231 large_class_declaration_test: Skip | 228 large_class_declaration_test: Skip |
| 232 | 229 |
| 233 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | 230 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] |
| 234 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 | 231 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 |
| 235 issue23244_test: Skip # Issue #26373 | 232 issue23244_test: Skip # Issue #26373 |
| OLD | NEW |