| 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 13 matching lines...) Expand all Loading... |
| 24 gc_test: Fail # Issue 1487 | 24 gc_test: Fail # Issue 1487 |
| 25 field_override_test/none: Fail # Issue 742: field shadowing now allowed | 25 field_override_test/none: Fail # Issue 742: field shadowing now allowed |
| 26 field_override_test/01: Fail # Issue 742: field shadowing now allowed | 26 field_override_test/01: Fail # Issue 742: field shadowing now allowed |
| 27 field_override_test/02: Fail # Issue 742: field shadowing now allowed | 27 field_override_test/02: Fail # Issue 742: field shadowing now allowed |
| 28 super_field_access_test: Fail # Issue 742: field shadowing now allowed | 28 super_field_access_test: Fail # Issue 742: field shadowing now allowed |
| 29 pseudo_kw_illegal_test/03: Fail # Issue 356 | 29 pseudo_kw_illegal_test/03: Fail # Issue 356 |
| 30 pseudo_kw_illegal_test/08: Fail # Issue 356 | 30 pseudo_kw_illegal_test/08: Fail # Issue 356 |
| 31 pseudo_kw_illegal_test/10: Fail # Issue 356 | 31 pseudo_kw_illegal_test/10: Fail # Issue 356 |
| 32 pseudo_kw_illegal_test/14: Fail # Issue 356 | 32 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| 33 final_field_initialization_order_test: Fail # Issue 4839 | 33 final_field_initialization_order_test: Fail # Issue 4839 |
| 34 argument_definition2_test: Fail, Crash # Issue 4888 | |
| 35 | 34 |
| 36 # These bugs refer currently ongoing language discussions. | 35 # These bugs refer currently ongoing language discussions. |
| 37 constructor5_test: Fail # (Discussion ongoing) | 36 constructor5_test: Fail # (Discussion ongoing) |
| 38 constructor6_test: Fail # (Discussion ongoing) | 37 constructor6_test: Fail # (Discussion ongoing) |
| 39 | 38 |
| 40 # Regular bugs which should be fixed. | 39 # Regular bugs which should be fixed. |
| 41 const_init6_negative_test: Fail # Issue 811 | 40 const_init6_negative_test: Fail # Issue 811 |
| 42 super_first_constructor_test: Fail # Issue 1372. | 41 super_first_constructor_test: Fail # Issue 1372. |
| 43 | 42 |
| 44 # Issue 1355 | 43 # Issue 1355 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 62 getter_no_setter2_test/01: Fail # Issue 4898 | 61 getter_no_setter2_test/01: Fail # Issue 4898 |
| 63 | 62 |
| 64 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 63 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| 65 | 64 |
| 66 # DartC specific tests that should not be run by the VM | 65 # DartC specific tests that should not be run by the VM |
| 67 *dartc_test: Skip | 66 *dartc_test: Skip |
| 68 *dartc_negative_test: Skip | 67 *dartc_negative_test: Skip |
| 69 | 68 |
| 70 [ $compiler == none && $mode == debug ] | 69 [ $compiler == none && $mode == debug ] |
| 71 gc_test: Skip # Takes too long. | 70 gc_test: Skip # Takes too long. |
| 71 argument_definition2_test: Crash # Issue 4888 |
| 72 |
| 73 [ $compiler == none && $mode == release ] |
| 74 argument_definition2_test: Fail # Issue 4888 |
| 72 | 75 |
| 73 [ $compiler == dartc ] | 76 [ $compiler == dartc ] |
| 74 | 77 |
| 75 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy | 78 get_set_syntax_test/none: Fail # does not accept getter/setter with no method bo
dy |
| 76 application_negative_test: Fail # Runtime only test, rewrite as multitest | 79 application_negative_test: Fail # Runtime only test, rewrite as multitest |
| 77 interface_negative_test: Fail # instantiation of abstract class | 80 interface_negative_test: Fail # instantiation of abstract class |
| 78 argument_definition_test/*: Skip # Not implemented. | 81 argument_definition_test/*: Skip # Not implemented. |
| 79 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest | 82 assert_keyword_negative_test: Fail # Runtime only test, rewrite as multitest |
| 80 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest | 83 assign_instance_method_negative_test: Fail # Runtime only test, rewrite as mult
itest |
| 81 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest | 84 body_less_constructor_wrong_arg_negative_test: Fail # Runtime only test, rewrit
e as multitest |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 disable_privacy_test: Fail, Ok | 307 disable_privacy_test: Fail, Ok |
| 305 # This test hard codes name of file being run and precise position. | 308 # This test hard codes name of file being run and precise position. |
| 306 generic_test: Fail, Ok | 309 generic_test: Fail, Ok |
| 307 # Minified mode failures. | 310 # Minified mode failures. |
| 308 # TODO(antonm): proper support in test framework. | 311 # TODO(antonm): proper support in test framework. |
| 309 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 312 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 310 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 313 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 311 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 314 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 312 | 315 |
| 313 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 316 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |