| 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 [ $strong ] | 8 [ $strong ] |
| 9 *: SkipByDesign # tests/language_strong has the strong mode versions of these te
sts. | 9 *: SkipByDesign # tests/language_strong has the strong mode versions of these te
sts. |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 # once the same is true for analyzer (#24478) and dart2js (#23773) | 69 # once the same is true for analyzer (#24478) and dart2js (#23773) |
| 70 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 | 70 mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 |
| 71 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 | 71 mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 |
| 72 | 72 |
| 73 # These bugs refer currently ongoing language discussions. | 73 # These bugs refer currently ongoing language discussions. |
| 74 constructor5_test: Fail # Issue 6422 | 74 constructor5_test: Fail # Issue 6422 |
| 75 constructor6_test: Fail # Issue 6422 | 75 constructor6_test: Fail # Issue 6422 |
| 76 | 76 |
| 77 generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 | 77 generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 |
| 78 | 78 |
| 79 bound_closure_equality_test: Skip # Issue 30211 | |
| 80 | |
| 81 # Failures related to super call in ctor initializer list | 79 # Failures related to super call in ctor initializer list |
| 82 super_test: Fail, OK | 80 super_test: Fail, OK |
| 83 final_field_initialization_order_test: Fail, OK | 81 final_field_initialization_order_test: Fail, OK |
| 84 field_initialization_order_test: Fail, OK | 82 field_initialization_order_test: Fail, OK |
| 85 example_constructor_test: Fail, OK | 83 example_constructor_test: Fail, OK |
| 86 constructor3_test: Fail, OK | 84 constructor3_test: Fail, OK |
| 87 constructor2_test: Fail, OK | 85 constructor2_test: Fail, OK |
| 88 | 86 |
| 89 # Regular bugs which should be fixed. | 87 # Regular bugs which should be fixed. |
| 90 duplicate_export_negative_test: Fail # Issue 6134 | 88 duplicate_export_negative_test: Fail # Issue 6134 |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 vm/regress_27201_test: Fail # Flutter Issue 9110 | 572 vm/regress_27201_test: Fail # Flutter Issue 9110 |
| 575 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 | 573 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 |
| 576 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 | 574 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 |
| 577 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 | 575 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 |
| 578 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 | 576 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 |
| 579 asyncstar_yield_test: Skip # Flutter Issue 9110 | 577 asyncstar_yield_test: Skip # Flutter Issue 9110 |
| 580 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 578 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| 581 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 579 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 582 await_for_test: Skip # Flutter Issue 9110 | 580 await_for_test: Skip # Flutter Issue 9110 |
| 583 await_for_cancel_test: Skip # Flutter Issue 9110 | 581 await_for_cancel_test: Skip # Flutter Issue 9110 |
| 582 |
| 583 |
| OLD | NEW |