| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 type_parameter_literal_test: Fail # Issue 7551 | 57 type_parameter_literal_test: Fail # Issue 7551 |
| 58 | 58 |
| 59 on_catch_malformed_type_test: Fail # Issue 8601 | 59 on_catch_malformed_type_test: Fail # Issue 8601 |
| 60 | 60 |
| 61 mixin_illegal_syntax_test/none: Fail | 61 mixin_illegal_syntax_test/none: Fail |
| 62 mixin_type_parameters_mixin_test: Fail | 62 mixin_type_parameters_mixin_test: Fail |
| 63 mixin_type_parameters_super_test: Fail | 63 mixin_type_parameters_super_test: Fail |
| 64 mixin_type_parameters_super_extends_test: Fail | 64 mixin_type_parameters_super_extends_test: Fail |
| 65 mixin_lib_extends_field_test: Fail | 65 mixin_lib_extends_field_test: Fail |
| 66 | 66 |
| 67 type_variable_field_initializer_closure_test: Crash # issue 8847 | 67 type_variable_field_initializer_closure_test: Crash # issue 8847 |
| 68 |
| 69 super_getter_setter_test: Fail |
| 70 super_operator_index7_test: Fail |
| 68 | 71 |
| 69 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 72 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 70 gc_test: Skip # Issue 1487, flaky. | 73 gc_test: Skip # Issue 1487, flaky. |
| 71 | 74 |
| 72 [ $compiler == none && $mode == debug ] | 75 [ $compiler == none && $mode == debug ] |
| 73 gc_test: Skip # Takes too long. | 76 gc_test: Skip # Takes too long. |
| 74 | 77 |
| 75 [ $compiler == none && $unchecked ] | 78 [ $compiler == none && $unchecked ] |
| 76 | 79 |
| 77 # Only checked mode reports an error on type assignment | 80 # Only checked mode reports an error on type assignment |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 *: Skip | 563 *: Skip |
| 561 | 564 |
| 562 [ $arch == simarm ] | 565 [ $arch == simarm ] |
| 563 *: Skip | 566 *: Skip |
| 564 | 567 |
| 565 [ $arch == mips ] | 568 [ $arch == mips ] |
| 566 *: Skip | 569 *: Skip |
| 567 | 570 |
| 568 [ $arch == simmips ] | 571 [ $arch == simmips ] |
| 569 *: Skip | 572 *: Skip |
| OLD | NEW |