| 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 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 main_test/05: Fail # Issue 20028 | 98 main_test/05: Fail # Issue 20028 |
| 99 main_test/21: Fail # Issue 20028 | 99 main_test/21: Fail # Issue 20028 |
| 100 main_test/42: Fail # Issue 20028 | 100 main_test/42: Fail # Issue 20028 |
| 101 mirror_in_static_init_test: Fail # Issue 22071 | 101 mirror_in_static_init_test: Fail # Issue 22071 |
| 102 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. | 102 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. |
| 103 | 103 |
| 104 # These tests need the flag --initializing-formal-access to pass: | 104 # These tests need the flag --initializing-formal-access to pass: |
| 105 initializing_formal_access_test: Skip | 105 initializing_formal_access_test: Skip |
| 106 initializing_formal_capture_test: Skip | 106 initializing_formal_capture_test: Skip |
| 107 initializing_formal_final_test: Skip | 107 initializing_formal_final_test: Skip |
| 108 initializing_formal_promotion_test: Skip |
| 108 initializing_formal_type_test: Skip | 109 initializing_formal_type_test: Skip |
| 109 parameter_initializer5_test: Skip | 110 parameter_initializer5_test: Skip |
| 110 | 111 |
| 111 # Experimental feature: Syntactic support for generic methods. | 112 # Experimental feature: Syntactic support for generic methods. |
| 112 # Skip these in dartium, because the test framework can't pass VM flags to | 113 # Skip these in dartium, because the test framework can't pass VM flags to |
| 113 generic_methods_test: Skip # Issue 25869 | 114 generic_methods_test: Skip # Issue 25869 |
| 114 generic_functions_test: Skip # Issue 25869 | 115 generic_functions_test: Skip # Issue 25869 |
| 115 generic_local_functions_test: Skip # Issue 25869 | 116 generic_local_functions_test: Skip # Issue 25869 |
| 116 generic_sends_test: Skip # Issue 25869 | 117 generic_sends_test: Skip # Issue 25869 |
| 117 generic_methods_new_test: Skip # Issue 25869 | 118 generic_methods_new_test: Skip # Issue 25869 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 308 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 308 assert_initializer_test/none: pass | 309 assert_initializer_test/none: pass |
| 309 | 310 |
| 310 [$runtime == vm && $compiler == none && $checked] | 311 [$runtime == vm && $compiler == none && $checked] |
| 311 # The VM doesn't enforce that potentially const expressions are actually | 312 # The VM doesn't enforce that potentially const expressions are actually |
| 312 # const expressions when the constructor is called with `const`. | 313 # const expressions when the constructor is called with `const`. |
| 313 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 314 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 314 | 315 |
| 315 [$runtime == vm && $compiler == none] | 316 [$runtime == vm && $compiler == none] |
| 316 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 317 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |