| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 on_catch_malformed_type_test: Fail # Issue 8601 | 77 on_catch_malformed_type_test: Fail # Issue 8601 |
| 78 | 78 |
| 79 mixin_mixin_test: Fail | 79 mixin_mixin_test: Fail |
| 80 mixin_issue10216_2_test: Fail | 80 mixin_issue10216_2_test: Fail |
| 81 mixin_illegal_object_test/01: Crash # Issue 10952 | 81 mixin_illegal_object_test/01: Crash # Issue 10952 |
| 82 mixin_illegal_object_test/02: Crash # Issue 10952 | 82 mixin_illegal_object_test/02: Crash # Issue 10952 |
| 83 | 83 |
| 84 type_variable_field_initializer_closure_test: Crash # issue 8847 | 84 type_variable_field_initializer_closure_test: Crash # issue 8847 |
| 85 | 85 |
| 86 super_getter_setter_test: Fail # Issue 8917 | |
| 87 | 86 |
| 88 execute_finally10_test: Fail # Issue 430 | 87 execute_finally10_test: Fail # Issue 430 |
| 89 execute_finally11_test: Fail # Issue 430 | 88 execute_finally11_test: Fail # Issue 430 |
| 90 | 89 |
| 91 [ $compiler == none && $unchecked ] | 90 [ $compiler == none && $unchecked ] |
| 92 | 91 |
| 93 # Only checked mode reports an error on type assignment | 92 # Only checked mode reports an error on type assignment |
| 94 # problems in compile time constants. | 93 # problems in compile time constants. |
| 95 compile_time_constant_checked_test/02: Fail, OK | 94 compile_time_constant_checked_test/02: Fail, OK |
| 96 compile_time_constant_checked2_test/01: Fail, OK | 95 compile_time_constant_checked2_test/01: Fail, OK |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 compile_time_constant_checked3_test/03: Fail, OK | 508 compile_time_constant_checked3_test/03: Fail, OK |
| 510 compile_time_constant_checked3_test/04: Fail, OK | 509 compile_time_constant_checked3_test/04: Fail, OK |
| 511 compile_time_constant_checked3_test/05: Fail, OK | 510 compile_time_constant_checked3_test/05: Fail, OK |
| 512 compile_time_constant_checked3_test/06: Fail, OK | 511 compile_time_constant_checked3_test/06: Fail, OK |
| 513 | 512 |
| 514 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 513 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 515 type_parameter_literal_test: Fail | 514 type_parameter_literal_test: Fail |
| 516 | 515 |
| 517 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 | 516 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 |
| 518 | 517 |
| 519 super_getter_setter_test: Fail # VM bug: issue 8917 | |
| 520 | 518 |
| 521 execute_finally10_test: Fail # VM bug: issue 430 | 519 execute_finally10_test: Fail # VM bug: issue 430 |
| 522 execute_finally11_test: Fail # VM bug: issue 430 | 520 execute_finally11_test: Fail # VM bug: issue 430 |
| 523 | 521 |
| 524 bound_closure_equality_test: Fail # Issue 10849 | 522 bound_closure_equality_test: Fail # Issue 10849 |
| 525 | 523 |
| 526 [ $compiler == dart2dart && $minified ] | 524 [ $compiler == dart2dart && $minified ] |
| 527 | 525 |
| 528 # TODO(tball): Assign proper bug numbers. | 526 # TODO(tball): Assign proper bug numbers. |
| 529 class_literal_test/none: Fail | 527 class_literal_test/none: Fail |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 | 811 |
| 814 | 812 |
| 815 [ $arch == simarm ] | 813 [ $arch == simarm ] |
| 816 *: Skip | 814 *: Skip |
| 817 | 815 |
| 818 [ $arch == mips ] | 816 [ $arch == mips ] |
| 819 *: Skip | 817 *: Skip |
| 820 | 818 |
| 821 [ $arch == simmips ] | 819 [ $arch == simmips ] |
| 822 *: Skip | 820 *: Skip |
| OLD | NEW |