| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 compile_time_constant10_test/none: Fail # issue 5214 | 49 compile_time_constant10_test/none: Fail # issue 5214 |
| 50 | 50 |
| 51 export_cyclic_test: Fail, Crash # issue 6060 | 51 export_cyclic_test: Fail, Crash # issue 6060 |
| 52 duplicate_export_negative_test: Fail # issue 6134 | 52 duplicate_export_negative_test: Fail # issue 6134 |
| 53 type_annotation_test/04: Fail # Issue 6970 | 53 type_annotation_test/04: Fail # Issue 6970 |
| 54 type_annotation_test/06: Fail # Issue 6973 | 54 type_annotation_test/06: Fail # Issue 6973 |
| 55 type_annotation_test/09: Fail # Issue 6973 | 55 type_annotation_test/09: Fail # Issue 6973 |
| 56 | 56 |
| 57 type_parameter_literal_test: Fail # Issue 7551 | 57 type_parameter_literal_test: Fail # Issue 7551 |
| 58 | 58 |
| 59 mixin_field_test: Fail | |
| 60 mixin_is_test: Fail | |
| 61 mixin_method_test: Fail | |
| 62 mixin_naming_test: Fail | |
| 63 mixin_extends_field_test: Fail | |
| 64 mixin_extends_is_test: Fail | |
| 65 mixin_extends_method_test: Fail | |
| 66 mixin_mixin_test: Fail | |
| 67 mixin_illegal_syntax_test/none: Fail | 59 mixin_illegal_syntax_test/none: Fail |
| 68 mixin_illegal_superclass_test/none: Fail | |
| 69 mixin_illegal_constructor_test/none: Fail | |
| 70 mixin_illegal_static_access_test: Fail | |
| 71 mixin_illegal_super_use_test/none: Fail | |
| 72 mixin_implements_test: Fail | |
| 73 mixin_type_parameters_mixin_test: Fail | 60 mixin_type_parameters_mixin_test: Fail |
| 74 mixin_type_parameters_super_test: Fail | 61 mixin_type_parameters_super_test: Fail |
| 75 mixin_type_parameters_mixin_extends_test: Fail | 62 mixin_type_parameters_mixin_extends_test: Fail |
| 76 mixin_type_parameters_super_extends_test: Fail | 63 mixin_type_parameters_super_extends_test: Fail |
| 77 mixin_this_use_test: Fail | |
| 78 | 64 |
| 79 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 65 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 80 gc_test: Skip # Issue 1487, flaky. | 66 gc_test: Skip # Issue 1487, flaky. |
| 81 | 67 |
| 82 [ $compiler == none && $mode == debug ] | 68 [ $compiler == none && $mode == debug ] |
| 83 gc_test: Skip # Takes too long. | 69 gc_test: Skip # Takes too long. |
| 84 | 70 |
| 85 [ $compiler == none && $unchecked ] | 71 [ $compiler == none && $unchecked ] |
| 86 | 72 |
| 87 # Only checked mode reports an error on type assignment | 73 # Only checked mode reports an error on type assignment |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 *: Skip | 568 *: Skip |
| 583 | 569 |
| 584 [ $arch == simarm ] | 570 [ $arch == simarm ] |
| 585 *: Skip | 571 *: Skip |
| 586 | 572 |
| 587 [ $arch == mips ] | 573 [ $arch == mips ] |
| 588 *: Skip | 574 *: Skip |
| 589 | 575 |
| 590 [ $arch == simmips ] | 576 [ $arch == simmips ] |
| 591 *: Skip | 577 *: Skip |
| OLD | NEW |