| 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 && $runtime != none ] | 88 [ $compiler == none ] |
| 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 | 89 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 93 | 90 |
| 94 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] | 91 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] |
| 95 dynamic_prefix_core_test/none: Fail # Issue 12478 | 92 dynamic_prefix_core_test/none: Fail # Issue 12478 |
| 96 export_ambiguous_main_negative_test: Fail # Issue 14763 | 93 export_ambiguous_main_negative_test: Fail # Issue 14763 |
| 97 | 94 |
| 98 [ $compiler == dart2js && $runtime == ie9 ] | 95 [ $compiler == dart2js && $runtime == ie9 ] |
| 99 lazy_static3_test: Fail # Issue 13469 | 96 lazy_static3_test: Fail # Issue 13469 |
| 100 | 97 |
| 101 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) && $unchecked ] | 98 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) && $unchecked ] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 126 closure7_test: Skip # Times out. Issue 19127 | 123 closure7_test: Skip # Times out. Issue 19127 |
| 127 abstract_exact_selector_test/01: Skip # Times out. Issue 19127 | 124 abstract_exact_selector_test/01: Skip # Times out. Issue 19127 |
| 128 function_subtype_local1_test: Skip # Times out. Issue 19127 | 125 function_subtype_local1_test: Skip # Times out. Issue 19127 |
| 129 | 126 |
| 130 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] | 127 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] |
| 131 generic_instanceof3_test: Pass, Crash # Issue 17440. | 128 generic_instanceof3_test: Pass, Crash # Issue 17440. |
| 132 | 129 |
| 133 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] | 130 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] |
| 134 stack_overflow_test: Skip # Crashes. Issue 17440. | 131 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 135 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 132 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| OLD | NEW |