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