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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 mixin_this_use_test: Fail |
| 78 mixin_lib_extends_method_test: Fail |
| 79 mixin_lib_extends_field_test: Fail |
78 | 80 |
79 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 81 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
80 gc_test: Skip # Issue 1487, flaky. | 82 gc_test: Skip # Issue 1487, flaky. |
81 | 83 |
82 [ $compiler == none && $mode == debug ] | 84 [ $compiler == none && $mode == debug ] |
83 gc_test: Skip # Takes too long. | 85 gc_test: Skip # Takes too long. |
84 | 86 |
85 [ $compiler == none && $unchecked ] | 87 [ $compiler == none && $unchecked ] |
86 | 88 |
87 # Only checked mode reports an error on type assignment | 89 # Only checked mode reports an error on type assignment |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 mixin_illegal_syntax_test/none: Fail # VM issue | 376 mixin_illegal_syntax_test/none: Fail # VM issue |
375 mixin_illegal_superclass_test/none: Fail # VM issue | 377 mixin_illegal_superclass_test/none: Fail # VM issue |
376 mixin_illegal_constructor_test/none: Fail # VM issue | 378 mixin_illegal_constructor_test/none: Fail # VM issue |
377 mixin_illegal_super_use_test/none: Fail # VM issue | 379 mixin_illegal_super_use_test/none: Fail # VM issue |
378 mixin_implements_test: Fail # VM issue | 380 mixin_implements_test: Fail # VM issue |
379 mixin_type_parameters_mixin_test: Fail # VM issue | 381 mixin_type_parameters_mixin_test: Fail # VM issue |
380 mixin_type_parameters_super_test: Fail # VM issue | 382 mixin_type_parameters_super_test: Fail # VM issue |
381 mixin_type_parameters_mixin_extends_test: Fail # VM issue | 383 mixin_type_parameters_mixin_extends_test: Fail # VM issue |
382 mixin_type_parameters_super_extends_test: Fail # VM issue | 384 mixin_type_parameters_super_extends_test: Fail # VM issue |
383 mixin_this_use_test: Fail # VM issue | 385 mixin_this_use_test: Fail # VM issue |
| 386 mixin_lib_extends_method_test: Fail # VM issue |
| 387 mixin_lib_extends_field_test: Fail # VM issue |
384 | 388 |
385 # Malformed types not handled as unresolved: | 389 # Malformed types not handled as unresolved: |
386 import_core_prefix_test: Fail | 390 import_core_prefix_test: Fail |
387 prefix16_test: Fail | 391 prefix16_test: Fail |
388 prefix22_test: Fail | 392 prefix22_test: Fail |
389 type_annotation_test/04: Fail | 393 type_annotation_test/04: Fail |
390 type_annotation_test/06: Fail | 394 type_annotation_test/06: Fail |
391 | 395 |
392 # Calling unresolved class constructor: | 396 # Calling unresolved class constructor: |
393 call_nonexistent_constructor_test: Fail | 397 call_nonexistent_constructor_test: Fail |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 *: Skip | 586 *: Skip |
583 | 587 |
584 [ $arch == simarm ] | 588 [ $arch == simarm ] |
585 *: Skip | 589 *: Skip |
586 | 590 |
587 [ $arch == mips ] | 591 [ $arch == mips ] |
588 *: Skip | 592 *: Skip |
589 | 593 |
590 [ $arch == simmips ] | 594 [ $arch == simmips ] |
591 *: Skip | 595 *: Skip |
OLD | NEW |