| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 mixin_field_test: Fail | 59 mixin_field_test: Fail |
| 60 mixin_is_test: Fail | 60 mixin_is_test: Fail |
| 61 mixin_method_test: Fail | 61 mixin_method_test: Fail |
| 62 mixin_naming_test: Fail | 62 mixin_naming_test: Fail |
| 63 mixin_extends_field_test: Fail | 63 mixin_extends_field_test: Fail |
| 64 mixin_extends_is_test: Fail | 64 mixin_extends_is_test: Fail |
| 65 mixin_extends_method_test: Fail | 65 mixin_extends_method_test: Fail |
| 66 mixin_mixin_test: Fail | 66 mixin_mixin_test: Fail |
| 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_static_access_test: Fail |
| 69 | 70 |
| 70 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 71 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 71 gc_test: Skip # Issue 1487, flaky. | 72 gc_test: Skip # Issue 1487, flaky. |
| 72 | 73 |
| 73 [ $compiler == none && $mode == debug ] | 74 [ $compiler == none && $mode == debug ] |
| 74 gc_test: Skip # Takes too long. | 75 gc_test: Skip # Takes too long. |
| 75 | 76 |
| 76 [ $compiler == none && $unchecked ] | 77 [ $compiler == none && $unchecked ] |
| 77 | 78 |
| 78 # Only checked mode reports an error on type assignment | 79 # Only checked mode reports an error on type assignment |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 | 584 |
| 584 [ $compiler == dart2dart && $minified ] | 585 [ $compiler == dart2dart && $minified ] |
| 585 # TODO(tball): Assign proper bug numbers. | 586 # TODO(tball): Assign proper bug numbers. |
| 586 class_literal_test/none: Fail | 587 class_literal_test/none: Fail |
| 587 | 588 |
| 588 import_core_prefix_test: Pass | 589 import_core_prefix_test: Pass |
| 589 prefix22_test: Pass | 590 prefix22_test: Pass |
| 590 invocation_mirror_test: Fail, OK # hardcoded names. | 591 invocation_mirror_test: Fail, OK # hardcoded names. |
| 591 invocation_mirror2_test: Fail, OK # hardcoded names. | 592 invocation_mirror2_test: Fail, OK # hardcoded names. |
| 592 super_call4_test: Fail, OK # hardcoded names. | 593 super_call4_test: Fail, OK # hardcoded names. |
| OLD | NEW |