| 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 | |
| 55 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] | 52 [ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime
== dart_precompiled) ] |
| 56 | 53 |
| 57 class_keyword_test/02: MissingCompileTimeError # Issue 13627 | 54 class_keyword_test/02: MissingCompileTimeError # Issue 13627 |
| 58 unicode_bom_test: Fail # Issue 16067 | 55 unicode_bom_test: Fail # Issue 16067 |
| 59 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. | 56 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. |
| 60 try_catch_optimized1_test: Skip # Srdjan investigating | 57 try_catch_optimized1_test: Skip # Srdjan investigating |
| 58 issue_25671a_test/01: Skip # RuntimeError (Issue 25671, Issue 25737) |
| 59 issue_25671b_test/01: Skip # RuntimeError (Issue 25671, Issue 25737) |
| 61 | 60 |
| 62 [ ($compiler == none || $compiler == precompiler) && $checked ] | 61 [ ($compiler == none || $compiler == precompiler) && $checked ] |
| 63 type_variable_bounds4_test/01: Fail # Issue 14006 | 62 type_variable_bounds4_test/01: Fail # Issue 14006 |
| 64 | 63 |
| 65 [ ($compiler == none || $compiler == precompiler) ] | 64 [ ($compiler == none || $compiler == precompiler) ] |
| 66 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 65 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
| 67 multiline_strings_test: Fail # Issue 23020 | 66 multiline_strings_test: Fail # Issue 23020 |
| 68 | 67 |
| 69 [ ($compiler == none || $compiler == precompiler) && (($runtime == vm || $runtim
e == dart_precompiled) || $runtime == drt || $runtime == dartium || $runtime ==
ContentShellOnAndroid) ] | 68 [ ($compiler == none || $compiler == precompiler) && (($runtime == vm || $runtim
e == dart_precompiled) || $runtime == drt || $runtime == dartium || $runtime ==
ContentShellOnAndroid) ] |
| 70 dynamic_prefix_core_test/none: Fail # Issue 12478 | 69 dynamic_prefix_core_test/none: Fail # Issue 12478 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 | 157 |
| 159 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot | 158 deopt_inlined_function_lazy_test: Pass, Crash # Incompatible flag: --deoptimize-
alot |
| 160 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. | 159 tearoff_basic_test: RuntimeError, Crash # Conflicting flag. |
| 161 vm/type_cast_vm_test: RuntimeError # Line number mismatch. | 160 vm/type_cast_vm_test: RuntimeError # Line number mismatch. |
| 162 | 161 |
| 163 [ $runtime == dart_precompiled ] | 162 [ $runtime == dart_precompiled ] |
| 164 ct_const2_test: Pass, Crash # Incompatible flag --compile_all | 163 ct_const2_test: Pass, Crash # Incompatible flag --compile_all |
| 165 hello_dart_test: Pass, Crash # Incompatible flag --compile_all | 164 hello_dart_test: Pass, Crash # Incompatible flag --compile_all |
| 166 | 165 |
| 167 implicit_closure_test: Pass, Crash # --use_slow_path | 166 implicit_closure_test: Pass, Crash # --use_slow_path |
| OLD | NEW |