| 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 # In order to maintain maximum test coverage for all builds, | 8 # In order to maintain maximum test coverage for all builds, |
| 9 # please use the following procedure to mark a test | 9 # please use the following procedure to mark a test |
| 10 # failed on architectures other than the one you are working on. | 10 # failed on architectures other than the one you are working on. |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 lazy_static4_test: Fail # Issue 3558 | 68 lazy_static4_test: Fail # Issue 3558 |
| 69 | 69 |
| 70 | 70 |
| 71 # DartC specific tests that should not be run by the VM | 71 # DartC specific tests that should not be run by the VM |
| 72 *dartc_test: Skip | 72 *dartc_test: Skip |
| 73 *dartc_negative_test: Skip | 73 *dartc_negative_test: Skip |
| 74 | 74 |
| 75 [ $compiler == none && $mode == debug ] | 75 [ $compiler == none && $mode == debug ] |
| 76 gc_test: Skip # Takes too long. | 76 gc_test: Skip # Takes too long. |
| 77 | 77 |
| 78 [ $compiler == none && $checked ] |
| 79 type_parameter_test/01: Fail # Issue 4932 |
| 80 type_parameter_test/02: Fail # Issue 4932 |
| 81 type_parameter_test/03: Fail # Issue 4932 |
| 82 type_parameter_test/04: Fail # Issue 4932 |
| 83 |
| 78 [ $compiler == none && $unchecked ] | 84 [ $compiler == none && $unchecked ] |
| 79 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 85 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 80 | 86 |
| 81 [ $compiler == dartc ] | 87 [ $compiler == dartc ] |
| 82 | 88 |
| 83 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy | 89 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy |
| 84 application_negative_test: Fail # Runtime only test, rewrite as multitest | 90 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 85 interface_negative_test: Fail # instantiation of abstract class | 91 interface_negative_test: Fail # instantiation of abstract class |
| 86 argument_definition_test/*: Skip # Not implemented. | 92 argument_definition_test/*: Skip # Not implemented. |
| 87 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 93 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 disable_privacy_test: Fail, Ok | 331 disable_privacy_test: Fail, Ok |
| 326 # This test hard codes name of file being run and precise position. | 332 # This test hard codes name of file being run and precise position. |
| 327 generic_test: Fail, Ok | 333 generic_test: Fail, Ok |
| 328 # Minified mode failures. | 334 # Minified mode failures. |
| 329 # TODO(antonm): proper support in test framework. | 335 # TODO(antonm): proper support in test framework. |
| 330 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 336 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 331 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 337 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 332 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 338 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 333 | 339 |
| 334 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 340 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |