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 == app_jit ] | 8 [ $compiler == none || $compiler == app_jit ] |
9 null_is_bottom_test/22: RuntimeError # Issue 28025 | 9 null_is_bottom_test/22: RuntimeError # Issue 28025 |
10 null_is_bottom_test/34: RuntimeError # Issue 28025 | 10 null_is_bottom_test/34: RuntimeError # Issue 28025 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 cyclic_type_test/04: Fail, OK | 57 cyclic_type_test/04: Fail, OK |
58 cyclic_type2_test: Fail, OK | 58 cyclic_type2_test: Fail, OK |
59 least_upper_bound_expansive_test/*: Fail, OK | 59 least_upper_bound_expansive_test/*: Fail, OK |
60 | 60 |
61 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. | 61 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti
me-errs. |
62 async_star_cancel_while_paused_test: RuntimeError | 62 async_star_cancel_while_paused_test: RuntimeError |
63 | 63 |
64 # Fails because `as T` is an error rather than being treated like `as dynamic`. | 64 # Fails because `as T` is an error rather than being treated like `as dynamic`. |
65 generic_methods_type_expression_test: RuntimeError # Issue 27460 | 65 generic_methods_type_expression_test: RuntimeError # Issue 27460 |
66 | 66 |
| 67 generic_function_typedef_test: Fail # Issue 27966 |
| 68 generalized_function_type_test: Fail # Issue 27966 |
| 69 |
67 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] | 70 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch
ecked ] |
68 # These generic functions tests pass for the wrong reason in checked mode, | 71 # These generic functions tests pass for the wrong reason in checked mode, |
69 # because the parsed type parameters are mapped to dynamic type. | 72 # because the parsed type parameters are mapped to dynamic type. |
70 generic_methods_function_type_test: Pass # Issue 25869 | 73 generic_methods_function_type_test: Pass # Issue 25869 |
71 generic_methods_test: Pass # Issue 25869 | 74 generic_methods_test: Pass # Issue 25869 |
72 generic_methods_new_test: Pass # Issue 25869 | 75 generic_methods_new_test: Pass # Issue 25869 |
73 generic_local_functions_test: Pass # Issue 25869 | 76 generic_local_functions_test: Pass # Issue 25869 |
74 generic_functions_test: Pass # Issue 25869 | 77 generic_functions_test: Pass # Issue 25869 |
75 generic_methods_generic_function_parameter_test: Pass # Issue 25869 | 78 generic_methods_generic_function_parameter_test: Pass # Issue 25869 |
76 null_is_bottom_test/03: RuntimeError # Issue 28025 | 79 null_is_bottom_test/03: RuntimeError # Issue 28025 |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 # The VM doesn't enforce that potentially const expressions are actually | 337 # The VM doesn't enforce that potentially const expressions are actually |
335 # const expressions when the constructor is called with `const`. | 338 # const expressions when the constructor is called with `const`. |
336 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 339 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
337 | 340 |
338 [$runtime == vm && $compiler == none] | 341 [$runtime == vm && $compiler == none] |
339 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 | 342 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
340 | 343 |
341 [$compiler == dart2analyzer] | 344 [$compiler == dart2analyzer] |
342 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. | 345 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. |
343 config_import_corelib_test: StaticWarning, OK | 346 config_import_corelib_test: StaticWarning, OK |
OLD | NEW |