| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 unicode_bom_test: Fail # Issue 16067 | 78 unicode_bom_test: Fail # Issue 16067 |
| 79 | 79 |
| 80 [ $compiler == none && $checked ] | 80 [ $compiler == none && $checked ] |
| 81 type_variable_bounds4_test/01: Fail # Issue 14006 | 81 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 82 | 82 |
| 83 [ $compiler == none && $unchecked ] | 83 [ $compiler == none && $unchecked ] |
| 84 # Only checked mode reports an error on type assignment | 84 # Only checked mode reports an error on type assignment |
| 85 # problems in compile time constants. | 85 # problems in compile time constants. |
| 86 type_check_const_function_typedef2_test/00: Fail, OK | 86 type_check_const_function_typedef2_test/00: Fail, OK |
| 87 | 87 |
| 88 [ ($compiler == none || $compiler == dart2dart) && $runtime != none ] | 88 [ $compiler == none && $runtime != none ] |
| 89 dynamic_prefix_core_test/01: Fail # Issue 12478 | 89 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 90 |
| 91 [ $compiler == dart2dart && $runtime != none && $builder_tag != new_backend ] |
| 92 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 90 | 93 |
| 91 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] | 94 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] |
| 92 dynamic_prefix_core_test/none: Fail # Issue 12478 | 95 dynamic_prefix_core_test/none: Fail # Issue 12478 |
| 93 export_ambiguous_main_negative_test: Fail # Issue 14763 | 96 export_ambiguous_main_negative_test: Fail # Issue 14763 |
| 94 | 97 |
| 95 [ $compiler == dart2js && $runtime == ie9 ] | 98 [ $compiler == dart2js && $runtime == ie9 ] |
| 96 lazy_static3_test: Fail # Issue 13469 | 99 lazy_static3_test: Fail # Issue 13469 |
| 97 | 100 |
| 98 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) && $unchecked ] | 101 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) && $unchecked ] |
| 99 assertion_test: Fail # Issue 13719: Please triage this failure. | 102 assertion_test: Fail # Issue 13719: Please triage this failure. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 124 closure7_test: Skip # Times out. Issue 19127 | 127 closure7_test: Skip # Times out. Issue 19127 |
| 125 abstract_exact_selector_test/01: Skip # Times out. Issue 19127 | 128 abstract_exact_selector_test/01: Skip # Times out. Issue 19127 |
| 126 function_subtype_local1_test: Skip # Times out. Issue 19127 | 129 function_subtype_local1_test: Skip # Times out. Issue 19127 |
| 127 | 130 |
| 128 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] | 131 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] |
| 129 generic_instanceof3_test: Pass, Crash # Issue 17440. | 132 generic_instanceof3_test: Pass, Crash # Issue 17440. |
| 130 | 133 |
| 131 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] | 134 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] |
| 132 stack_overflow_test: Skip # Crashes. Issue 17440. | 135 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 133 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 136 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| OLD | NEW |