| 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 12 matching lines...) Expand all Loading... |
| 23 call_nonexistent_constructor_test: Fail # Issue 3801 | 23 call_nonexistent_constructor_test: Fail # Issue 3801 |
| 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 | 33 final_field_initialization_order_test: Fail # Issue 4839 |
| 34 | 34 |
| 35 # These bugs refer currently ongoing language discussions. | 35 # These bugs refer currently ongoing language discussions. |
| 36 constructor5_test: Fail # (Discussion ongoing) | 36 constructor5_test: Fail # (Discussion ongoing) |
| 37 constructor6_test: Fail # (Discussion ongoing) | 37 constructor6_test: Fail # (Discussion ongoing) |
| 38 | 38 |
| 39 # Regular bugs which should be fixed. | 39 # Regular bugs which should be fixed. |
| 40 const_init6_negative_test: Fail # Issue 811 | 40 const_init6_negative_test: Fail # Issue 811 |
| 41 super_first_constructor_test: Fail # Issue 1372. | 41 super_first_constructor_test: Fail # Issue 1372. |
| 42 | 42 |
| 43 # Issue 1355 | 43 # Issue 1355 |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 disable_privacy_test: Fail, Ok | 282 disable_privacy_test: Fail, Ok |
| 283 # This test hard codes name of file being run and precise position. | 283 # This test hard codes name of file being run and precise position. |
| 284 generic_test: Fail, Ok | 284 generic_test: Fail, Ok |
| 285 # Minified mode failures. | 285 # Minified mode failures. |
| 286 # TODO(antonm): proper support in test framework. | 286 # TODO(antonm): proper support in test framework. |
| 287 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 287 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 288 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 288 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 289 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 289 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 290 | 290 |
| 291 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 291 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |