| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_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 | 72 |
| 72 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 73 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 73 gc_test: Skip # Issue 1487, flaky. | 74 gc_test: Skip # Issue 1487, flaky. |
| 74 | 75 |
| 75 [ $compiler == none && $mode == debug ] | 76 [ $compiler == none && $mode == debug ] |
| 76 gc_test: Skip # Takes too long. | 77 gc_test: Skip # Takes too long. |
| 77 | 78 |
| 78 [ $compiler == none && $unchecked ] | 79 [ $compiler == none && $unchecked ] |
| 79 | 80 |
| 80 # Only checked mode reports an error on type assignment | 81 # Only checked mode reports an error on type assignment |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 mixin_is_test: Fail # VM issue | 354 mixin_is_test: Fail # VM issue |
| 354 mixin_method_test: Fail # VM issue | 355 mixin_method_test: Fail # VM issue |
| 355 mixin_naming_test: Fail # VM issue | 356 mixin_naming_test: Fail # VM issue |
| 356 mixin_extends_field_test: Fail # VM issue | 357 mixin_extends_field_test: Fail # VM issue |
| 357 mixin_extends_is_test: Fail # VM issue | 358 mixin_extends_is_test: Fail # VM issue |
| 358 mixin_extends_method_test: Fail # VM issue | 359 mixin_extends_method_test: Fail # VM issue |
| 359 mixin_mixin_test: Fail # VM issue | 360 mixin_mixin_test: Fail # VM issue |
| 360 mixin_illegal_syntax_test/none: Fail # VM issue | 361 mixin_illegal_syntax_test/none: Fail # VM issue |
| 361 mixin_illegal_superclass_test/none: Fail # VM issue | 362 mixin_illegal_superclass_test/none: Fail # VM issue |
| 362 mixin_illegal_constructor_test/none: Fail # VM issue | 363 mixin_illegal_constructor_test/none: Fail # VM issue |
| 364 mixin_illegal_super_use_test/none: Fail # VM issue |
| 363 | 365 |
| 364 # Malformed types not handled as unresolved: | 366 # Malformed types not handled as unresolved: |
| 365 import_core_prefix_test: Fail | 367 import_core_prefix_test: Fail |
| 366 prefix16_test: Fail | 368 prefix16_test: Fail |
| 367 prefix22_test: Fail | 369 prefix22_test: Fail |
| 368 type_annotation_test/04: Fail | 370 type_annotation_test/04: Fail |
| 369 type_annotation_test/06: Fail | 371 type_annotation_test/06: Fail |
| 370 | 372 |
| 371 # Calling unresolved class constructor: | 373 # Calling unresolved class constructor: |
| 372 call_nonexistent_constructor_test: Fail | 374 call_nonexistent_constructor_test: Fail |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 *: Skip | 562 *: Skip |
| 561 | 563 |
| 562 [ $arch == simarm ] | 564 [ $arch == simarm ] |
| 563 *: Skip | 565 *: Skip |
| 564 | 566 |
| 565 [ $arch == mips ] | 567 [ $arch == mips ] |
| 566 *: Skip | 568 *: Skip |
| 567 | 569 |
| 568 [ $arch == simmips ] | 570 [ $arch == simmips ] |
| 569 *: Skip | 571 *: Skip |
| OLD | NEW |