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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries | 289 deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries |
290 deferred_static_seperate_test: Crash # Requires deferred libraries | 290 deferred_static_seperate_test: Crash # Requires deferred libraries |
291 deferred_super_dependency_test: Pass, Crash # Requires deferred libraries | 291 deferred_super_dependency_test: Pass, Crash # Requires deferred libraries |
292 deferred_type_dependency_test: Crash # Requires deferred libraries | 292 deferred_type_dependency_test: Crash # Requires deferred libraries |
293 issue_1751477_test: Crash # Requires deferred libraries | 293 issue_1751477_test: Crash # Requires deferred libraries |
294 regress_23408_test: Crash # Requires deferred libraries | 294 regress_23408_test: Crash # Requires deferred libraries |
295 regress_22443_test: Crash # Requires deferred libraries | 295 regress_22443_test: Crash # Requires deferred libraries |
296 tearoff_basic_test: Crash # Requires deferred libraries | 296 tearoff_basic_test: Crash # Requires deferred libraries |
297 conditional_import_test: Crash # Requires deferred libraries | 297 conditional_import_test: Crash # Requires deferred libraries |
298 conditional_import_string_test: Crash # Requires deferred libraries | 298 conditional_import_string_test: Crash # Requires deferred libraries |
| 299 override_field_method1_negative_test: Pass, Crash # Issue 27835 |
| 300 override_field_method2_negative_test: Pass, Crash # Issue 27835 |
| 301 override_field_method4_negative_test: Pass, Crash # Issue 27835 |
| 302 override_field_method5_negative_test: Pass, Crash # Issue 27835 |
299 | 303 |
300 [$runtime != vm || $compiler != none] | 304 [$runtime != vm || $compiler != none] |
301 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 305 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
302 | 306 |
303 [$runtime == vm && $compiler == none && $unchecked] | 307 [$runtime == vm && $compiler == none && $unchecked] |
304 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 308 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
305 assert_initializer_test/none: pass | 309 assert_initializer_test/none: pass |
306 | 310 |
307 [$runtime == vm && $compiler == none && $checked] | 311 [$runtime == vm && $compiler == none && $checked] |
308 # The VM doesn't enforce that potentially const expressions are actually | 312 # The VM doesn't enforce that potentially const expressions are actually |
309 # const expressions when the constructor is called with `const`. | 313 # const expressions when the constructor is called with `const`. |
310 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 314 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
311 | 315 |
312 [$runtime == vm && $compiler == none] | 316 [$runtime == vm && $compiler == none] |
313 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 317 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
OLD | NEW |