| 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 || $compiler == dart2app || $co
mpiler == dart2appjit) ] | 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co
mpiler == dart2appjit) ] |
| 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 generic_methods_type_expression_test: RuntimeError # Issue 25869 | 10 generic_methods_type_expression_test: RuntimeError # Issue 25869 |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 library_env_test/has_no_io_support: RuntimeError, OK | 232 library_env_test/has_no_io_support: RuntimeError, OK |
| 233 | 233 |
| 234 [ ($compiler == none || $compiler == dart2app || $compiler == dart2appjit) && $n
oopt == false && $mode != product ] | 234 [ ($compiler == none || $compiler == dart2app || $compiler == dart2appjit) && $n
oopt == false && $mode != product ] |
| 235 # The following tests are supposed to fail. | 235 # The following tests are supposed to fail. |
| 236 library_env_test/has_no_mirror_support: RuntimeError, OK | 236 library_env_test/has_no_mirror_support: RuntimeError, OK |
| 237 | 237 |
| 238 [ $noopt || $compiler == precompiler || $mode == product ] | 238 [ $noopt || $compiler == precompiler || $mode == product ] |
| 239 # The following tests are supposed to fail. | 239 # The following tests are supposed to fail. |
| 240 library_env_test/has_mirror_support: RuntimeError, OK | 240 library_env_test/has_mirror_support: RuntimeError, OK |
| 241 | 241 |
| 242 [ $arch == simdbc || $arch == simdbc64 ] | |
| 243 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256 | |
| 244 # fields in an object. | |
| 245 large_class_declaration_test: Skip | |
| 246 | |
| 247 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | 242 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] |
| 248 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 | 243 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 |
| 249 issue23244_test: Skip # Issue #26373 | 244 issue23244_test: Skip # Issue #26373 |
| 250 | 245 |
| 251 [ $hot_reload || $hot_reload_rollback ] | 246 [ $hot_reload || $hot_reload_rollback ] |
| 252 static_closure_identical_test: Pass, Fail # Closure identity | 247 static_closure_identical_test: Pass, Fail # Closure identity |
| 253 cha_deopt1_test: Crash # Requires deferred libraries | 248 cha_deopt1_test: Crash # Requires deferred libraries |
| 254 cha_deopt2_test: Crash # Requires deferred libraries | 249 cha_deopt2_test: Crash # Requires deferred libraries |
| 255 cha_deopt3_test: Crash # Requires deferred libraries | 250 cha_deopt3_test: Crash # Requires deferred libraries |
| 256 deferred_call_empty_before_load_test: Crash # Requires deferred libraries | 251 deferred_call_empty_before_load_test: Crash # Requires deferred libraries |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 287 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 293 assert_initializer_test/none: pass | 288 assert_initializer_test/none: pass |
| 294 | 289 |
| 295 [$runtime == vm && $compiler == none && $checked] | 290 [$runtime == vm && $compiler == none && $checked] |
| 296 # The VM doesn't enforce that potentially const expressions are actually | 291 # The VM doesn't enforce that potentially const expressions are actually |
| 297 # const expressions when the constructor is called with `const`. | 292 # const expressions when the constructor is called with `const`. |
| 298 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 293 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 299 | 294 |
| 300 [$runtime == vm && $compiler == none] | 295 [$runtime == vm && $compiler == none] |
| 301 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 296 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |