| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 [ $compiler == none || $compiler == dart2dart] | 57 [ $compiler == none || $compiler == dart2dart] |
| 58 # Non-contractive types are not supported in the vm. | 58 # Non-contractive types are not supported in the vm. |
| 59 cyclic_type_test/02: Fail, OK | 59 cyclic_type_test/02: Fail, OK |
| 60 cyclic_type_test/04: Fail, OK | 60 cyclic_type_test/04: Fail, OK |
| 61 cyclic_type2_test: Fail, OK | 61 cyclic_type2_test: Fail, OK |
| 62 least_upper_bound_expansive_test/*: Fail, OK | 62 least_upper_bound_expansive_test/*: Fail, OK |
| 63 | 63 |
| 64 [ $compiler == none && $runtime == vm ] | 64 [ $compiler == none && $runtime == vm ] |
| 65 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 65 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 66 | 66 large_class_declaration_test: Skip # Issue 21343 |
| 67 unicode_bom_test: Fail # Issue 16067 | 67 unicode_bom_test: Fail # Issue 16067 |
| 68 | 68 |
| 69 [ $compiler == none && $checked ] | 69 [ $compiler == none && $checked ] |
| 70 type_variable_bounds4_test/01: Fail # Issue 14006 | 70 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 71 | 71 |
| 72 [ $compiler == none ] | 72 [ $compiler == none ] |
| 73 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 73 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 74 | 74 |
| 75 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] | 75 [ $compiler == none && ($runtime == vm || $runtime == drt || $runtime == dartium
|| $runtime == ContentShellOnAndroid) ] |
| 76 dynamic_prefix_core_test/none: Fail # Issue 12478 | 76 dynamic_prefix_core_test/none: Fail # Issue 12478 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 stack_overflow_test: Skip # Crashes. Issue 17440. | 114 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 115 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 115 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| 116 large_class_declaration_test: Skip # Times out. Issue 20352 | 116 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 117 | 117 |
| 118 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co
ntentShellOnAndroid) && $mode == debug ] | 118 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co
ntentShellOnAndroid) && $mode == debug ] |
| 119 large_class_declaration_test: Skip # Times out. Issue 20352 | 119 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 120 | 120 |
| 121 [ $compiler == none && $runtime == ContentShellOnAndroid ] | 121 [ $compiler == none && $runtime == ContentShellOnAndroid ] |
| 122 gc_test: Skip # Times out flakily. Issue 20956 | 122 gc_test: Skip # Times out flakily. Issue 20956 |
| 123 | 123 |
| OLD | NEW |