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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 # Regular bugs which should be fixed. | 34 # Regular bugs which should be fixed. |
35 duplicate_export_negative_test: Fail # Issue 6134 | 35 duplicate_export_negative_test: Fail # Issue 6134 |
36 | 36 |
37 # Non-contractive types are not supported in the vm. | 37 # Non-contractive types are not supported in the vm. |
38 cyclic_type_test/02: Fail, OK | 38 cyclic_type_test/02: Fail, OK |
39 cyclic_type_test/04: Fail, OK | 39 cyclic_type_test/04: Fail, OK |
40 cyclic_type2_test: Fail, OK | 40 cyclic_type2_test: Fail, OK |
41 least_upper_bound_expansive_test/*: Fail, OK | 41 least_upper_bound_expansive_test/*: Fail, OK |
42 | 42 |
43 | |
44 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] | 43 [ $compiler == none || $compiler == precompiler || $compiler == app_jit ] |
45 | |
46 enum_test: RuntimeError # Issue 28341 | |
47 | |
48 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 | 44 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 |
49 multiline_strings_test: Fail # Issue 23020 | 45 multiline_strings_test: Fail # Issue 23020 |
50 | 46 |
51 deferred_redirecting_factory_test: Fail # Issue 23408 | 47 deferred_redirecting_factory_test: Fail # Issue 23408 |
52 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 | 48 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 |
53 | 49 |
54 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 50 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
55 | 51 |
56 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | 52 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] |
57 # These generic functions tests pass for the wrong reason in checked mode, | 53 # These generic functions tests pass for the wrong reason in checked mode, |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 | 303 |
308 [$runtime == vm && $compiler == none] | 304 [$runtime == vm && $compiler == none] |
309 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 305 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
310 | 306 |
311 [$runtime == vm && $compiler == none && $system == windows && $arch == ia32] | 307 [$runtime == vm && $compiler == none && $system == windows && $arch == ia32] |
312 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 | 308 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 |
313 | 309 |
314 [$compiler == dart2analyzer] | 310 [$compiler == dart2analyzer] |
315 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 311 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
316 config_import_corelib_test: StaticWarning, OK | 312 config_import_corelib_test: StaticWarning, OK |
OLD | NEW |