| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 type_annotation_test/06: Fail # Issue 6973 | 54 type_annotation_test/06: Fail # Issue 6973 |
| 55 type_annotation_test/09: Fail # Issue 6973 | 55 type_annotation_test/09: Fail # Issue 6973 |
| 56 | 56 |
| 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_mixin_extends_test: Fail | |
| 65 mixin_type_parameters_super_extends_test: Fail | 64 mixin_type_parameters_super_extends_test: Fail |
| 66 mixin_lib_extends_field_test: Fail | 65 mixin_lib_extends_field_test: Fail |
| 67 | 66 |
| 68 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 67 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 69 gc_test: Skip # Issue 1487, flaky. | 68 gc_test: Skip # Issue 1487, flaky. |
| 70 | 69 |
| 71 [ $compiler == none && $mode == debug ] | 70 [ $compiler == none && $mode == debug ] |
| 72 gc_test: Skip # Takes too long. | 71 gc_test: Skip # Takes too long. |
| 73 | 72 |
| 74 [ $compiler == none && $unchecked ] | 73 [ $compiler == none && $unchecked ] |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te
st depends on method names. | 350 many_overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, te
st depends on method names. |
| 352 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de
pends on method names. | 351 overridden_no_such_method_test: Fail, Pass, OK # Fails in minified mode, test de
pends on method names. |
| 353 | 352 |
| 354 on_catch_malformed_type_test: Fail # Issue 8601 | 353 on_catch_malformed_type_test: Fail # Issue 8601 |
| 355 | 354 |
| 356 # Mixins fail on the VM. | 355 # Mixins fail on the VM. |
| 357 mixin_illegal_syntax_test/none: Fail # VM issue | 356 mixin_illegal_syntax_test/none: Fail # VM issue |
| 358 mixin_illegal_constructor_test/none: Fail # VM issue | 357 mixin_illegal_constructor_test/none: Fail # VM issue |
| 359 mixin_type_parameters_mixin_test: Fail # VM issue | 358 mixin_type_parameters_mixin_test: Fail # VM issue |
| 360 mixin_type_parameters_super_test: Fail # VM issue | 359 mixin_type_parameters_super_test: Fail # VM issue |
| 361 mixin_type_parameters_mixin_extends_test: Fail # VM issue | |
| 362 mixin_type_parameters_super_extends_test: Fail # VM issue | 360 mixin_type_parameters_super_extends_test: Fail # VM issue |
| 363 | 361 |
| 364 # Malformed types not handled as unresolved: | 362 # Malformed types not handled as unresolved: |
| 365 import_core_prefix_test: Fail | 363 import_core_prefix_test: Fail |
| 366 prefix16_test: Fail | 364 prefix16_test: Fail |
| 367 prefix22_test: Fail | 365 prefix22_test: Fail |
| 368 type_annotation_test/04: Fail | 366 type_annotation_test/04: Fail |
| 369 type_annotation_test/06: Fail | 367 type_annotation_test/06: Fail |
| 370 | 368 |
| 371 # Calling unresolved class constructor: | 369 # Calling unresolved class constructor: |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 *: Skip | 553 *: Skip |
| 556 | 554 |
| 557 [ $arch == simarm ] | 555 [ $arch == simarm ] |
| 558 *: Skip | 556 *: Skip |
| 559 | 557 |
| 560 [ $arch == mips ] | 558 [ $arch == mips ] |
| 561 *: Skip | 559 *: Skip |
| 562 | 560 |
| 563 [ $arch == simmips ] | 561 [ $arch == simmips ] |
| 564 *: Skip | 562 *: Skip |
| OLD | NEW |