| 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 20 matching lines...) Expand all Loading... |
| 31 mixin_super_constructor_named_test: Fail | 31 mixin_super_constructor_named_test: Fail |
| 32 mixin_super_constructor_positionals_test: Fail | 32 mixin_super_constructor_positionals_test: Fail |
| 33 mixin_super_constructor_multiple_test: Fail | 33 mixin_super_constructor_multiple_test: Fail |
| 34 closure_type_variable_test: Fail # Type variable used as expression (dartbug.com
/6282) | 34 closure_type_variable_test: Fail # Type variable used as expression (dartbug.com
/6282) |
| 35 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 | 35 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 |
| 36 library_juxtaposition_test: Fail # Issue 6877 | 36 library_juxtaposition_test: Fail # Issue 6877 |
| 37 pseudo_kw_illegal_test/14: Fail # Issue 356 | 37 pseudo_kw_illegal_test/14: Fail # Issue 356 |
| 38 method_override2_test/00: Fail # Issue 7076. | 38 method_override2_test/00: Fail # Issue 7076. |
| 39 method_override2_test/02: Fail # Issue 7076. | 39 method_override2_test/02: Fail # Issue 7076. |
| 40 method_override2_test/03: Fail # Issue 7076. | 40 method_override2_test/03: Fail # Issue 7076. |
| 41 bound_closure_equality_test: Fail # Issue 10849 |
| 41 | 42 |
| 42 # These bugs refer currently ongoing language discussions. | 43 # These bugs refer currently ongoing language discussions. |
| 43 constructor5_test: Fail # (Discussion ongoing) | 44 constructor5_test: Fail # (Discussion ongoing) |
| 44 | 45 |
| 45 constructor_initializer_test: Fail # Side effects in constructor parameters | 46 constructor_initializer_test: Fail # Side effects in constructor parameters |
| 46 | 47 |
| 47 constructor6_test: Fail # Issue 6422 | 48 constructor6_test: Fail # Issue 6422 |
| 48 closure_in_initializer_test: Fail # Issue 6422 | 49 closure_in_initializer_test: Fail # Issue 6422 |
| 49 | 50 |
| 50 # Regular bugs which should be fixed. | 51 # Regular bugs which should be fixed. |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 type_parameter_literal_test: Fail | 514 type_parameter_literal_test: Fail |
| 514 | 515 |
| 515 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 | 516 type_variable_field_initializer_closure_test: Crash # VM bug: issue 8847 |
| 516 | 517 |
| 517 super_getter_setter_test: Fail # VM bug: issue 8917 | 518 super_getter_setter_test: Fail # VM bug: issue 8917 |
| 518 super_operator_index7_test: Fail # VM bug: issue 8918 | 519 super_operator_index7_test: Fail # VM bug: issue 8918 |
| 519 | 520 |
| 520 execute_finally10_test: Fail # VM bug: issue 430 | 521 execute_finally10_test: Fail # VM bug: issue 430 |
| 521 execute_finally11_test: Fail # VM bug: issue 430 | 522 execute_finally11_test: Fail # VM bug: issue 430 |
| 522 | 523 |
| 524 bound_closure_equality_test: Fail # Issue 10849 |
| 525 |
| 523 [ $compiler == dart2dart && $minified ] | 526 [ $compiler == dart2dart && $minified ] |
| 524 | 527 |
| 525 # TODO(tball): Assign proper bug numbers. | 528 # TODO(tball): Assign proper bug numbers. |
| 526 class_literal_test/none: Fail | 529 class_literal_test/none: Fail |
| 527 | 530 |
| 528 import_core_prefix_test: Pass | 531 import_core_prefix_test: Pass |
| 529 prefix22_test: Pass | 532 prefix22_test: Pass |
| 530 invocation_mirror_test: Fail, OK # hardcoded names. | 533 invocation_mirror_test: Fail, OK # hardcoded names. |
| 531 super_call4_test: Fail, OK # hardcoded names. | 534 super_call4_test: Fail, OK # hardcoded names. |
| 532 | 535 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 | 821 |
| 819 | 822 |
| 820 [ $arch == simarm ] | 823 [ $arch == simarm ] |
| 821 *: Skip | 824 *: Skip |
| 822 | 825 |
| 823 [ $arch == mips ] | 826 [ $arch == mips ] |
| 824 *: Skip | 827 *: Skip |
| 825 | 828 |
| 826 [ $arch == simmips ] | 829 [ $arch == simmips ] |
| 827 *: Skip | 830 *: Skip |
| OLD | NEW |