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 | 10 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 named_parameters_type_test/02: Fail # Issue 14651. | 80 named_parameters_type_test/02: Fail # Issue 14651. |
81 named_parameters_type_test/03: Fail # Issue 14651. | 81 named_parameters_type_test/03: Fail # Issue 14651. |
82 positional_parameters_type_test/01: Fail # Issue 14651. | 82 positional_parameters_type_test/01: Fail # Issue 14651. |
83 positional_parameters_type_test/02: Fail # Issue 14651. | 83 positional_parameters_type_test/02: Fail # Issue 14651. |
84 type_checks_in_factory_method_test: Fail # Issue 14651. | 84 type_checks_in_factory_method_test: Fail # Issue 14651. |
85 vm/type_vm_test: Fail # Issue 14651. | 85 vm/type_vm_test: Fail # Issue 14651. |
86 | 86 |
87 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] | 87 [ $compiler == none && ($runtime == dartium || $runtime == drt) ] |
88 issue13474_test: Pass, Fail # Issue 14651. | 88 issue13474_test: Pass, Fail # Issue 14651. |
89 config_import_test: Fail # Issue 14651. | 89 config_import_test: Fail # Issue 14651. |
| 90 generic_methods_generic_function_parameter_test: RuntimeError # Issue 25869 |
90 vm/optimized_guarded_field_isolates_test: RuntimeError, OK # Uses Isolate.spawn
. | 91 vm/optimized_guarded_field_isolates_test: RuntimeError, OK # Uses Isolate.spawn
. |
91 main_test/01: Fail # Issue 20028 | 92 main_test/01: Fail # Issue 20028 |
92 main_test/02: Fail # Issue 20028 | 93 main_test/02: Fail # Issue 20028 |
93 main_test/04: Fail # Issue 20028 | 94 main_test/04: Fail # Issue 20028 |
94 main_test/05: Fail # Issue 20028 | 95 main_test/05: Fail # Issue 20028 |
95 main_test/21: Fail # Issue 20028 | 96 main_test/21: Fail # Issue 20028 |
96 main_test/42: Fail # Issue 20028 | 97 main_test/42: Fail # Issue 20028 |
97 mirror_in_static_init_test: Fail # Issue 22071 | 98 mirror_in_static_init_test: Fail # Issue 22071 |
98 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. | 99 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. |
99 | 100 |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 287 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
287 | 288 |
288 [$runtime == vm && $compiler == none && $unchecked] | 289 [$runtime == vm && $compiler == none && $unchecked] |
289 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 290 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
290 assert_initializer_test/none: pass | 291 assert_initializer_test/none: pass |
291 | 292 |
292 [$runtime == vm && $compiler == none && $checked] | 293 [$runtime == vm && $compiler == none && $checked] |
293 # The VM doesn't enforce that potentially const expressions are actually | 294 # The VM doesn't enforce that potentially const expressions are actually |
294 # const expressions when the constructor is called with `const`. | 295 # const expressions when the constructor is called with `const`. |
295 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 296 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
OLD | NEW |