| 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 [ $compiler == none ] | 8 [ $compiler == none ] |
| 9 mixin_super_constructor_named_test: Fail # Issue 12631 | 9 mixin_super_constructor_named_test: Fail # Issue 12631 |
| 10 mixin_super_constructor_positionals_test: Fail # Issue 12631 | 10 mixin_super_constructor_positionals_test: Fail # Issue 12631 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 deferred_constraints_constants_test/default_argument2: Fail | 29 deferred_constraints_constants_test/default_argument2: Fail |
| 30 deferred_constraints_constants_test/constructor1: Fail | 30 deferred_constraints_constants_test/constructor1: Fail |
| 31 deferred_constraints_constants_test/constructor2: Fail | 31 deferred_constraints_constants_test/constructor2: Fail |
| 32 | 32 |
| 33 [ ($compiler == none || $compiler == dart2dart)] | 33 [ ($compiler == none || $compiler == dart2dart)] |
| 34 # The vm does not support deferred loading. | 34 # The vm does not support deferred loading. |
| 35 deferred_constraints_type_annotation_test/as_operation: Fail | 35 deferred_constraints_type_annotation_test/as_operation: Fail |
| 36 deferred_constraints_type_annotation_test/is_check: Fail | 36 deferred_constraints_type_annotation_test/is_check: Fail |
| 37 deferred_constraints_type_annotation_test/catch_check: Fail | 37 deferred_constraints_type_annotation_test/catch_check: Fail |
| 38 deferred_constraints_type_annotation_test/new_before_load: Fail | 38 deferred_constraints_type_annotation_test/new_before_load: Fail |
| 39 cyclic_type_test: Fail, OK # Issue 17629 |
| 39 | 40 |
| 40 [ ($compiler == none || $compiler == dart2dart) && $checked ] | 41 [ ($compiler == none || $compiler == dart2dart) && $checked ] |
| 41 # The vm and dart2dart do not support deferred loading. | 42 # The vm and dart2dart do not support deferred loading. |
| 42 deferred_constraints_type_annotation_test/type_annotation1: Fail | 43 deferred_constraints_type_annotation_test/type_annotation1: Fail |
| 43 deferred_constraints_type_annotation_test/type_annotation_generic1: Fail | 44 deferred_constraints_type_annotation_test/type_annotation_generic1: Fail |
| 44 deferred_constraints_type_annotation_test/type_annotation_generic4: Fail | 45 deferred_constraints_type_annotation_test/type_annotation_generic4: Fail |
| 45 | 46 |
| 46 [ $compiler == none || $compiler == dartanalyzer || $compiler == dart2analyzer ] | 47 [ $compiler == none || $compiler == dartanalyzer || $compiler == dart2analyzer ] |
| 47 # The vm and analyzer do not support deferred loading. | 48 # The vm and analyzer do not support deferred loading. |
| 48 deferred_no_prefix_test/01: Fail | 49 deferred_no_prefix_test/01: Fail |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 vm/optimized_guarded_field_isolates_test: Fail # Issue 13921. | 114 vm/optimized_guarded_field_isolates_test: Fail # Issue 13921. |
| 114 override_inheritance_mixed_test/08: Fail # Issue 16137 | 115 override_inheritance_mixed_test/08: Fail # Issue 16137 |
| 115 override_inheritance_mixed_test/09: Fail # Issue 16137 | 116 override_inheritance_mixed_test/09: Fail # Issue 16137 |
| 116 | 117 |
| 117 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] | 118 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] |
| 118 generic_instanceof3_test: Pass, Crash # Issue 17440. | 119 generic_instanceof3_test: Pass, Crash # Issue 17440. |
| 119 | 120 |
| 120 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] | 121 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] |
| 121 stack_overflow_test: Skip # Crashes. Issue 17440. | 122 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 122 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 123 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| OLD | NEW |