Chromium Code Reviews| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 | 53 |
| 54 [ $compiler == none || $compiler == dart2dart] | 54 [ $compiler == none || $compiler == dart2dart] |
| 55 # Non-contractive types are not supported in the vm. | 55 # Non-contractive types are not supported in the vm. |
| 56 cyclic_type_test/02: Fail, OK | 56 cyclic_type_test/02: Fail, OK |
| 57 cyclic_type_test/04: Fail, OK | 57 cyclic_type_test/04: Fail, OK |
| 58 cyclic_type2_test: Fail, OK | 58 cyclic_type2_test: Fail, OK |
| 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 compile_time_constant_c_test: Fail # Issue | |
|
Paul Berry
2014/09/18 20:39:25
Need an issue number
Brian Wilkerson
2014/09/18 20:48:43
Done.
| |
| 64 compile_time_constant12_test: Fail # Issue | |
| 63 | 65 |
| 64 unicode_bom_test: Fail # Issue 16067 | 66 unicode_bom_test: Fail # Issue 16067 |
| 65 | 67 |
| 66 [ $compiler == none && $checked ] | 68 [ $compiler == none && $checked ] |
| 67 type_variable_bounds4_test/01: Fail # Issue 14006 | 69 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 68 | 70 |
| 69 [ $compiler == none && $unchecked ] | 71 [ $compiler == none && $unchecked ] |
| 70 # Only checked mode reports an error on type assignment | 72 # Only checked mode reports an error on type assignment |
| 71 # problems in compile time constants. | 73 # problems in compile time constants. |
| 72 type_check_const_function_typedef2_test/00: Fail, OK | 74 type_check_const_function_typedef2_test/00: Fail, OK |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 113 | 115 |
| 114 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] | 116 [ $compiler == none && $runtime == vm && $arch == mips && $mode == debug ] |
| 115 stack_overflow_test: Skip # Crashes. Issue 17440. | 117 stack_overflow_test: Skip # Crashes. Issue 17440. |
| 116 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. | 118 stack_overflow_stacktrace_test: Skip # Crashes. Issue 17440. |
| 117 large_class_declaration_test: Skip # Times out. Issue 20352 | 119 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 118 | 120 |
| 119 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co ntentShellOnAndroid) && $mode == debug ] | 121 [ $compiler == none && ($runtime == dartium || $runtime == drt || $runtime == Co ntentShellOnAndroid) && $mode == debug ] |
| 120 large_class_declaration_test: Skip # Times out. Issue 20352 | 122 large_class_declaration_test: Skip # Times out. Issue 20352 |
| 121 | 123 |
| 122 | 124 |
| OLD | NEW |