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 built_in_identifier_prefix_test: Fail # Issue 6970 | 9 built_in_identifier_prefix_test: Fail # Issue 6970 |
10 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating | 10 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest
igating |
(...skipping 19 matching lines...) Expand all Loading... |
30 # Non-contractive types are not supported in the vm. | 30 # Non-contractive types are not supported in the vm. |
31 cyclic_type_test/02: Fail, OK | 31 cyclic_type_test/02: Fail, OK |
32 cyclic_type_test/04: Fail, OK | 32 cyclic_type_test/04: Fail, OK |
33 cyclic_type2_test: Fail, OK | 33 cyclic_type2_test: Fail, OK |
34 least_upper_bound_expansive_test/*: Fail, OK | 34 least_upper_bound_expansive_test/*: Fail, OK |
35 | 35 |
36 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 36 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
37 async_star_cancel_while_paused_test: RuntimeError | 37 async_star_cancel_while_paused_test: RuntimeError |
38 async_star_await_pauses_test: Skip # Times out. Issue 23996 | 38 async_star_await_pauses_test: Skip # Times out. Issue 23996 |
39 | 39 |
| 40 library_env_test: RuntimeError |
| 41 |
40 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 42 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
| 43 |
41 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 44 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
42 unicode_bom_test: Fail # Issue 16067 | 45 unicode_bom_test: Fail # Issue 16067 |
43 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 46 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
44 try_catch_optimized1_test: Skip # Srdjan investigating | 47 try_catch_optimized1_test: Skip # Srdjan investigating |
45 | 48 |
46 [ ($compiler == none || $compiler == precompiler) && $checked ] | 49 [ ($compiler == none || $compiler == precompiler) && $checked ] |
47 type_variable_bounds4_test/01: Fail # Issue 14006 | 50 type_variable_bounds4_test/01: Fail # Issue 14006 |
48 | 51 |
49 [ ($compiler == none || $compiler == precompiler) ] | 52 [ ($compiler == none || $compiler == precompiler) ] |
50 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 53 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot | 145 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot |
143 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. | 146 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. |
144 vm/type_cast_vm_test: RuntimeError # Line number mismatch. | 147 vm/type_cast_vm_test: RuntimeError # Line number mismatch. |
145 stack_trace_test: Fail # Issue 24783 - inlined frames missing | 148 stack_trace_test: Fail # Issue 24783 - inlined frames missing |
146 | 149 |
147 [ $runtime == dart_precompiled ] | 150 [ $runtime == dart_precompiled ] |
148 ct_const2_test: Pass, Crash # Incompatible flag --compile_all | 151 ct_const2_test: Pass, Crash # Incompatible flag --compile_all |
149 hello_dart_test: Pass, Crash # Incompatible flag --compile_all | 152 hello_dart_test: Pass, Crash # Incompatible flag --compile_all |
150 | 153 |
151 implicit_closure_test: Pass, Crash # --use_slow_path | 154 implicit_closure_test: Pass, Crash # --use_slow_path |
OLD | NEW |