| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 # Regular bugs which should be fixed. | 30 # Regular bugs which should be fixed. |
| 31 const_init6_negative_test: Fail # Issue 811 | 31 const_init6_negative_test: Fail # Issue 811 |
| 32 super_first_constructor_test: Fail # Issue 1372. | 32 super_first_constructor_test: Fail # Issue 1372. |
| 33 | 33 |
| 34 # Issue 1355 | 34 # Issue 1355 |
| 35 call_operator_test: Fail | 35 call_operator_test: Fail |
| 36 | 36 |
| 37 parameter_initializer6_negative_test: Fail # Issue 3502 | 37 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 38 | 38 |
| 39 bad_override_test/01: Fail # Issue 3859. | |
| 40 bad_override_test/02: Fail # Issue 3859. | |
| 41 | |
| 42 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 39 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| 43 | 40 |
| 44 lazy_static3_test: Fail # Issue 3558 | 41 lazy_static3_test: Fail # Issue 3558 |
| 45 | 42 |
| 46 type_error_test: Fail # http://dartbug.com/5280 | 43 type_error_test: Fail # http://dartbug.com/5280 |
| 47 | 44 |
| 48 # DartC specific tests that should not be run by the VM | 45 # DartC specific tests that should not be run by the VM |
| 49 *dartc_test: Skip | 46 *dartc_test: Skip |
| 50 *dartc_negative_test: Skip | 47 *dartc_negative_test: Skip |
| 51 | 48 |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 compile_time_constant_checked3_test/05: Fail, OK | 577 compile_time_constant_checked3_test/05: Fail, OK |
| 581 compile_time_constant_checked3_test/06: Fail, OK | 578 compile_time_constant_checked3_test/06: Fail, OK |
| 582 | 579 |
| 583 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 580 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 584 | 581 |
| 585 call_through_null_getter_test: Fail # issue 6130 | 582 call_through_null_getter_test: Fail # issue 6130 |
| 586 | 583 |
| 587 # This is a VM error when the compiled code is run. | 584 # This is a VM error when the compiled code is run. |
| 588 invocation_mirror_test: Fail # issue 3326, 3622. | 585 invocation_mirror_test: Fail # issue 3326, 3622. |
| 589 invocation_mirror_indirect_test: Fail # issue 3326, 3622. | 586 invocation_mirror_indirect_test: Fail # issue 3326, 3622. |
| OLD | NEW |