| 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 mixin_mixin_test: Fail # VM issue | 373 mixin_mixin_test: Fail # VM issue |
| 374 mixin_illegal_syntax_test/none: Fail # VM issue | 374 mixin_illegal_syntax_test/none: Fail # VM issue |
| 375 mixin_illegal_superclass_test/none: Fail # VM issue | 375 mixin_illegal_superclass_test/none: Fail # VM issue |
| 376 mixin_illegal_constructor_test/none: Fail # VM issue | 376 mixin_illegal_constructor_test/none: Fail # VM issue |
| 377 mixin_illegal_super_use_test/none: Fail # VM issue | 377 mixin_illegal_super_use_test/none: Fail # VM issue |
| 378 mixin_implements_test: Fail # VM issue | 378 mixin_implements_test: Fail # VM issue |
| 379 mixin_type_parameters_mixin_test: Fail # VM issue | 379 mixin_type_parameters_mixin_test: Fail # VM issue |
| 380 mixin_type_parameters_super_test: Fail # VM issue | 380 mixin_type_parameters_super_test: Fail # VM issue |
| 381 mixin_type_parameters_mixin_extends_test: Fail # VM issue | 381 mixin_type_parameters_mixin_extends_test: Fail # VM issue |
| 382 mixin_type_parameters_super_extends_test: Fail # VM issue | 382 mixin_type_parameters_super_extends_test: Fail # VM issue |
| 383 mixin_this_use_test: Fail # VM issue |
| 383 | 384 |
| 384 # Malformed types not handled as unresolved: | 385 # Malformed types not handled as unresolved: |
| 385 import_core_prefix_test: Fail | 386 import_core_prefix_test: Fail |
| 386 prefix16_test: Fail | 387 prefix16_test: Fail |
| 387 prefix22_test: Fail | 388 prefix22_test: Fail |
| 388 type_annotation_test/04: Fail | 389 type_annotation_test/04: Fail |
| 389 type_annotation_test/06: Fail | 390 type_annotation_test/06: Fail |
| 390 | 391 |
| 391 # Calling unresolved class constructor: | 392 # Calling unresolved class constructor: |
| 392 call_nonexistent_constructor_test: Fail | 393 call_nonexistent_constructor_test: Fail |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 *: Skip | 582 *: Skip |
| 582 | 583 |
| 583 [ $arch == simarm ] | 584 [ $arch == simarm ] |
| 584 *: Skip | 585 *: Skip |
| 585 | 586 |
| 586 [ $arch == mips ] | 587 [ $arch == mips ] |
| 587 *: Skip | 588 *: Skip |
| 588 | 589 |
| 589 [ $arch == simmips ] | 590 [ $arch == simmips ] |
| 590 *: Skip | 591 *: Skip |
| OLD | NEW |