| 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. |
| 11 # | 11 # |
| 12 # 1) Copy the old version of the test to | 12 # 1) Copy the old version of the test to |
| 13 # tests/language/src/test_name_[dartc|vm]_test.dart. | 13 # tests/language/src/test_name_[dartc|vm]_test.dart. |
| 14 # to maintain coverage. | 14 # to maintain coverage. |
| 15 # 2) File a bug on each architecture for the failure due to the language change. | 15 # 2) File a bug on each architecture for the failure due to the language change. |
| 16 # 3) Update the language/src directory with the updated test. | 16 # 3) Update the language/src directory with the updated test. |
| 17 | 17 |
| 18 [ $compiler == dart2dart ] | 18 [ $compiler == dart2dart ] |
| 19 mixin_super_constructor_test: Fail | 19 mixin_super_constructor_test: Fail |
| 20 mixin_super_constructor2_test: Fail | 20 mixin_super_constructor2_test: Fail |
| 21 mixin_super_constructor_default_test: Fail | 21 mixin_super_constructor_default_test: Fail |
| 22 mixin_super_constructor_named_test: Fail | 22 mixin_super_constructor_named_test: Fail |
| 23 mixin_super_constructor_positionals_test: Fail | 23 mixin_super_constructor_positionals_test: Fail |
| 24 mixin_super_constructor_multiple_test: Fail | 24 mixin_super_constructor_multiple_test: Fail |
| 25 closure_type_variable_test: Fail # Type variable used as expression (dartbug.com
/6282) | 25 closure_type_variable_test: Fail # Type variable used as expression (dartbug.com
/6282) |
| 26 | 26 |
| 27 # Issue 11468 |
| 28 dynamic_test: Fail |
| 29 function_subtype_bound_closure0_test: Fail |
| 30 function_subtype_bound_closure1_test: Fail |
| 31 function_subtype_bound_closure2_test: Fail |
| 32 function_subtype_bound_closure5_test: Fail |
| 33 function_subtype_bound_closure6_test: Fail |
| 34 function_subtype_bound_closure7_test: Fail |
| 35 function_subtype_cast0_test: Fail |
| 36 function_subtype_cast1_test: Fail |
| 37 function_subtype_cast2_test: Fail |
| 38 function_subtype_cast3_test: Fail |
| 39 function_subtype_factory0_test: Fail |
| 40 function_subtype_local1_test: Fail |
| 41 function_subtype_local5_test: Fail |
| 42 function_subtype_not0_test: Fail |
| 43 function_subtype_not1_test: Fail |
| 44 function_subtype_not2_test: Fail |
| 45 function_subtype_not3_test: Fail |
| 46 function_subtype_top_level1_test: Fail |
| 47 function_type_alias2_test: Fail |
| 48 function_type_alias3_test: Fail |
| 49 function_type_alias4_test: Fail |
| 50 function_type_alias6_test: Fail |
| 51 function_type_alias_test: Fail |
| 52 method_override_test: Fail |
| 53 |
| 54 # Issue 11467 |
| 55 function_subtype0_test: Fail |
| 56 function_subtype1_test: Fail |
| 57 function_subtype_bound_closure3_test: Fail |
| 58 function_subtype_bound_closure4_test: Fail |
| 59 function_subtype_call0_test: Fail |
| 60 function_subtype_call1_test: Fail |
| 61 function_subtype_call2_test: Fail |
| 62 function_subtype_inline0_test: Fail |
| 63 function_subtype_local0_test: Fail |
| 64 function_subtype_local2_test: Fail |
| 65 function_subtype_local3_test: Fail |
| 66 function_subtype_local4_test: Fail |
| 67 function_subtype_named1_test: Fail |
| 68 function_subtype_named2_test: Fail |
| 69 function_subtype_optional1_test: Fail |
| 70 function_subtype_optional2_test: Fail |
| 71 function_subtype_top_level0_test: Fail |
| 72 |
| 27 [ $compiler == none ] | 73 [ $compiler == none ] |
| 28 extends_test: Fail # issue 11023 | 74 extends_test: Fail # issue 11023 |
| 29 mixin_super_constructor_test: Fail | 75 mixin_super_constructor_test: Fail |
| 30 mixin_super_constructor2_test: Fail | 76 mixin_super_constructor2_test: Fail |
| 31 mixin_super_constructor_default_test: Fail | 77 mixin_super_constructor_default_test: Fail |
| 32 mixin_super_constructor_named_test: Fail | 78 mixin_super_constructor_named_test: Fail |
| 33 mixin_super_constructor_positionals_test: Fail | 79 mixin_super_constructor_positionals_test: Fail |
| 34 mixin_super_constructor_multiple_test: Fail | 80 mixin_super_constructor_multiple_test: Fail |
| 35 closure_type_variable_test: Fail # Type variable used as expression (dartbug.com
/6282) | 81 closure_type_variable_test: Fail # Type variable used as expression (dartbug.com
/6282) |
| 36 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 | 82 built_in_identifier_prefix_test: Fail # http://dartbug.com/6970 |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 deopt_smi_op_test: Fail | 600 deopt_smi_op_test: Fail |
| 555 gc_test: Crash | 601 gc_test: Crash |
| 556 invocation_mirror_test: Fail | 602 invocation_mirror_test: Fail |
| 557 load_to_load_forwarding_vm_test: Fail | 603 load_to_load_forwarding_vm_test: Fail |
| 558 named_parameters_with_conversions_test: Pass, Crash | 604 named_parameters_with_conversions_test: Pass, Crash |
| 559 positive_bit_operations_test: Pass, Fail, Crash | 605 positive_bit_operations_test: Pass, Fail, Crash |
| 560 left_shift_test: Pass, Fail | 606 left_shift_test: Pass, Fail |
| 561 large_implicit_getter_test: Crash, Pass | 607 large_implicit_getter_test: Crash, Pass |
| 562 stack_overflow_test: Crash, Pass | 608 stack_overflow_test: Crash, Pass |
| 563 stack_overflow_stacktrace_test: Crash, Pass | 609 stack_overflow_stacktrace_test: Crash, Pass |
| OLD | NEW |