| 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 == dart2app || $compiler == dart2appjit) ] | 8 [ ($compiler == dart2app || $compiler == dart2appjit) ] |
| 9 string_literals_test: Skip # Issue 27433 | 9 string_literals_test: Skip # Issue 27433 |
| 10 | 10 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 main_test/21: Fail # Issue 20028 | 100 main_test/21: Fail # Issue 20028 |
| 101 main_test/42: Fail # Issue 20028 | 101 main_test/42: Fail # Issue 20028 |
| 102 mirror_in_static_init_test: Fail # Issue 22071 | 102 mirror_in_static_init_test: Fail # Issue 22071 |
| 103 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. | 103 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. |
| 104 | 104 |
| 105 # These tests need the flag --initializing-formal-access to pass: | 105 # These tests need the flag --initializing-formal-access to pass: |
| 106 initializing_formal_access_test: Skip | 106 initializing_formal_access_test: Skip |
| 107 initializing_formal_capture_test: Skip | 107 initializing_formal_capture_test: Skip |
| 108 initializing_formal_final_test: Skip | 108 initializing_formal_final_test: Skip |
| 109 initializing_formal_type_test: Skip | 109 initializing_formal_type_test: Skip |
| 110 initializing_formal_promotion_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 |
| 118 generic_methods_function_type_test: Skip # Issue 25869 | 119 generic_methods_function_type_test: Skip # Issue 25869 |
| 119 generic_methods_type_expression_test: Skip # Issue 25869 | 120 generic_methods_type_expression_test: Skip # Issue 25869 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 292 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
| 292 | 293 |
| 293 [$runtime == vm && $compiler == none && $unchecked] | 294 [$runtime == vm && $compiler == none && $unchecked] |
| 294 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 295 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 295 assert_initializer_test/none: pass | 296 assert_initializer_test/none: pass |
| 296 | 297 |
| 297 [$runtime == vm && $compiler == none && $checked] | 298 [$runtime == vm && $compiler == none && $checked] |
| 298 # The VM doesn't enforce that potentially const expressions are actually | 299 # The VM doesn't enforce that potentially const expressions are actually |
| 299 # const expressions when the constructor is called with `const`. | 300 # const expressions when the constructor is called with `const`. |
| 300 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 301 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| OLD | NEW |