| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 64 |
| 65 on_catch_malformed_type_test: Fail # Issue 8601 | 65 on_catch_malformed_type_test: Fail # Issue 8601 |
| 66 | 66 |
| 67 mixin_mixin_test: Fail | 67 mixin_mixin_test: Fail |
| 68 | 68 |
| 69 type_variable_field_initializer_closure_test: Crash # issue 8847 | 69 type_variable_field_initializer_closure_test: Crash # issue 8847 |
| 70 | 70 |
| 71 super_getter_setter_test: Fail # Issue 8917 | 71 super_getter_setter_test: Fail # Issue 8917 |
| 72 super_operator_index7_test: Fail # Issue 8918 | 72 super_operator_index7_test: Fail # Issue 8918 |
| 73 | 73 |
| 74 execute_finally_10_test: Fail # Issue 430 |
| 75 |
| 74 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] | 76 [ $compiler == none && ($system == macos || $system == linux) && $arch == ia32 &
& $checked ] |
| 75 gc_test: Skip # Issue 1487, flaky. | 77 gc_test: Skip # Issue 1487, flaky. |
| 76 | 78 |
| 77 [ $compiler == none && $mode == debug ] | 79 [ $compiler == none && $mode == debug ] |
| 78 gc_test: Skip # Takes too long. | 80 gc_test: Skip # Takes too long. |
| 79 | 81 |
| 80 [ $compiler == none && $unchecked ] | 82 [ $compiler == none && $unchecked ] |
| 81 | 83 |
| 82 # Only checked mode reports an error on type assignment | 84 # Only checked mode reports an error on type assignment |
| 83 # problems in compile time constants. | 85 # problems in compile time constants. |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 compile_time_constant_checked3_test/06: Fail, OK | 542 compile_time_constant_checked3_test/06: Fail, OK |
| 541 | 543 |
| 542 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 | 544 type_error_test: Fail, OK # VM bug: http://dartbug.com/5280 |
| 543 type_parameter_literal_test: Fail | 545 type_parameter_literal_test: Fail |
| 544 | 546 |
| 545 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 | 547 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 |
| 546 | 548 |
| 547 super_getter_setter_test: Fail # VM bug: issue 8917 | 549 super_getter_setter_test: Fail # VM bug: issue 8917 |
| 548 super_operator_index7_test: Fail # VM bug: issue 8918 | 550 super_operator_index7_test: Fail # VM bug: issue 8918 |
| 549 | 551 |
| 552 execute_finally_10_test: Fail # VM bug: issue 430 |
| 553 |
| 550 [ $compiler == dart2dart && $minified ] | 554 [ $compiler == dart2dart && $minified ] |
| 551 | 555 |
| 552 # TODO(tball): Assign proper bug numbers. | 556 # TODO(tball): Assign proper bug numbers. |
| 553 class_literal_test/none: Fail | 557 class_literal_test/none: Fail |
| 554 | 558 |
| 555 import_core_prefix_test: Pass | 559 import_core_prefix_test: Pass |
| 556 prefix22_test: Pass | 560 prefix22_test: Pass |
| 557 invocation_mirror_test: Fail, OK # hardcoded names. | 561 invocation_mirror_test: Fail, OK # hardcoded names. |
| 558 super_call4_test: Fail, OK # hardcoded names. | 562 super_call4_test: Fail, OK # hardcoded names. |
| 559 | 563 |
| 560 [ $arch == arm ] | 564 [ $arch == arm ] |
| 561 *: Skip | 565 *: Skip |
| 562 | 566 |
| 563 [ $arch == simarm ] | 567 [ $arch == simarm ] |
| 564 *: Skip | 568 *: Skip |
| 565 | 569 |
| 566 [ $arch == mips ] | 570 [ $arch == mips ] |
| 567 *: Skip | 571 *: Skip |
| 568 | 572 |
| 569 [ $arch == simmips ] | 573 [ $arch == simmips ] |
| 570 *: Skip | 574 *: Skip |
| OLD | NEW |