| 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 28 matching lines...) Expand all Loading... |
| 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 |
| 44 call_operator_test: Fail | 44 call_operator_test: Fail |
| 45 | 45 |
| 46 constructor_redirect_test/01: Fail # Issue 2103. | 46 constructor_redirect_test/01: Fail # Issue 2103. |
| 47 | 47 |
| 48 closure_with_super_send_test: Fail # Issue 3197. | 48 closure_with_super_send_test: Fail # Issue 3197. |
| 49 closure_with_super_field_test: Fail # Issue 3197. |
| 49 super_closure_test: Fail # Issue 3197. | 50 super_closure_test: Fail # Issue 3197. |
| 50 parameter_initializer6_negative_test: Fail # Issue 3502 | 51 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 51 | 52 |
| 52 fauxverride_test/none: Fail # Issue 3778. | 53 fauxverride_test/none: Fail # Issue 3778. |
| 53 | 54 |
| 54 bad_override_test/01: Fail # Issue 3859. | 55 bad_override_test/01: Fail # Issue 3859. |
| 55 bad_override_test/02: Fail # Issue 3859. | 56 bad_override_test/02: Fail # Issue 3859. |
| 56 | 57 |
| 57 setter_no_getter_call_test/01: Crash # Issue 4360 | 58 setter_no_getter_call_test/01: Crash # Issue 4360 |
| 58 | 59 |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 disable_privacy_test: Fail, Ok | 293 disable_privacy_test: Fail, Ok |
| 293 # This test hard codes name of file being run and precise position. | 294 # This test hard codes name of file being run and precise position. |
| 294 generic_test: Fail, Ok | 295 generic_test: Fail, Ok |
| 295 # Minified mode failures. | 296 # Minified mode failures. |
| 296 # TODO(antonm): proper support in test framework. | 297 # TODO(antonm): proper support in test framework. |
| 297 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). | 298 overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked
method ("foo"). |
| 298 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). | 299 many_overridden_no_such_method_test: Pass, Fail, OK # Hard codes the name of inv
oked method ("foo"). |
| 299 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). | 300 no_such_method_test: Pass, Fail, OK # Hard codes the name of invoked method ("fo
o"). |
| 300 | 301 |
| 301 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 302 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| OLD | NEW |