| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 # Test expects signature of noSuchMethod to be correct according | 151 # Test expects signature of noSuchMethod to be correct according |
| 152 # to specification. Should start working when the library signature | 152 # to specification. Should start working when the library signature |
| 153 # changes. | 153 # changes. |
| 154 is_not_class2_negative_test: Fail # Runtime only test, rewrite as multitest | 154 is_not_class2_negative_test: Fail # Runtime only test, rewrite as multitest |
| 155 library2_negative_test: Fail # still a valid test? Issue 3649 | 155 library2_negative_test: Fail # still a valid test? Issue 3649 |
| 156 library4_negative_test: Fail # still a valid test? Issue 3530 | 156 library4_negative_test: Fail # still a valid test? Issue 3530 |
| 157 library6_negative_test: Fail # still a valid test? Issue 3650 | 157 library6_negative_test: Fail # still a valid test? Issue 3650 |
| 158 list_literal4_test: Fail # Issue 1343 | 158 list_literal4_test: Fail # Issue 1343 |
| 159 map_literal4_test: Fail # Issue 1343 | 159 map_literal4_test: Fail # Issue 1343 |
| 160 named_parameters_with_object_property_names_test: Fail # Issue 2137 | 160 named_parameters_with_object_property_names_test: Fail # Issue 2137 |
| 161 no_such_method_test: Fail | |
| 162 many_overridden_no_such_method_test: Fail | 161 many_overridden_no_such_method_test: Fail |
| 163 no_such_method_negative_test: Fail # Runtime only test, rewrite as multitest | 162 no_such_method_negative_test: Fail # Runtime only test, rewrite as multitest |
| 164 override_field_test/03: Fail # still a valid test? Issue 3894 | 163 override_field_test/03: Fail # still a valid test? Issue 3894 |
| 165 override_field_test/04: Fail # still a valid test? Issue 3656 | 164 override_field_test/04: Fail # still a valid test? Issue 3656 |
| 166 override_field_method3_negative_test: Fail, OK # test issue 5249 | 165 override_field_method3_negative_test: Fail, OK # test issue 5249 |
| 167 override_field_method6_negative_test: Fail, OK # test issue 5249 | 166 override_field_method6_negative_test: Fail, OK # test issue 5249 |
| 168 overridden_no_such_method_test: Fail | 167 overridden_no_such_method_test: Fail |
| 169 parameter_initializer6_negative_test: Fail # language change 4288 | 168 parameter_initializer6_negative_test: Fail # language change 4288 |
| 170 prefix1_negative_test : Fail # language change 1031 | 169 prefix1_negative_test : Fail # language change 1031 |
| 171 prefix4_negative_test : Fail # language change 1031 | 170 prefix4_negative_test : Fail # language change 1031 |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 compile_time_constant_checked3_test/05: Fail, OK | 571 compile_time_constant_checked3_test/05: Fail, OK |
| 573 compile_time_constant_checked3_test/06: Fail, OK | 572 compile_time_constant_checked3_test/06: Fail, OK |
| 574 | 573 |
| 575 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 574 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 576 | 575 |
| 577 call_through_null_getter_test: Fail # issue 6130 | 576 call_through_null_getter_test: Fail # issue 6130 |
| 578 | 577 |
| 579 # This is a VM error when the compiled code is run. | 578 # This is a VM error when the compiled code is run. |
| 580 invocation_mirror_test: Fail # issue 3326, 3622. | 579 invocation_mirror_test: Fail # issue 3326, 3622. |
| 581 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 580 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |