OLD | NEW |
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, 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 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. | 5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. |
6 # Analyzer does, but only when "--strong" is used. | 6 # Analyzer does, but only when "--strong" is used. |
7 [ $runtime == vm || $runtime == dart_precompiled || ($compiler == dart2analyzer
&& ! $strong && ! $checked) ] | 7 [ $runtime == vm || $runtime == dart_precompiled || ($compiler == dart2analyzer
&& ! $strong && ! $checked) ] |
8 abstract_beats_arguments_test: MissingCompileTimeError | 8 abstract_beats_arguments_test: MissingCompileTimeError |
9 abstract_exact_selector_test/01: MissingCompileTimeError | 9 abstract_exact_selector_test/01: MissingCompileTimeError |
10 abstract_factory_constructor_test/00: MissingCompileTimeError | 10 abstract_factory_constructor_test/00: MissingCompileTimeError |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 allocate_test: Crash | 235 allocate_test: Crash |
236 allocation_sinking_inlining_test: Crash | 236 allocation_sinking_inlining_test: Crash |
237 and_operation_on_non_integer_operand_test: Crash | 237 and_operation_on_non_integer_operand_test: Crash |
238 arithmetic_canonicalization_test: Crash | 238 arithmetic_canonicalization_test: Crash |
239 arithmetic_smi_overflow_test: Crash | 239 arithmetic_smi_overflow_test: Crash |
240 | 240 |
241 [ $compiler == dartdevc && $runtime != none ] | 241 [ $compiler == dartdevc && $runtime != none ] |
242 async_star_cancel_while_paused_test: RuntimeError # Issue 29920 | 242 async_star_cancel_while_paused_test: RuntimeError # Issue 29920 |
243 async_star_pause_test: RuntimeError | 243 async_star_pause_test: RuntimeError |
244 function_type/*: RuntimeError # Issue 28988 | 244 function_type/*: RuntimeError # Issue 28988 |
245 async_backwards_compatibility_2_test: RuntimeError # Issue 29920 | |
246 | 245 |
247 [ $compiler == dart2js && $dart2js_with_kernel && $use_sdk ] | 246 [ $compiler == dart2js && $dart2js_with_kernel && $use_sdk ] |
248 *: Skip # Issue 29626 | 247 *: Skip # Issue 29626 |
249 | 248 |
250 [ $compiler == dart2js && ! $checked && ! $enable_asserts && ! $dart2js_with_ker
nel && $runtime != none ] | 249 [ $compiler == dart2js && ! $checked && ! $enable_asserts && ! $dart2js_with_ker
nel && $runtime != none ] |
251 assertion_test: RuntimeError # Issue 12748 | 250 assertion_test: RuntimeError # Issue 12748 |
252 | 251 |
253 [ ! $checked ] | 252 [ ! $checked ] |
254 function_type/*: Skip # Needs checked mode. | 253 function_type/*: Skip # Needs checked mode. |
255 | 254 |
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 built_in_identifier_prefix_test: CompileTimeError | 955 built_in_identifier_prefix_test: CompileTimeError |
957 | 956 |
958 [ $runtime == vm ] | 957 [ $runtime == vm ] |
959 built_in_identifier_prefix_test: CompileTimeError | 958 built_in_identifier_prefix_test: CompileTimeError |
960 | 959 |
961 [ $compiler == dart2js ] | 960 [ $compiler == dart2js ] |
962 built_in_identifier_prefix_test: CompileTimeError | 961 built_in_identifier_prefix_test: CompileTimeError |
963 | 962 |
964 [ $compiler == dartdevc ] | 963 [ $compiler == dartdevc ] |
965 built_in_identifier_prefix_test: CompileTimeError | 964 built_in_identifier_prefix_test: CompileTimeError |
OLD | NEW |