| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 type_parameter_test/01: Fail # Issue 4932 | 79 type_parameter_test/01: Fail # Issue 4932 |
| 80 type_parameter_test/02: Fail # Issue 4932 | 80 type_parameter_test/02: Fail # Issue 4932 |
| 81 type_parameter_test/03: Fail # Issue 4932 | 81 type_parameter_test/03: Fail # Issue 4932 |
| 82 type_parameter_test/04: Fail # Issue 4932 | 82 type_parameter_test/04: Fail # Issue 4932 |
| 83 | 83 |
| 84 [ $compiler == none && $unchecked ] | 84 [ $compiler == none && $unchecked ] |
| 85 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 85 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 86 | 86 |
| 87 [ $compiler == dartc ] | 87 [ $compiler == dartc ] |
| 88 | 88 |
| 89 bad_constructor_test/04: Fail # Constructor name clashes with other member |
| 90 bad_constructor_test/05: Fail # Constructor name clashes with other member |
| 91 bad_constructor_test/06: Fail # Constructor name clashes with other member |
| 89 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy | 92 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy |
| 90 application_negative_test: Fail # Runtime only test, rewrite as multitest | 93 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 91 interface_negative_test: Fail # instantiation of abstract class | 94 interface_negative_test: Fail # instantiation of abstract class |
| 92 argument_definition_test/*: Skip # Not implemented. | 95 argument_definition_test/*: Skip # Not implemented. |
| 93 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 96 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| 94 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest | 97 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest |
| 95 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest | 98 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest |
| 96 call_operator_test: Pass # Issue 1355 | 99 call_operator_test: Pass # Issue 1355 |
| 97 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason | 100 cascade_test: Pass,Fail # Issue 3729 Some cases pass, but for the wrong reason |
| 98 char_escape_test: Pass # Issue 1654 | 101 char_escape_test: Pass # Issue 1654 |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 disable_privacy_test: Fail, Ok | 334 disable_privacy_test: Fail, Ok |
| 332 # This test hard codes name of file being run and precise position. | 335 # This test hard codes name of file being run and precise position. |
| 333 generic_test: Fail, Ok | 336 generic_test: Fail, Ok |
| 334 # Minified mode failures. | 337 # Minified mode failures. |
| 335 # TODO(antonm): proper support in test framework. | 338 # TODO(antonm): proper support in test framework. |
| 336 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 339 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 337 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 340 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 338 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 341 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 339 | 342 |
| 340 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 343 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |