| 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 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 | |
| 42 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 40 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
| 43 | 41 |
| 44 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 42 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 45 unicode_bom_test: Fail # Issue 16067 | 43 unicode_bom_test: Fail # Issue 16067 |
| 46 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 44 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
| 47 try_catch_optimized1_test: Skip # Srdjan investigating | 45 try_catch_optimized1_test: Skip # Srdjan investigating |
| 48 | 46 |
| 49 [ ($compiler == none || $compiler == precompiler) && $checked ] | 47 [ ($compiler == none || $compiler == precompiler) && $checked ] |
| 50 type_variable_bounds4_test/01: Fail # Issue 14006 | 48 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 51 | 49 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 143 |
| 146 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot | 144 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot |
| 147 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. | 145 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. |
| 148 vm/type_cast_vm_test: RuntimeError # Line number mismatch. | 146 vm/type_cast_vm_test: RuntimeError # Line number mismatch. |
| 149 | 147 |
| 150 [ $runtime == dart_precompiled ] | 148 [ $runtime == dart_precompiled ] |
| 151 ct_const2_test: Pass, Crash # Incompatible flag --compile_all | 149 ct_const2_test: Pass, Crash # Incompatible flag --compile_all |
| 152 hello_dart_test: Pass, Crash # Incompatible flag --compile_all | 150 hello_dart_test: Pass, Crash # Incompatible flag --compile_all |
| 153 | 151 |
| 154 implicit_closure_test: Pass, Crash # --use_slow_path | 152 implicit_closure_test: Pass, Crash # --use_slow_path |
| 153 |
| 154 [ $compiler == none && $browser ] |
| 155 # The following tests are supposed to fail. |
| 156 library_env_test/has_io_support: RuntimeError, OK |
| 157 library_env_test/has_no_html_support: RuntimeError, OK |
| 158 library_env_test/has_no_mirror_support: RuntimeError, OK |
| 159 |
| 160 [ $compiler == none && $browser != true ] |
| 161 # The following tests are supposed to fail. |
| 162 library_env_test/has_html_support: RuntimeError, OK |
| 163 library_env_test/has_no_io_support: RuntimeError, OK |
| 164 library_env_test/has_no_mirror_support: RuntimeError, OK |
| OLD | NEW |