| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 mixin_illegal_syntax_test/none: Fail | 67 mixin_illegal_syntax_test/none: Fail |
| 68 mixin_illegal_superclass_test/none: Fail | 68 mixin_illegal_superclass_test/none: Fail |
| 69 mixin_illegal_constructor_test/none: Fail | 69 mixin_illegal_constructor_test/none: Fail |
| 70 mixin_illegal_static_access_test: Fail | 70 mixin_illegal_static_access_test: Fail |
| 71 mixin_illegal_super_use_test/none: Fail | 71 mixin_illegal_super_use_test/none: Fail |
| 72 mixin_implements_test: Fail | 72 mixin_implements_test: Fail |
| 73 mixin_type_parameters_mixin_test: Fail | 73 mixin_type_parameters_mixin_test: Fail |
| 74 mixin_type_parameters_super_test: Fail | 74 mixin_type_parameters_super_test: Fail |
| 75 mixin_type_parameters_mixin_extends_test: Fail | 75 mixin_type_parameters_mixin_extends_test: Fail |
| 76 mixin_type_parameters_super_extends_test: Fail | 76 mixin_type_parameters_super_extends_test: Fail |
| 77 mixin_this_use_test: Fail |
| 77 | 78 |
| 78 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 79 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 79 gc_test: Skip # Issue 1487, flaky. | 80 gc_test: Skip # Issue 1487, flaky. |
| 80 | 81 |
| 81 [ $compiler == none && $mode == debug ] | 82 [ $compiler == none && $mode == debug ] |
| 82 gc_test: Skip # Takes too long. | 83 gc_test: Skip # Takes too long. |
| 83 | 84 |
| 84 [ $compiler == none && $unchecked ] | 85 [ $compiler == none && $unchecked ] |
| 85 | 86 |
| 86 # Only checked mode reports an error on type assignment | 87 # Only checked mode reports an error on type assignment |
| (...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 *: Skip | 581 *: Skip |
| 581 | 582 |
| 582 [ $arch == simarm ] | 583 [ $arch == simarm ] |
| 583 *: Skip | 584 *: Skip |
| 584 | 585 |
| 585 [ $arch == mips ] | 586 [ $arch == mips ] |
| 586 *: Skip | 587 *: Skip |
| 587 | 588 |
| 588 [ $arch == simmips ] | 589 [ $arch == simmips ] |
| 589 *: Skip | 590 *: Skip |
| OLD | NEW |