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