| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 least_upper_bound_expansive_test/*: Fail, OK | 59 least_upper_bound_expansive_test/*: Fail, OK |
| 60 | 60 |
| 61 [ $compiler == none && $runtime == vm ] | 61 [ $compiler == none && $runtime == vm ] |
| 62 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 62 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 63 | 63 |
| 64 unicode_bom_test: Fail # Issue 16067 | 64 unicode_bom_test: Fail # Issue 16067 |
| 65 | 65 |
| 66 [ $compiler == none && $checked ] | 66 [ $compiler == none && $checked ] |
| 67 type_variable_bounds4_test/01: Fail # Issue 14006 | 67 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 68 | 68 |
| 69 [ $compiler == none && $unchecked ] | |
| 70 # Only checked mode reports an error on type assignment | |
| 71 # problems in compile time constants. | |
| 72 type_check_const_function_typedef2_test/00: Fail, OK | |
| 73 | |
| 74 [ $compiler == none ] | 69 [ $compiler == none ] |
| 75 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 70 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 76 | 71 |
| 77 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] | 72 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] |
| 78 dynamic_prefix_core_test/none: Fail # Issue 12478 | 73 dynamic_prefix_core_test/none: Fail # Issue 12478 |
| 79 export_ambiguous_main_negative_test: Fail # Issue 14763 | 74 export_ambiguous_main_negative_test: Fail # Issue 14763 |
| 80 | 75 |
| 81 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) && $unchecked ] | 76 [ $compiler == none && ($runtime == dartium || $runtime == ContentShellOnAndroid
) && $unchecked ] |
| 82 assertion_test: Fail # Issue 13719: Please triage this failure. | 77 assertion_test: Fail # Issue 13719: Please triage this failure. |
| 83 generic_test: Fail # Issue 13719: Please triage this failure. | 78 generic_test: Fail # Issue 13719: Please triage this failure. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 stack_overflow_test: Skip # Crashes. Issue 17440. | 111 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 117 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 112 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| 118 large_class_declaration_test: Skip # Times out. Issue 20352 | 113 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 119 | 114 |
| 120 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co
ntentShellOnAndroid) && $mode == debug ] | 115 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co
ntentShellOnAndroid) && $mode == debug ] |
| 121 large_class_declaration_test: Skip # Times out. Issue 20352 | 116 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 122 | 117 |
| 123 [ $compiler == none && $runtime == ContentShellOnAndroid ] | 118 [ $compiler == none && $runtime == ContentShellOnAndroid ] |
| 124 gc_test: Skip # Times out flakily. Issue 20956 | 119 gc_test: Skip # Times out flakily. Issue 20956 |
| 125 | 120 |
| OLD | NEW |