| 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 |
| 68 |
| 67 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 69 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 68 gc_test: Skip # Issue 1487, flaky. | 70 gc_test: Skip # Issue 1487, flaky. |
| 69 | 71 |
| 70 [ $compiler == none && $mode == debug ] | 72 [ $compiler == none && $mode == debug ] |
| 71 gc_test: Skip # Takes too long. | 73 gc_test: Skip # Takes too long. |
| 72 | 74 |
| 73 [ $compiler == none && $unchecked ] | 75 [ $compiler == none && $unchecked ] |
| 74 | 76 |
| 75 # Only checked mode reports an error on type assignment | 77 # Only checked mode reports an error on type assignment |
| 76 # problems in compile time constants. | 78 # problems in compile time constants. |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 *: Skip | 557 *: Skip |
| 556 | 558 |
| 557 [ $arch == simarm ] | 559 [ $arch == simarm ] |
| 558 *: Skip | 560 *: Skip |
| 559 | 561 |
| 560 [ $arch == mips ] | 562 [ $arch == mips ] |
| 561 *: Skip | 563 *: Skip |
| 562 | 564 |
| 563 [ $arch == simmips ] | 565 [ $arch == simmips ] |
| 564 *: Skip | 566 *: Skip |
| OLD | NEW |