| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 234 |
| 235 [ ($compiler == none || $compiler == app_jit) && $mode != product ] | 235 [ ($compiler == none || $compiler == app_jit) && $mode != product ] |
| 236 # The following tests are supposed to fail. | 236 # The following tests are supposed to fail. |
| 237 library_env_test/has_no_mirror_support: RuntimeError, OK | 237 library_env_test/has_no_mirror_support: RuntimeError, OK |
| 238 | 238 |
| 239 [ $runtime == dart_precompiled || $mode == product ] | 239 [ $runtime == dart_precompiled || $mode == product ] |
| 240 # The following tests are supposed to fail. | 240 # The following tests are supposed to fail. |
| 241 library_env_test/has_mirror_support: RuntimeError, OK | 241 library_env_test/has_mirror_support: RuntimeError, OK |
| 242 | 242 |
| 243 [ $hot_reload || $hot_reload_rollback ] | 243 [ $hot_reload || $hot_reload_rollback ] |
| 244 issue21159_test: Pass, Fail # Issue 29094 | 244 issue21159_test: Pass, Crash # Issue 29094 |
| 245 issue_22780_test/01: Pass, Fail # Issue 29094 | 245 issue_22780_test/01: Pass, Crash # Issue 29094 |
| 246 static_closure_identical_test: Pass, Fail # Closure identity | 246 static_closure_identical_test: Pass, Fail # Closure identity |
| 247 cha_deopt1_test: Crash # Requires deferred libraries | 247 cha_deopt1_test: Crash # Requires deferred libraries |
| 248 cha_deopt2_test: Crash # Requires deferred libraries | 248 cha_deopt2_test: Crash # Requires deferred libraries |
| 249 cha_deopt3_test: Crash # Requires deferred libraries | 249 cha_deopt3_test: Crash # Requires deferred libraries |
| 250 deferred_call_empty_before_load_test: Crash # Requires deferred libraries | 250 deferred_call_empty_before_load_test: Crash # Requires deferred libraries |
| 251 deferred_closurize_load_library_test: Crash # Requires deferred libraries | 251 deferred_closurize_load_library_test: Crash # Requires deferred libraries |
| 252 deferred_constant_list_test: Crash # Requires deferred libraries | 252 deferred_constant_list_test: Crash # Requires deferred libraries |
| 253 deferred_constraints_constants_test: Crash # Requires deferred libraries | 253 deferred_constraints_constants_test: Crash # Requires deferred libraries |
| 254 deferred_constraints_type_annotation_test: Crash # Requires deferred libraries | 254 deferred_constraints_type_annotation_test: Crash # Requires deferred libraries |
| 255 deferred_function_type_test: Crash # Requires deferred libraries | 255 deferred_function_type_test: Crash # Requires deferred libraries |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 # TODO(zra): Investigate | 311 # TODO(zra): Investigate |
| 312 vm/regress_28325_test: RuntimeError | 312 vm/regress_28325_test: RuntimeError |
| 313 closure_cycles_test: Pass, Crash | 313 closure_cycles_test: Pass, Crash |
| 314 | 314 |
| 315 [$compiler == dart2analyzer] | 315 [$compiler == dart2analyzer] |
| 316 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 316 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
| 317 config_import_corelib_test: StaticWarning, OK | 317 config_import_corelib_test: StaticWarning, OK |
| 318 | 318 |
| 319 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dartium || $run
time == drt) && ($compiler == none || $compiler == app_jit || $compiler == preco
mpiler) ] | 319 [ ($runtime == vm || $runtime == dart_precompiled || $runtime == dartium || $run
time == drt) && ($compiler == none || $compiler == app_jit || $compiler == preco
mpiler) ] |
| 320 await_for_test: RuntimeError # issue 28974 | 320 await_for_test: RuntimeError # issue 28974 |
| OLD | NEW |