| 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 deferred_no_prefix_old_syntax_test/01: Fail | 78 deferred_no_prefix_old_syntax_test/01: Fail |
| 79 deferred_duplicate_prefix1_old_syntax_test/01: Fail | 79 deferred_duplicate_prefix1_old_syntax_test/01: Fail |
| 80 deferred_duplicate_prefix2_old_syntax_test/01: Fail | 80 deferred_duplicate_prefix2_old_syntax_test/01: Fail |
| 81 deferred_duplicate_prefix3_old_syntax_test/01: Fail | 81 deferred_duplicate_prefix3_old_syntax_test/01: Fail |
| 82 | 82 |
| 83 [ $compiler == none && $runtime == vm ] | 83 [ $compiler == none && $runtime == vm ] |
| 84 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 84 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 85 | 85 |
| 86 unicode_bom_test: Fail # Issue 16067 | 86 unicode_bom_test: Fail # Issue 16067 |
| 87 | 87 |
| 88 [ ($compiler == none || $compiler == dart2dart) && $mode == debug ] | |
| 89 issue20476_test: Crash # Issue 20476 | |
| 90 | |
| 91 [ $compiler == none && $checked ] | 88 [ $compiler == none && $checked ] |
| 92 type_variable_bounds4_test/01: Fail # Issue 14006 | 89 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 93 | 90 |
| 94 [ $compiler == none && $unchecked ] | 91 [ $compiler == none && $unchecked ] |
| 95 # Only checked mode reports an error on type assignment | 92 # Only checked mode reports an error on type assignment |
| 96 # problems in compile time constants. | 93 # problems in compile time constants. |
| 97 type_check_const_function_typedef2_test/00: Fail, OK | 94 type_check_const_function_typedef2_test/00: Fail, OK |
| 98 | 95 |
| 99 [ $compiler == none ] | 96 [ $compiler == none ] |
| 100 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 97 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 135 |
| 139 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] | 136 [ $compiler == none && $runtime == vm && $arch == mips && $checked ] |
| 140 generic_instanceof3_test: Pass, Crash # Issue 17440. | 137 generic_instanceof3_test: Pass, Crash # Issue 17440. |
| 141 | 138 |
| 142 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] | 139 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] |
| 143 stack_overflow_test: Skip # Crashes. Issue 17440. | 140 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 144 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 141 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| 145 large_class_declaration_test: Skip # Times out. Issue 20352 | 142 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 146 | 143 |
| 147 | 144 |
| OLD | NEW |