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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 assertion_initializer_const_function_test/01: CompileTimeError | 356 assertion_initializer_const_function_test/01: CompileTimeError |
357 assertion_initializer_test: CompileTimeError | 357 assertion_initializer_test: CompileTimeError |
358 | 358 |
359 # dartdevc doesn't support assertions in initializers. | 359 # dartdevc doesn't support assertions in initializers. |
360 [ $compiler == dartdevc ] | 360 [ $compiler == dartdevc ] |
361 assertion_initializer_test: CompileTimeError | 361 assertion_initializer_test: CompileTimeError |
362 assertion_initializer_const_error2_test/none: CompileTimeError | 362 assertion_initializer_const_error2_test/none: CompileTimeError |
363 assertion_initializer_const_function_test/01: CompileTimeError | 363 assertion_initializer_const_function_test/01: CompileTimeError |
364 | 364 |
365 [ $compiler == dartdevc && $runtime != none ] | 365 [ $compiler == dartdevc && $runtime != none ] |
366 assert_message_test: RuntimeError # Looks like bug in dartdevc codegen. | |
367 bit_operations_test/01: RuntimeError # No bigints on web. | 366 bit_operations_test/01: RuntimeError # No bigints on web. |
368 bit_operations_test/02: RuntimeError # No bigints on web. | 367 bit_operations_test/02: RuntimeError # No bigints on web. |
369 bit_operations_test/03: RuntimeError # No bigints on web. | 368 bit_operations_test/03: RuntimeError # No bigints on web. |
370 bit_operations_test/04: RuntimeError # No bigints on web. | 369 bit_operations_test/04: RuntimeError # No bigints on web. |
371 bit_operations_test/none: RuntimeError # No bigints on web. | 370 bit_operations_test/none: RuntimeError # No bigints on web. |
372 branch_canonicalization_test: RuntimeError # Issue 29920 | 371 branch_canonicalization_test: RuntimeError # Issue 29920 |
373 | 372 |
374 [ $compiler == dartk && $runtime == vm ] | 373 [ $compiler == dartk && $runtime == vm ] |
375 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError | 374 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError |
376 | 375 |
(...skipping 579 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 |