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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 assertion_initializer_const_function_test/01: CompileTimeError | 352 assertion_initializer_const_function_test/01: CompileTimeError |
353 assertion_initializer_test: CompileTimeError | 353 assertion_initializer_test: CompileTimeError |
354 | 354 |
355 # dartdevc doesn't support assertions in initializers. | 355 # dartdevc doesn't support assertions in initializers. |
356 [ $compiler == dartdevc ] | 356 [ $compiler == dartdevc ] |
357 assertion_initializer_test: CompileTimeError | 357 assertion_initializer_test: CompileTimeError |
358 assertion_initializer_const_error2_test/none: CompileTimeError | 358 assertion_initializer_const_error2_test/none: CompileTimeError |
359 assertion_initializer_const_function_test/01: CompileTimeError | 359 assertion_initializer_const_function_test/01: CompileTimeError |
360 | 360 |
361 [ $compiler == dartdevc && $runtime != none ] | 361 [ $compiler == dartdevc && $runtime != none ] |
362 assert_message_test: RuntimeError # Looks like bug in dartdevc codegen. | |
363 bit_operations_test/01: RuntimeError # No bigints on web. | 362 bit_operations_test/01: RuntimeError # No bigints on web. |
364 bit_operations_test/02: RuntimeError # No bigints on web. | 363 bit_operations_test/02: RuntimeError # No bigints on web. |
365 bit_operations_test/03: RuntimeError # No bigints on web. | 364 bit_operations_test/03: RuntimeError # No bigints on web. |
366 bit_operations_test/04: RuntimeError # No bigints on web. | 365 bit_operations_test/04: RuntimeError # No bigints on web. |
367 bit_operations_test/none: RuntimeError # No bigints on web. | 366 bit_operations_test/none: RuntimeError # No bigints on web. |
368 branch_canonicalization_test: RuntimeError # Issue 29920 | 367 branch_canonicalization_test: RuntimeError # Issue 29920 |
369 | 368 |
370 [ $compiler == dartk && $runtime == vm ] | 369 [ $compiler == dartk && $runtime == vm ] |
371 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError | 370 arithmetic2_test: RuntimeError # Throws CastError instead of TypeError |
372 assertion_test: RuntimeError | 371 assertion_test: RuntimeError |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 built_in_identifier_prefix_test: CompileTimeError | 699 built_in_identifier_prefix_test: CompileTimeError |
701 | 700 |
702 [ $runtime == vm ] | 701 [ $runtime == vm ] |
703 built_in_identifier_prefix_test: CompileTimeError | 702 built_in_identifier_prefix_test: CompileTimeError |
704 | 703 |
705 [ $compiler == dart2js ] | 704 [ $compiler == dart2js ] |
706 built_in_identifier_prefix_test: CompileTimeError | 705 built_in_identifier_prefix_test: CompileTimeError |
707 | 706 |
708 [ $compiler == dartdevc ] | 707 [ $compiler == dartdevc ] |
709 built_in_identifier_prefix_test: CompileTimeError | 708 built_in_identifier_prefix_test: CompileTimeError |
OLD | NEW |