| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 mixin_mixin_test: Fail | 65 mixin_mixin_test: Fail |
| 66 mixin_issue10216_2_test: Fail | 66 mixin_issue10216_2_test: Fail |
| 67 mixin_illegal_object_test/01: Crash # Issue 10952 | 67 mixin_illegal_object_test/01: Crash # Issue 10952 |
| 68 mixin_illegal_object_test/02: Crash # Issue 10952 | 68 mixin_illegal_object_test/02: Crash # Issue 10952 |
| 69 | 69 |
| 70 type_variable_field_initializer_closure_test: Crash # issue 8847 | 70 type_variable_field_initializer_closure_test: Crash # issue 8847 |
| 71 closures_initializer_test: Crash # issue 8847 | 71 closures_initializer_test: Crash # issue 8847 |
| 72 closures_initializer2_test: Crash # issue 8847 | 72 closures_initializer2_test: Crash # issue 8847 |
| 73 | 73 |
| 74 mixin_forwarding_constructor2_test: Fail # Issue 11888 |
| 75 mixin_typedef_constructor_test: Fail # Issue 11888 |
| 74 | 76 |
| 75 [ $compiler == none && $unchecked ] | 77 [ $compiler == none && $unchecked ] |
| 76 | 78 |
| 77 # Only checked mode reports an error on type assignment | 79 # Only checked mode reports an error on type assignment |
| 78 # problems in compile time constants. | 80 # problems in compile time constants. |
| 79 compile_time_constant_checked_test/02: Fail, OK | 81 compile_time_constant_checked_test/02: Fail, OK |
| 80 compile_time_constant_checked2_test/01: Fail, OK | 82 compile_time_constant_checked2_test/01: Fail, OK |
| 81 compile_time_constant_checked2_test/02: Fail, OK | 83 compile_time_constant_checked2_test/02: Fail, OK |
| 82 compile_time_constant_checked2_test/03: Fail, OK | 84 compile_time_constant_checked2_test/03: Fail, OK |
| 83 compile_time_constant_checked2_test/04: Fail, OK | 85 compile_time_constant_checked2_test/04: Fail, OK |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de
pends on method names. | 135 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de
pends on method names. |
| 134 | 136 |
| 135 on_catch_malformed_type_test: Fail # Issue 8601 | 137 on_catch_malformed_type_test: Fail # Issue 8601 |
| 136 | 138 |
| 137 # False positive compile-time error is masking expected compile-time error | 139 # False positive compile-time error is masking expected compile-time error |
| 138 mixin_type_parameters_errors_test/*: Skip | 140 mixin_type_parameters_errors_test/*: Skip |
| 139 | 141 |
| 140 # Mixins fail on the VM. | 142 # Mixins fail on the VM. |
| 141 mixin_mixin_test: Fail # VM issue | 143 mixin_mixin_test: Fail # VM issue |
| 142 mixin_issue10216_2_test: Fail # VM issue | 144 mixin_issue10216_2_test: Fail # VM issue |
| 145 mixin_forwarding_constructor2_test: Fail # Issue 11888 |
| 146 mixin_typedef_constructor_test: Fail # Issue 11888 |
| 143 | 147 |
| 144 | 148 |
| 145 # Malformed types not handled as unresolved: | 149 # Malformed types not handled as unresolved: |
| 146 import_core_prefix_test: Fail | 150 import_core_prefix_test: Fail |
| 147 prefix16_test: Fail | 151 prefix16_test: Fail |
| 148 prefix22_test: Fail | 152 prefix22_test: Fail |
| 149 type_annotation_test/04: Fail | 153 type_annotation_test/04: Fail |
| 150 type_annotation_test/06: Fail | 154 type_annotation_test/06: Fail |
| 151 | 155 |
| 152 # Calling unresolved class constructor: | 156 # Calling unresolved class constructor: |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 try_catch4_test: Crash, Fail | 315 try_catch4_test: Crash, Fail |
| 312 | 316 |
| 313 | 317 |
| 314 [ $arch == mips ] | 318 [ $arch == mips ] |
| 315 *: Skip | 319 *: Skip |
| 316 | 320 |
| 317 [ $arch == simmips ] | 321 [ $arch == simmips ] |
| 318 arithmetic_test: Crash # Too far relative branch. | 322 arithmetic_test: Crash # Too far relative branch. |
| 319 large_implicit_getter_test: Crash # Too far relative branch. | 323 large_implicit_getter_test: Crash # Too far relative branch. |
| 320 try_catch4_test: Fail | 324 try_catch4_test: Fail |
| OLD | NEW |