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 || $compiler == precompiler) ] | 8 [ ($compiler == none || $compiler == precompiler) ] |
9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating | 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 async_star_cancel_while_paused_test: RuntimeError | 42 async_star_cancel_while_paused_test: RuntimeError |
43 async_star_await_pauses_test: Skip # Times out. Issue 23996 | 43 async_star_await_pauses_test: Skip # Times out. Issue 23996 |
44 | 44 |
45 library_env_test: RuntimeError | 45 library_env_test: RuntimeError |
46 | 46 |
47 accessor_conflict_export2_test: RuntimeError # Issue 25625 | 47 accessor_conflict_export2_test: RuntimeError # Issue 25625 |
48 accessor_conflict_import2_test: RuntimeError # Issue 25625 | 48 accessor_conflict_import2_test: RuntimeError # Issue 25625 |
49 accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25625 | 49 accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25625 |
50 accessor_conflict_import_prefixed_test: RuntimeError # Issue 25625 | 50 accessor_conflict_import_prefixed_test: RuntimeError # Issue 25625 |
51 | 51 |
| 52 issue_25671a_test/01: RuntimeError # Issue 25671 |
| 53 issue_25671b_test/01: RuntimeError # Issue 25671 |
| 54 |
52 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 55 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
53 | 56 |
54 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 57 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
55 unicode_bom_test: Fail # Issue 16067 | 58 unicode_bom_test: Fail # Issue 16067 |
56 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 59 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
57 try_catch_optimized1_test: Skip # Srdjan investigating | 60 try_catch_optimized1_test: Skip # Srdjan investigating |
58 | 61 |
59 [ ($compiler == none || $compiler == precompiler) && $checked ] | 62 [ ($compiler == none || $compiler == precompiler) && $checked ] |
60 type_variable_bounds4_test/01: Fail # Issue 14006 | 63 type_variable_bounds4_test/01: Fail # Issue 14006 |
61 | 64 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 158 |
156 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot | 159 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot |
157 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. | 160 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. |
158 vm/type_cast_vm_test: RuntimeError # Line number mismatch. | 161 vm/type_cast_vm_test: RuntimeError # Line number mismatch. |
159 | 162 |
160 [ $runtime == dart_precompiled ] | 163 [ $runtime == dart_precompiled ] |
161 ct_const2_test: Pass, Crash # Incompatible flag --compile_all | 164 ct_const2_test: Pass, Crash # Incompatible flag --compile_all |
162 hello_dart_test: Pass, Crash # Incompatible flag --compile_all | 165 hello_dart_test: Pass, Crash # Incompatible flag --compile_all |
163 | 166 |
164 implicit_closure_test: Pass, Crash # --use_slow_path | 167 implicit_closure_test: Pass, Crash # --use_slow_path |
OLD | NEW |