| 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 # These test entries will be valid for vm/dartium (with and without kernel). | 8 # These test entries will be valid for vm/dartium (with and without kernel). |
| 9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] | 9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime ==
dart_precompiled ] |
| 10 async_star_cancel_while_paused_test: RuntimeError | 10 async_star_cancel_while_paused_test: RuntimeError |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 146 |
| 147 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] | 147 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] |
| 148 issue23244_test: Fail # Issue 23244 | 148 issue23244_test: Fail # Issue 23244 |
| 149 | 149 |
| 150 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($
runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime ==
dartium) && $arch == ia32 ] | 150 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($
runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime ==
dartium) && $arch == ia32 ] |
| 151 vm/regress_24517_test: Pass, Fail # Issue 24517. | 151 vm/regress_24517_test: Pass, Fail # Issue 24517. |
| 152 | 152 |
| 153 [ $compiler == precompiler && $runtime == dart_precompiled ] | 153 [ $compiler == precompiler && $runtime == dart_precompiled ] |
| 154 vm/regress_27671_test: Skip # Unsupported | 154 vm/regress_27671_test: Skip # Unsupported |
| 155 | 155 |
| 156 [ $runtime == dart_precompiled ] | |
| 157 # Stacktraces in precompilation omit inlined frames. | |
| 158 full_stacktrace1_test: Pass, RuntimeError | |
| 159 full_stacktrace2_test: Pass, RuntimeError | |
| 160 full_stacktrace3_test: Pass, RuntimeError | |
| 161 stack_trace_test: Pass, RuntimeError | |
| 162 stacktrace_rethrow_error_test: Pass, RuntimeError | |
| 163 stacktrace_rethrow_nonerror_test: Pass, RuntimeError | |
| 164 stacktrace_test: Pass, RuntimeError | |
| 165 vm/regress_28325_test: RuntimeError # Missing source position in AOT. | |
| 166 | |
| 167 | |
| 168 [ $runtime == dart_precompiled || $mode == product ] | 156 [ $runtime == dart_precompiled || $mode == product ] |
| 169 # Imports dart:mirrors | 157 # Imports dart:mirrors |
| 170 const_evaluation_test: SkipByDesign | 158 const_evaluation_test: SkipByDesign |
| 171 deferred_constraints_constants_test: SkipByDesign | 159 deferred_constraints_constants_test: SkipByDesign |
| 172 enum_mirror_test: SkipByDesign | 160 enum_mirror_test: SkipByDesign |
| 173 field_increment_bailout_test: SkipByDesign | 161 field_increment_bailout_test: SkipByDesign |
| 174 instance_creation_in_function_annotation_test: SkipByDesign | 162 instance_creation_in_function_annotation_test: SkipByDesign |
| 175 invocation_mirror2_test: SkipByDesign | 163 invocation_mirror2_test: SkipByDesign |
| 176 invocation_mirror_invoke_on2_test: SkipByDesign | 164 invocation_mirror_invoke_on2_test: SkipByDesign |
| 177 invocation_mirror_invoke_on_test: SkipByDesign | 165 invocation_mirror_invoke_on_test: SkipByDesign |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 async_await_test: RuntimeError | 305 async_await_test: RuntimeError |
| 318 async_star_test: RuntimeError | 306 async_star_test: RuntimeError |
| 319 vm/causal_async_exception_stack_test: RuntimeError | 307 vm/causal_async_exception_stack_test: RuntimeError |
| 320 # TODO(zra): Investigate | 308 # TODO(zra): Investigate |
| 321 vm/regress_28325_test: RuntimeError | 309 vm/regress_28325_test: RuntimeError |
| 322 closure_cycles_test: Pass, Crash | 310 closure_cycles_test: Pass, Crash |
| 323 | 311 |
| 324 [$compiler == dart2analyzer] | 312 [$compiler == dart2analyzer] |
| 325 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 313 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 326 config_import_corelib_test: StaticWarning, OK | 314 config_import_corelib_test: StaticWarning, OK |
| OLD | NEW |