| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 lazy_static4_test: Fail # Issue 3558 | 69 lazy_static4_test: Fail # Issue 3558 |
| 70 | 70 |
| 71 | 71 |
| 72 # DartC specific tests that should not be run by the VM | 72 # DartC specific tests that should not be run by the VM |
| 73 *dartc_test: Skip | 73 *dartc_test: Skip |
| 74 *dartc_negative_test: Skip | 74 *dartc_negative_test: Skip |
| 75 | 75 |
| 76 [ $compiler == none && $mode == debug ] | 76 [ $compiler == none && $mode == debug ] |
| 77 gc_test: Skip # Takes too long. | 77 gc_test: Skip # Takes too long. |
| 78 | 78 |
| 79 [ $compiler == none && $checked ] | |
| 80 type_parameter_test/01: Fail # Issue 4932 | |
| 81 type_parameter_test/02: Fail # Issue 4932 | |
| 82 type_parameter_test/03: Fail # Issue 4932 | |
| 83 type_parameter_test/04: Fail # Issue 4932 | |
| 84 | |
| 85 [ $compiler == dartc ] | 79 [ $compiler == dartc ] |
| 86 | 80 |
| 87 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy | 81 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy |
| 88 application_negative_test: Fail # Runtime only test, rewrite as multitest | 82 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 89 interface_negative_test: Fail # instantiation of abstract class | 83 interface_negative_test: Fail # instantiation of abstract class |
| 90 argument_definition_test/*: Skip # Not implemented. | 84 argument_definition_test/*: Skip # Not implemented. |
| 91 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 85 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| 92 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest | 86 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest |
| 93 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest | 87 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest |
| 94 call_operator_test: Pass # Issue 1355 | 88 call_operator_test: Pass # Issue 1355 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 disable_privacy_test: Fail, Ok | 323 disable_privacy_test: Fail, Ok |
| 330 # This test hard codes name of file being run and precise position. | 324 # This test hard codes name of file being run and precise position. |
| 331 generic_test: Fail, Ok | 325 generic_test: Fail, Ok |
| 332 # Minified mode failures. | 326 # Minified mode failures. |
| 333 # TODO(antonm): proper support in test framework. | 327 # TODO(antonm): proper support in test framework. |
| 334 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 328 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 335 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 329 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 336 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 330 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 337 | 331 |
| 338 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 332 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |