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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 library_env_test/has_no_io_support: RuntimeError, OK | 247 library_env_test/has_no_io_support: RuntimeError, OK |
248 | 248 |
249 [ ($compiler == none || $compiler == dart2app || $compiler == dart2appjit) && $n
oopt == false && $mode != product ] | 249 [ ($compiler == none || $compiler == dart2app || $compiler == dart2appjit) && $n
oopt == false && $mode != product ] |
250 # The following tests are supposed to fail. | 250 # The following tests are supposed to fail. |
251 library_env_test/has_no_mirror_support: RuntimeError, OK | 251 library_env_test/has_no_mirror_support: RuntimeError, OK |
252 | 252 |
253 [ $noopt || $compiler == precompiler || $mode == product ] | 253 [ $noopt || $compiler == precompiler || $mode == product ] |
254 # The following tests are supposed to fail. | 254 # The following tests are supposed to fail. |
255 library_env_test/has_mirror_support: RuntimeError, OK | 255 library_env_test/has_mirror_support: RuntimeError, OK |
256 | 256 |
257 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android
] | |
258 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 | |
259 issue23244_test: Skip # Issue #26373 | |
260 | |
261 [ $hot_reload || $hot_reload_rollback ] | 257 [ $hot_reload || $hot_reload_rollback ] |
262 static_closure_identical_test: Pass, Fail # Closure identity | 258 static_closure_identical_test: Pass, Fail # Closure identity |
263 cha_deopt1_test: Crash # Requires deferred libraries | 259 cha_deopt1_test: Crash # Requires deferred libraries |
264 cha_deopt2_test: Crash # Requires deferred libraries | 260 cha_deopt2_test: Crash # Requires deferred libraries |
265 cha_deopt3_test: Crash # Requires deferred libraries | 261 cha_deopt3_test: Crash # Requires deferred libraries |
266 deferred_call_empty_before_load_test: Crash # Requires deferred libraries | 262 deferred_call_empty_before_load_test: Crash # Requires deferred libraries |
267 deferred_closurize_load_library_test: Crash # Requires deferred libraries | 263 deferred_closurize_load_library_test: Crash # Requires deferred libraries |
268 deferred_constant_list_test: Crash # Requires deferred libraries | 264 deferred_constant_list_test: Crash # Requires deferred libraries |
269 deferred_constraints_constants_test: Crash # Requires deferred libraries | 265 deferred_constraints_constants_test: Crash # Requires deferred libraries |
270 deferred_constraints_type_annotation_test: Crash # Requires deferred libraries | 266 deferred_constraints_type_annotation_test: Crash # Requires deferred libraries |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 298 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
303 assert_initializer_test/none: pass | 299 assert_initializer_test/none: pass |
304 | 300 |
305 [$runtime == vm && $compiler == none && $checked] | 301 [$runtime == vm && $compiler == none && $checked] |
306 # The VM doesn't enforce that potentially const expressions are actually | 302 # The VM doesn't enforce that potentially const expressions are actually |
307 # const expressions when the constructor is called with `const`. | 303 # const expressions when the constructor is called with `const`. |
308 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 304 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
309 | 305 |
310 [$runtime == vm && $compiler == none] | 306 [$runtime == vm && $compiler == none] |
311 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 307 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
OLD | NEW |