| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 type_parameter_literal_test: Fail # Issue 7551 | 75 type_parameter_literal_test: Fail # Issue 7551 |
| 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 | 81 |
| 82 type_variable_field_initializer_closure_test: Crash # issue 8847 | 82 type_variable_field_initializer_closure_test: Crash # issue 8847 |
| 83 | 83 |
| 84 super_getter_setter_test: Fail # Issue 8917 | 84 super_getter_setter_test: Fail # Issue 8917 |
| 85 super_operator_index7_test: Fail # Issue 8918 | |
| 86 | 85 |
| 87 execute_finally10_test: Fail # Issue 430 | 86 execute_finally10_test: Fail # Issue 430 |
| 88 execute_finally11_test: Fail # Issue 430 | 87 execute_finally11_test: Fail # Issue 430 |
| 89 | 88 |
| 90 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 89 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 91 gc_test: Skip # Issue 1487, flaky. | 90 gc_test: Skip # Issue 1487, flaky. |
| 92 | 91 |
| 93 [ $compiler == none && $mode == debug ] | 92 [ $compiler == none && $mode == debug ] |
| 94 gc_test: Skip # Takes too long. | 93 gc_test: Skip # Takes too long. |
| 95 | 94 |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 compile_time_constant_checked3_test/04: Fail, OK | 521 compile_time_constant_checked3_test/04: Fail, OK |
| 523 compile_time_constant_checked3_test/05: Fail, OK | 522 compile_time_constant_checked3_test/05: Fail, OK |
| 524 compile_time_constant_checked3_test/06: Fail, OK | 523 compile_time_constant_checked3_test/06: Fail, OK |
| 525 | 524 |
| 526 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 525 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 527 type_parameter_literal_test: Fail | 526 type_parameter_literal_test: Fail |
| 528 | 527 |
| 529 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 | 528 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 |
| 530 | 529 |
| 531 super_getter_setter_test: Fail # VM bug: issue 8917 | 530 super_getter_setter_test: Fail # VM bug: issue 8917 |
| 532 super_operator_index7_test: Fail # VM bug: issue 8918 | |
| 533 | 531 |
| 534 execute_finally10_test: Fail # VM bug: issue 430 | 532 execute_finally10_test: Fail # VM bug: issue 430 |
| 535 execute_finally11_test: Fail # VM bug: issue 430 | 533 execute_finally11_test: Fail # VM bug: issue 430 |
| 536 | 534 |
| 537 [ $compiler == dart2dart && $minified ] | 535 [ $compiler == dart2dart && $minified ] |
| 538 | 536 |
| 539 # TODO(tball): Assign proper bug numbers. | 537 # TODO(tball): Assign proper bug numbers. |
| 540 class_literal_test/none: Fail | 538 class_literal_test/none: Fail |
| 541 | 539 |
| 542 import_core_prefix_test: Pass | 540 import_core_prefix_test: Pass |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 | 832 |
| 835 | 833 |
| 836 [ $arch == simarm ] | 834 [ $arch == simarm ] |
| 837 *: Skip | 835 *: Skip |
| 838 | 836 |
| 839 [ $arch == mips ] | 837 [ $arch == mips ] |
| 840 *: Skip | 838 *: Skip |
| 841 | 839 |
| 842 [ $arch == simmips ] | 840 [ $arch == simmips ] |
| 843 *: Skip | 841 *: Skip |
| OLD | NEW |