| 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 17 matching lines...) Expand all Loading... |
| 28 # These bugs refer currently ongoing language discussions. | 28 # These bugs refer currently ongoing language discussions. |
| 29 constructor5_test: Fail # (Discussion ongoing) | 29 constructor5_test: Fail # (Discussion ongoing) |
| 30 | 30 |
| 31 constructor6_test: Fail # Issue 6422 | 31 constructor6_test: Fail # Issue 6422 |
| 32 closure_in_initializer_test: Fail # Issue 6422 | 32 closure_in_initializer_test: Fail # Issue 6422 |
| 33 | 33 |
| 34 # Regular bugs which should be fixed. | 34 # Regular bugs which should be fixed. |
| 35 const_init6_negative_test: Fail # Issue 811 | 35 const_init6_negative_test: Fail # Issue 811 |
| 36 super_first_constructor_test: Fail # Issue 1372. | 36 super_first_constructor_test: Fail # Issue 1372. |
| 37 | 37 |
| 38 # Issue 1355 | |
| 39 call_operator_test: Fail | |
| 40 | |
| 41 parameter_initializer6_negative_test: Fail # Issue 3502 | 38 parameter_initializer6_negative_test: Fail # Issue 3502 |
| 42 | 39 |
| 43 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. | 40 named_parameters_aggregated_test/05: Fail # Compile-time error reported instead
of static type warning. |
| 44 | 41 |
| 45 lazy_static3_test: Fail # Issue 3558 | 42 lazy_static3_test: Fail # Issue 3558 |
| 46 | 43 |
| 47 type_error_test: Fail # http://dartbug.com/5280 | 44 type_error_test: Fail # http://dartbug.com/5280 |
| 48 | 45 |
| 49 # DartC specific tests that should not be run by the VM | 46 # DartC specific tests that should not be run by the VM |
| 50 *dartc_test: Skip | 47 *dartc_test: Skip |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 | 528 |
| 532 # This is a VM error when the compiled code is run. | 529 # This is a VM error when the compiled code is run. |
| 533 invocation_mirror_test: Fail # issue 3326. | 530 invocation_mirror_test: Fail # issue 3326. |
| 534 invocation_mirror_indirect_test: Fail # issue 3326. | 531 invocation_mirror_indirect_test: Fail # issue 3326. |
| 535 super_call4_test: Fail # issue 3326. | 532 super_call4_test: Fail # issue 3326. |
| 536 | 533 |
| 537 [ $compiler == dart2dart && $minified ] | 534 [ $compiler == dart2dart && $minified ] |
| 538 import_core_prefix_test: Pass | 535 import_core_prefix_test: Pass |
| 539 prefix22_test: Pass | 536 prefix22_test: Pass |
| 540 invocation_mirror2_test: Fail | 537 invocation_mirror2_test: Fail |
| OLD | NEW |