mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
[tests] Avoid use of $strong
because it is always true now
* Remove all `&& $strong` clauses. * Delete all sections that include a `&& !$strong` clause. Change-Id: Idd32cf5623793e3f98e3e998025bac079d88e2f1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/102223 Commit-Queue: Nicholas Shahan <nshahan@google.com> Reviewed-by: Bob Nystrom <rnystrom@google.com> Reviewed-by: William Hesse <whesse@google.com>
This commit is contained in:
parent
8209013be3
commit
86c7165969
16 changed files with 467 additions and 1948 deletions
|
@ -1174,7 +1174,7 @@ LibTest/typed_data/Uint8ClampedList/last_A01_t02: RuntimeError
|
|||
LibTest/typed_data/Uint8List/first_A01_t02: RuntimeError
|
||||
LibTest/typed_data/Uint8List/last_A01_t02: RuntimeError
|
||||
|
||||
[ $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $compiler == dartk || $compiler == dartkb ]
|
||||
Language/Expressions/Additive_Expressions/syntax_t01: RuntimeError
|
||||
Language/Expressions/Assignment/null_aware_assignment_static_type_t01: RuntimeError
|
||||
Language/Expressions/Function_Invocation/async_generator_invokation_t08: Fail
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
[ $compiler == dart2js ]
|
||||
23264_test: RuntimeError
|
||||
bound_closure_interceptor_type_test: RuntimeError
|
||||
bounds_check4a_test: RuntimeError # Issue 32741
|
||||
bounds_check4b_test: RuntimeError # Issue 32741
|
||||
class_test: Fail
|
||||
|
@ -126,21 +127,6 @@ to_string_test: Fail # Issue 7179.
|
|||
type_literal_test: Fail, OK # Tests expected output of Type.toString().
|
||||
typevariable_typedef_test: Fail, OK # Tests expected output of Type.toString().
|
||||
|
||||
[ $compiler == dart2js && $strong ]
|
||||
bound_closure_interceptor_type_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && !$strong ]
|
||||
extract_type_arguments_1_test: RuntimeError # Uses function type variables
|
||||
extract_type_arguments_2_test: RuntimeError # Uses function type variables
|
||||
extract_type_arguments_3_test: RuntimeError # Uses function type variables
|
||||
generic_method_dynamic_is_test: RuntimeError # Test against function type variables is only supported in strong mode.
|
||||
generic_method_dynamic_type_test: SkipByDesign # Requires strong mode support for function type variables.
|
||||
generic_method_static_is_test: RuntimeError # Test against function type variables is only supported in strong mode.
|
||||
int_index_test/01: MissingCompileTimeError
|
||||
int_index_test/02: MissingCompileTimeError
|
||||
local_signature_test: RuntimeError # Test against function type variables is only supported in strong mode.
|
||||
switch_test/00: MissingCompileTimeError
|
||||
|
||||
[ $compiler == dart2js && ($runtime == chrome || $runtime == chromeOnAndroid || $runtime == ff || $runtime == safari) ]
|
||||
isolate2_test/01: Fail # Issue 14458.
|
||||
|
||||
|
|
|
@ -26,7 +26,9 @@ double_ceil_test/int64: CompileTimeError, OK # Error if web int literal cannot b
|
|||
double_floor_test/int64: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
double_round_test/int64: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
double_truncate_test/int64: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
error_stack_trace1_test: RuntimeError # Issue 12399
|
||||
growable_list_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
growable_list_test: RuntimeError # Concurrent modifications test always runs
|
||||
int_ceil_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
int_ceil_to_double_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
int_floor_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
|
@ -43,7 +45,12 @@ int_truncate_test: CompileTimeError, OK # Error if web int literal cannot be rep
|
|||
int_truncate_to_double_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
integer_arith_vm_test/modPow: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
integer_arith_vm_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
integer_to_radix_string_test/01: RuntimeError
|
||||
integer_to_radix_string_test/02: RuntimeError
|
||||
integer_to_radix_string_test/none: RuntimeError
|
||||
integer_to_string_test/01: RuntimeError
|
||||
integer_to_string_test/01: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
iterable_return_type_test/02: RuntimeError # Dart2js does not support Uint64*.
|
||||
list_unmodifiable_test: Pass, RuntimeError # Issue 28712
|
||||
num_parse_test/01: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
num_parse_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
|
@ -88,12 +95,6 @@ string_trimlr_test/unicode63: RuntimeError # Uses Unicode 6.2.0 or earlier.
|
|||
symbol_reserved_word_test/04: MissingCompileTimeError
|
||||
symbol_reserved_word_test/07: MissingCompileTimeError
|
||||
|
||||
[ !$strong ]
|
||||
cast_test: SkipByDesign # Uses generic method parameters.
|
||||
iterable_where_type_test: SkipByDesign
|
||||
map_test: SkipByDesign
|
||||
regress_33166_test: SkipByDesign # Not a Dart 1 test
|
||||
|
||||
[ $arch == simarmv5te && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
int_parse_radix_test/*: Pass, Slow
|
||||
integer_parsed_mul_div_vm_test: Pass, Slow
|
||||
|
@ -111,8 +112,9 @@ dynamic_nosuchmethod_test: SkipByDesign # Expects names in NSM
|
|||
error_stack_trace1_test: SkipByDesign # Expects unobfuscated stack trace
|
||||
|
||||
# All static_tests have expected compile-time errors.
|
||||
[ $compiler != app_jitk && $compiler != dart2analyzer && $compiler != dart2js && $compiler != dartdevc && $compiler != dartdevk && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $compiler != fasta && $strong ]
|
||||
[ $compiler != app_jitk && $compiler != dart2analyzer && $compiler != dart2js && $compiler != dartdevc && $compiler != dartdevk && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $compiler != fasta ]
|
||||
core_runtime_types_static_test: MissingCompileTimeError
|
||||
iterable_mapping_test/01: MissingCompileTimeError
|
||||
splay_tree_test/01: MissingCompileTimeError
|
||||
splay_tree_test/02: MissingCompileTimeError
|
||||
string_base_vm_static_test: MissingCompileTimeError
|
||||
|
@ -122,9 +124,6 @@ string_static_test: MissingCompileTimeError
|
|||
[ $compiler != app_jitk && $compiler != dart2js && $compiler != dartdevc && $compiler != dartdevk && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $compiler != fasta ]
|
||||
iterable_element_at_test/static: MissingCompileTimeError
|
||||
|
||||
[ $compiler != app_jitk && $compiler != dart2js && $compiler != dartdevc && $compiler != dartdevk && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $compiler != fasta && ($compiler != dart2analyzer || !$strong) ]
|
||||
iterable_mapping_test/01: MissingCompileTimeError
|
||||
|
||||
[ $compiler != app_jitk && $compiler != dart2js && $compiler != dartdevc && $compiler != dartdevk && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $runtime != none ]
|
||||
map_keys2_test: RuntimeError # needs Dart 2 is checks
|
||||
|
||||
|
@ -141,22 +140,16 @@ uri_base_test: RuntimeError # D8 uses a custom uri scheme for Uri.base
|
|||
[ $compiler == dart2js && $runtime != none ]
|
||||
regexp/pcre_test: Pass, Slow # Issue 21593
|
||||
|
||||
[ $compiler == dart2js && $runtime != none && !$strong ]
|
||||
collection_of_test: RuntimeError # Strong mode test
|
||||
map_of_test: RuntimeError # Strong mode test
|
||||
|
||||
[ $compiler == dart2js && $runtime == safari ]
|
||||
regexp/lookahead_test: RuntimeError
|
||||
regexp/no-extensions_test: RuntimeError
|
||||
regexp/overflow_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == safari && $strong ]
|
||||
regexp/no-extensions_test: Pass, RuntimeError
|
||||
regexp/overflow_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && !$browser ]
|
||||
package_resource_test: RuntimeError # Issue 26842
|
||||
|
||||
[ $compiler == dart2js && $checked && $strong ]
|
||||
[ $compiler == dart2js && $checked ]
|
||||
apply3_test: RuntimeError
|
||||
collection_of_test: RuntimeError
|
||||
error_stack_trace1_test: RuntimeError # Issue 12399
|
||||
|
@ -188,7 +181,7 @@ list_test/none: Crash # Unsupported operation: Unsupported type parameter type n
|
|||
map_test: Crash # tests/corelib_2/map_test.dart:903:7: Internal problem: Unhandled Null in installDefaultConstructor.
|
||||
symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') should be allowed.
|
||||
|
||||
[ $compiler == dart2js && $minified && $strong ]
|
||||
[ $compiler == dart2js && $minified ]
|
||||
dynamic_nosuchmethod_test: RuntimeError
|
||||
error_stack_trace1_test: RuntimeError # Issue 12399
|
||||
growable_list_test: RuntimeError # Concurrent modifications test always runs
|
||||
|
@ -208,30 +201,10 @@ symbol_operator_test/03: RuntimeError
|
|||
symbol_operator_test/none: RuntimeError
|
||||
symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') should be allowed.
|
||||
|
||||
[ $compiler == dart2js && $strong ]
|
||||
error_stack_trace1_test: RuntimeError # Issue 12399
|
||||
growable_list_test: RuntimeError # Concurrent modifications test always runs
|
||||
integer_to_radix_string_test/01: RuntimeError
|
||||
integer_to_radix_string_test/02: RuntimeError
|
||||
integer_to_radix_string_test/none: RuntimeError
|
||||
integer_to_string_test/01: RuntimeError
|
||||
iterable_return_type_test/02: RuntimeError # Dart2js does not support Uint64*.
|
||||
|
||||
[ $compiler == dart2js && !$strong ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ $compiler == dartdevc && $runtime != none ]
|
||||
compare_to2_test: CompileTimeError # invalid test
|
||||
symbol_operator_test: RuntimeError # Issue 29921
|
||||
|
||||
[ $compiler != dartdevc && $compiler != dartdevk && $checked && !$strong ]
|
||||
core_runtime_types_static_test: MissingCompileTimeError
|
||||
splay_tree_test/01: MissingCompileTimeError
|
||||
splay_tree_test/02: MissingCompileTimeError
|
||||
string_base_vm_static_test: MissingCompileTimeError
|
||||
string_replace_static_test: MissingCompileTimeError
|
||||
string_static_test: MissingCompileTimeError
|
||||
|
||||
[ $compiler != dartk && $runtime == vm && $checked ]
|
||||
apply_test/01: RuntimeError
|
||||
|
||||
|
@ -240,7 +213,7 @@ symbol_reserved_word_test/10: MissingCompileTimeError
|
|||
symbol_test/02: MissingCompileTimeError
|
||||
symbol_test/03: MissingCompileTimeError
|
||||
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled && $strong ]
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled ]
|
||||
iterable_fold_test/02: RuntimeError
|
||||
iterable_reduce_test/01: CompileTimeError # Issue 31533
|
||||
iterable_reduce_test/none: RuntimeError
|
||||
|
@ -252,9 +225,6 @@ symbol_reserved_word_test/12: RuntimeError # Issues 11669 and 31936 - throwing c
|
|||
symbol_test/none: RuntimeError # Issues 11669 and 31936 - throwing const constructors.
|
||||
unicode_test: RuntimeError # Issue 18061: German double S.
|
||||
|
||||
[ $compiler != fasta && !$strong ]
|
||||
core_runtime_types_test: SkipByDesign
|
||||
|
||||
[ $compiler == none && $runtime == vm ]
|
||||
from_environment_const_type_undefined_test/09: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/11: MissingCompileTimeError
|
||||
|
@ -290,7 +260,7 @@ regress_r21715_test: RuntimeError # Requires fixed-size int64 support.
|
|||
typed_data_with_limited_ints_test: Skip # Requires fixed-size int64 support.
|
||||
|
||||
# ===== dartk + vm status lines =====
|
||||
[ $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
iterable_fold_test/02: RuntimeError
|
||||
iterable_reduce_test/01: CompileTimeError # Issue 31533
|
||||
iterable_reduce_test/none: RuntimeError
|
||||
|
@ -301,71 +271,15 @@ symbol_reserved_word_test/12: RuntimeError # Issues 11669 and 31936 - throwing c
|
|||
symbol_test/none: RuntimeError # Issues 11669 and 31936 - throwing const constructors.
|
||||
unicode_test: RuntimeError # Issue 18061: German double S.
|
||||
|
||||
[ $runtime == vm && !$strong ]
|
||||
collection_of_test: RuntimeError
|
||||
|
||||
[ !$checked && !$strong ]
|
||||
core_runtime_types_static_test: MissingCompileTimeError
|
||||
splay_tree_test/01: MissingCompileTimeError
|
||||
splay_tree_test/02: MissingCompileTimeError
|
||||
string_base_vm_static_test: MissingCompileTimeError
|
||||
string_replace_static_test: MissingCompileTimeError
|
||||
string_static_test: MissingCompileTimeError
|
||||
|
||||
# We no longer expect Dart2 tests to run with the standalone VM without the new
|
||||
# common front end, but for now we get better coverage by still running them in
|
||||
# checked mode, which is mostly Dart2-compatible.
|
||||
[ !$checked && ($compiler == app_jit || $compiler == none || $compiler == precompiler) && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ $fasta && !$strong ]
|
||||
bool_from_environment2_test/01: MissingCompileTimeError
|
||||
bool_from_environment2_test/02: MissingCompileTimeError
|
||||
bool_from_environment2_test/04: MissingCompileTimeError
|
||||
bool_from_environment2_test/05: MissingCompileTimeError
|
||||
from_environment_const_type_test/02: MissingCompileTimeError
|
||||
from_environment_const_type_test/03: MissingCompileTimeError
|
||||
from_environment_const_type_test/04: MissingCompileTimeError
|
||||
from_environment_const_type_test/06: MissingCompileTimeError
|
||||
from_environment_const_type_test/07: MissingCompileTimeError
|
||||
from_environment_const_type_test/08: MissingCompileTimeError
|
||||
from_environment_const_type_test/09: MissingCompileTimeError
|
||||
from_environment_const_type_test/11: MissingCompileTimeError
|
||||
from_environment_const_type_test/12: MissingCompileTimeError
|
||||
from_environment_const_type_test/13: MissingCompileTimeError
|
||||
from_environment_const_type_test/14: MissingCompileTimeError
|
||||
from_environment_const_type_test/16: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/02: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/03: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/04: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/06: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/07: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/08: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/09: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/11: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/12: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/13: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/14: MissingCompileTimeError
|
||||
from_environment_const_type_undefined_test/16: MissingCompileTimeError
|
||||
int_parse_radix_bad_handler_test: MissingCompileTimeError
|
||||
iterable_element_at_test/static: MissingCompileTimeError
|
||||
iterable_mapping_test/01: MissingCompileTimeError
|
||||
string_from_environment3_test/01: MissingCompileTimeError
|
||||
string_from_environment3_test/02: MissingCompileTimeError
|
||||
string_from_environment3_test/04: MissingCompileTimeError
|
||||
string_from_environment3_test/05: MissingCompileTimeError
|
||||
symbol_reserved_word_test/05: MissingCompileTimeError
|
||||
symbol_test/01: MissingCompileTimeError
|
||||
|
||||
[ !$preview_dart_2 && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # Deprecating all Dart1 modes of execution
|
||||
|
||||
[ !$strong && ($compiler == dartk || $compiler == dartkb || $compiler == dartkp) ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ !$strong && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
list_test/*: RuntimeError # VM doesn't implement strong mode covariance checks
|
||||
|
||||
[ ($arch == simdbc || $arch == simdbc64) && ($hot_reload || $hot_reload_rollback) ]
|
||||
uri_parse_test: SkipSlow
|
||||
|
||||
|
@ -521,12 +435,6 @@ bigint_parse_radix_test: Pass, Slow # --no_intrinsify
|
|||
bigint_test/03: SkipSlow # --no_intrinsify
|
||||
bigint_test/15: SkipSlow # --no_intrinsify
|
||||
|
||||
[ $compiler == precompiler || $runtime == vm && !$checked && !$strong ]
|
||||
int_parse_radix_test/badTypes: RuntimeError # wrong exception returned
|
||||
|
||||
[ $compiler == precompiler || $runtime == vm && !$strong ]
|
||||
apply3_test: RuntimeError
|
||||
|
||||
[ $runtime == dart_precompiled || $runtime == vm ]
|
||||
regexp/global_test: Skip # Issue 21709
|
||||
regexp/pcre_test: Pass, Slow, Timeout
|
||||
|
|
|
@ -23,11 +23,5 @@ unsorted/super_mixin_test: CompileTimeError
|
|||
[ $compiler == dart2js && $host_checked ]
|
||||
unsorted/super_mixin_test: Crash
|
||||
|
||||
[ $compiler == dart2js && !$strong ]
|
||||
unsorted/types_test: RuntimeError
|
||||
|
||||
[ $compiler != dartk && $compiler != dartkb && $compiler != dartkp && !$strong ]
|
||||
unsorted/invocation_errors_test/00: MissingCompileTimeError # This test has been tuned for dart 2.
|
||||
|
||||
[ !$preview_dart_2 && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # Deprecating all Dart1 modes of execution
|
||||
|
|
|
@ -67,7 +67,7 @@ partial_instantiation_static_bounds_check_test/03: MissingCompileTimeError # Iss
|
|||
[ $compiler != app_jitk && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $mode == debug && $runtime == vm ]
|
||||
built_in_identifier_type_annotation_test/set: Crash # Not supported by legacy VM front-end.
|
||||
|
||||
[ $compiler != compare_analyzer_cfe && $compiler != dart2js && $compiler != spec_parser && !$fasta && $strong ]
|
||||
[ $compiler != compare_analyzer_cfe && $compiler != dart2js && $compiler != spec_parser && !$fasta ]
|
||||
compile_time_constant_static5_test/11: CompileTimeError # Issue 30546
|
||||
compile_time_constant_static5_test/16: CompileTimeError # Issue 30546
|
||||
compile_time_constant_static5_test/21: CompileTimeError # Issue 30546
|
||||
|
@ -93,140 +93,6 @@ implicit_creation/implicit_const_not_default_values_test/e9: MissingCompileTimeE
|
|||
[ $compiler != dart2js && $compiler != dartdevc && !$checked ]
|
||||
function_type/*: Skip # Needs checked mode.
|
||||
|
||||
[ $compiler != dart2js && !$fasta && !$strong ]
|
||||
implicit_creation/implicit_new_constructor_generic_test: Fail # No support for implicit creation.
|
||||
implicit_creation/implicit_new_constructor_test: Fail # No support for implicit creation.
|
||||
implicit_creation/implicit_new_prefix_constructor_generic_test: Fail # No support for implicit creation.
|
||||
implicit_creation/implicit_new_prefix_constructor_test: Fail # No support for implicit creation.
|
||||
|
||||
[ $compiler != spec_parser && $runtime != none && !$checked && !$strong ]
|
||||
closure_type_test: RuntimeError
|
||||
map_literal1_test/01: MissingCompileTimeError
|
||||
nosuchmethod_forwarding/nosuchmethod_forwarding_test/02: RuntimeError # Requires type check.
|
||||
nosuchmethod_forwarding/nosuchmethod_forwarding_test/05: RuntimeError # Issue #31426
|
||||
nosuchmethod_forwarding/nosuchmethod_forwarding_test/06: RuntimeError # Issue #31426
|
||||
|
||||
[ $compiler != spec_parser && !$strong ]
|
||||
class_literal_static_test: MissingCompileTimeError # Requires strong mode
|
||||
class_literal_static_test/none: Pass
|
||||
class_override_test: MissingCompileTimeError # Requires strong mode
|
||||
closure_internals_test/01: MissingCompileTimeError # Requires strong mode
|
||||
closure_internals_test/02: MissingCompileTimeError # Requires strong mode
|
||||
closure_internals_test/03: MissingCompileTimeError # Requires strong mode
|
||||
compile_time_constant_k_test/01: MissingCompileTimeError # Requires strong mode
|
||||
compile_time_constant_k_test/02: MissingCompileTimeError # Requires strong mode
|
||||
compile_time_constant_k_test/03: MissingCompileTimeError # Requires strong mode
|
||||
compile_time_constant_static2_test: Skip # Requires strong mode
|
||||
compile_time_constant_static3_test: Skip # Requires strong mode
|
||||
compile_time_constant_static4_test: Skip # Requires strong mode
|
||||
compile_time_constant_static5_test: Skip # Requires strong mode
|
||||
compile_time_constant_static_test: Skip # Requires strong mode
|
||||
crash_6725_test/01: MissingCompileTimeError # Requires strong mode
|
||||
deferred_super_dependency_test/01: MissingCompileTimeError # Requires strong mode
|
||||
double_to_string_as_exponential2_test/*: MissingCompileTimeError
|
||||
double_to_string_as_exponential2_test/none: Pass
|
||||
double_to_string_as_fixed2_test/*: MissingCompileTimeError
|
||||
double_to_string_as_fixed2_test/none: Pass
|
||||
double_to_string_as_precision2_test/*: MissingCompileTimeError
|
||||
double_to_string_as_precision2_test/none: Pass
|
||||
initializing_formal_type_annotation_test/01: MissingCompileTimeError # Requires strong mode
|
||||
initializing_formal_type_annotation_test/02: MissingCompileTimeError # Requires strong mode
|
||||
is_malformed_type_test/94: MissingCompileTimeError # Requires strong mode
|
||||
is_malformed_type_test/95: MissingCompileTimeError # Requires strong mode
|
||||
is_malformed_type_test/96: MissingCompileTimeError # Requires strong mode
|
||||
is_malformed_type_test/97: MissingCompileTimeError # Requires strong mode
|
||||
is_malformed_type_test/98: MissingCompileTimeError # Requires strong mode
|
||||
is_malformed_type_test/99: MissingCompileTimeError # Requires strong mode
|
||||
is_not_class2_test/01: MissingCompileTimeError # Requires strong mode
|
||||
is_not_class2_test/none: Skip # No interesting functionality in this configuration.
|
||||
isnot_malformed_type_test/01: MissingCompileTimeError
|
||||
issue11724_test/01: MissingCompileTimeError
|
||||
issue1363_test/01: MissingCompileTimeError # Requires strong mode
|
||||
issue15606_test/01: MissingCompileTimeError # Requires strong mode
|
||||
issue18628_1_test/01: MissingCompileTimeError # Requires strong mode
|
||||
issue18628_2_test/01: MissingCompileTimeError # Requires strong mode
|
||||
known_identifier_prefix_error_test/*: MissingCompileTimeError # Requires strong mode
|
||||
known_identifier_prefix_error_test/none: Pass
|
||||
map_literal3_test/01: MissingCompileTimeError
|
||||
map_literal3_test/02: MissingCompileTimeError
|
||||
map_literal3_test/03: MissingCompileTimeError
|
||||
map_literal3_test/04: MissingCompileTimeError
|
||||
map_literal4_test/01: MissingCompileTimeError
|
||||
map_literal4_test/02: MissingCompileTimeError
|
||||
map_literal4_test/03: MissingCompileTimeError
|
||||
map_literal4_test/04: MissingCompileTimeError
|
||||
map_literal4_test/05: MissingCompileTimeError
|
||||
map_literal4_test/06: MissingCompileTimeError
|
||||
nosuchmethod_forwarding/nosuchmethod_forwarding_test/03: MissingCompileTimeError # Issue #31426
|
||||
number_identifier_test/05: MissingCompileTimeError
|
||||
number_identifier_test/08: MissingCompileTimeError
|
||||
number_identifier_test/09: MissingCompileTimeError
|
||||
on_catch_malformed_type_test: MissingCompileTimeError
|
||||
operator5_test: MissingCompileTimeError
|
||||
operator_equals_test: MissingCompileTimeError
|
||||
optimized_constant_array_string_access_test: MissingCompileTimeError
|
||||
redirecting_factory_default_values_test/03: MissingCompileTimeError
|
||||
redirecting_factory_incompatible_signature_test/01: MissingCompileTimeError
|
||||
redirecting_factory_infinite_steps_test/01: MissingCompileTimeError
|
||||
redirecting_factory_malbounded_test/01: MissingCompileTimeError
|
||||
type_literal_prefix_call_test/00: MissingCompileTimeError
|
||||
type_parameter_test/*: MissingCompileTimeError
|
||||
type_parameter_test/none: Pass
|
||||
type_promotion_assign_test/*: MissingCompileTimeError
|
||||
type_promotion_assign_test/none: Pass
|
||||
type_promotion_closure_test/*: MissingCompileTimeError
|
||||
type_promotion_closure_test/05: Pass
|
||||
type_promotion_closure_test/08: Pass
|
||||
type_promotion_closure_test/none: Pass
|
||||
type_promotion_local_test/*: MissingCompileTimeError
|
||||
type_promotion_local_test/none: Pass
|
||||
type_promotion_logical_and_test/01: MissingCompileTimeError
|
||||
type_promotion_logical_and_test/02: MissingCompileTimeError
|
||||
type_promotion_logical_and_test/03: MissingCompileTimeError
|
||||
type_promotion_more_specific_test/02: MissingCompileTimeError
|
||||
type_promotion_more_specific_test/06: MissingCompileTimeError
|
||||
type_promotion_more_specific_test/07: MissingCompileTimeError
|
||||
type_promotion_more_specific_test/09: MissingCompileTimeError
|
||||
type_promotion_more_specific_test/10: MissingCompileTimeError
|
||||
type_promotion_more_specific_test/11: MissingCompileTimeError
|
||||
type_promotion_multiple_test/*: MissingCompileTimeError
|
||||
type_promotion_multiple_test/none: Pass
|
||||
vm/type_vm_test/01: MissingCompileTimeError
|
||||
vm/type_vm_test/02: MissingCompileTimeError
|
||||
vm/type_vm_test/03: MissingCompileTimeError
|
||||
vm/type_vm_test/04: MissingCompileTimeError
|
||||
vm/type_vm_test/05: MissingCompileTimeError
|
||||
vm/type_vm_test/06: MissingCompileTimeError
|
||||
vm/type_vm_test/08: MissingCompileTimeError
|
||||
vm/type_vm_test/09: MissingCompileTimeError
|
||||
vm/type_vm_test/10: MissingCompileTimeError
|
||||
vm/type_vm_test/11: MissingCompileTimeError
|
||||
vm/type_vm_test/12: MissingCompileTimeError
|
||||
vm/type_vm_test/13: MissingCompileTimeError
|
||||
vm/type_vm_test/14: MissingCompileTimeError
|
||||
vm/type_vm_test/15: MissingCompileTimeError
|
||||
vm/type_vm_test/16: MissingCompileTimeError
|
||||
vm/type_vm_test/22: MissingCompileTimeError
|
||||
vm/type_vm_test/24: MissingCompileTimeError
|
||||
vm/type_vm_test/25: MissingCompileTimeError
|
||||
vm/type_vm_test/26: MissingCompileTimeError
|
||||
vm/type_vm_test/27: MissingCompileTimeError
|
||||
void/return_future_future_or_void_sync_error1_test: MissingCompileTimeError # https://github.com/dart-lang/sdk/issues/33218
|
||||
void/void_block_return_test/00: MissingCompileTimeError # Requires strong mode
|
||||
void/void_type_callbacks_test: Skip # Requires strong mode
|
||||
void/void_type_function_types_test: Skip # Requires strong mode
|
||||
void/void_type_override_test: Skip # Requires strong mode
|
||||
void/void_type_usage_test: Skip # Requires strong mode
|
||||
wrong_number_type_arguments_test/*: MissingCompileTimeError # Requires strong mode
|
||||
wrong_number_type_arguments_test/none: Pass
|
||||
|
||||
[ $runtime != none && !$strong ]
|
||||
map_literal11_test/none: MissingRuntimeError
|
||||
map_literal7_test: RuntimeError # Requires strong mode
|
||||
|
||||
[ $checked && !$strong ]
|
||||
type_parameter_test/05: Pass
|
||||
|
||||
[ !$preview_dart_2 && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # Deprecating all Dart1 modes of execution
|
||||
|
||||
|
|
|
@ -5,32 +5,91 @@
|
|||
|
||||
[ $compiler == dart2js ]
|
||||
arithmetic_int64_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
async_await_test/02: RuntimeError
|
||||
async_await_test/03: RuntimeError
|
||||
async_await_test/none: RuntimeError
|
||||
async_star/async_star_await_for_test: RuntimeError
|
||||
async_star/async_star_cancel_test: RuntimeError
|
||||
async_star_cancel_while_paused_test: RuntimeError # Issue 22853
|
||||
async_star_test/02: RuntimeError
|
||||
bit_operations_test: RuntimeError, OK # non JS number semantics
|
||||
bit_operations_test: RuntimeError
|
||||
bit_operations_test/03: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
bit_operations_test/04: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
bit_operations_test/none: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
branch_canonicalization_test: RuntimeError
|
||||
call_method_as_cast_test/06: RuntimeError
|
||||
call_method_implicit_tear_off_implements_function_test/05: RuntimeError
|
||||
call_method_implicit_tear_off_implements_function_test/06: RuntimeError
|
||||
call_method_is_check_test/06: RuntimeError
|
||||
call_method_must_not_be_field_test/03: RuntimeError # Issue 32155
|
||||
call_method_must_not_be_getter_test/03: RuntimeError # Issue 32155
|
||||
canonical_const2_test: RuntimeError, OK # non JS number semantics
|
||||
closure_type_arguments_test: Crash # Issue 34272
|
||||
compile_time_constant_static5_test/11: CompileTimeError
|
||||
compile_time_constant_static5_test/16: CompileTimeError
|
||||
compile_time_constant_static5_test/21: CompileTimeError
|
||||
compile_time_constant_static5_test/23: CompileTimeError
|
||||
conditional_rewrite_test: RuntimeError
|
||||
config_import_corelib_test: CompileTimeError # we need a special platform.dill file for categories=all. Once we fix that, all dart:* are supported when using '--categories=all' so this will become a RuntimeError, OK.
|
||||
config_import_test: RuntimeError # Test flag is not passed to the compiler.
|
||||
const_constructor3_test/04: MissingCompileTimeError # OK - Subtype check uses JS number semantics.
|
||||
const_constructor_nonconst_param_test/01: MissingCompileTimeError
|
||||
const_dynamic_type_literal_test/03: Pass # but it shouldn't until we fix issue 17207
|
||||
const_evaluation_test/01: RuntimeError
|
||||
const_list_test: RuntimeError
|
||||
const_map2_test/00: MissingCompileTimeError
|
||||
const_map3_test/00: MissingCompileTimeError
|
||||
const_map4_test: RuntimeError
|
||||
const_switch_test/02: RuntimeError, OK # constant identity based on JS constants
|
||||
const_switch_test/04: RuntimeError, OK # constant identity based on JS constants
|
||||
constructor12_test: RuntimeError
|
||||
constructor_named_arguments_test/none: RuntimeError
|
||||
covariant_subtyping_test: Crash # Unsupported operation: Unsupported type parameter type node E.
|
||||
ct_const_test: RuntimeError
|
||||
deferred_load_library_wrong_args_test/01: CompileTimeError
|
||||
deferred_not_loaded_check_test: RuntimeError # Test out of date. Issue 31933
|
||||
deferred_redirecting_factory_test: RuntimeError
|
||||
deopt_inlined_function_lazy_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
deopt_smi_op_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
double_identical_test: RuntimeError # Negative and positive zero are distinct, but not in dart2js; bug #11551.
|
||||
double_int_to_string_test: RuntimeError, OK # non JS number semantics
|
||||
dynamic_prefix_core_test/none: CompileTimeError
|
||||
enum_mirror_test: RuntimeError
|
||||
example_constructor_test: RuntimeError
|
||||
expect_test: RuntimeError, OK # Issue 13080
|
||||
external_test/10: CompileTimeError # External non-js-interop function are treated as compile-time errors.
|
||||
external_test/10: MissingRuntimeError
|
||||
external_test/13: CompileTimeError # External non-js-interop function are treated as compile-time errors.
|
||||
external_test/13: MissingRuntimeError
|
||||
external_test/20: CompileTimeError # External non-js-interop function are treated as compile-time errors.
|
||||
external_test/20: MissingRuntimeError
|
||||
external_test/21: CompileTimeError
|
||||
external_test/24: CompileTimeError
|
||||
flatten_test/05: MissingRuntimeError
|
||||
flatten_test/08: MissingRuntimeError
|
||||
flatten_test/09: MissingRuntimeError
|
||||
flatten_test/12: MissingRuntimeError
|
||||
full_stacktrace1_test: RuntimeError # Issue 12698
|
||||
full_stacktrace2_test: RuntimeError # Issue 12698
|
||||
full_stacktrace3_test: RuntimeError # Issue 12698
|
||||
function_propagation_test: RuntimeError
|
||||
function_subtype_inline2_test: RuntimeError
|
||||
generic_function_bounds_test: RuntimeError
|
||||
generic_function_dcall_test/01: RuntimeError
|
||||
generic_instanceof2_test: RuntimeError
|
||||
generic_is_check_test: RuntimeError
|
||||
generic_methods_bounds_test/02: MissingRuntimeError
|
||||
generic_no_such_method_dispatcher_simple_test: CompileTimeError
|
||||
generic_no_such_method_dispatcher_test: CompileTimeError
|
||||
generic_tearoff_test: CompileTimeError
|
||||
guess_cid_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
identical_closure2_test: RuntimeError # non JS number semantics
|
||||
identical_closure2_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
if_null_precedence_test/none: RuntimeError
|
||||
infinity_test: RuntimeError # non JS number semantics - Issue 4984
|
||||
instance_creation_in_function_annotation_test: RuntimeError
|
||||
instantiate_tearoff_of_call_test: CompileTimeError
|
||||
instantiate_tearoff_of_call_test: RuntimeError
|
||||
int2_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
int64_literal_test/01: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
|
@ -45,23 +104,105 @@ int64_literal_test/16: RuntimeError, OK # Error if web int literal cannot be rep
|
|||
int64_literal_test/17: RuntimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
int64_literal_test/19: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
int64_literal_test/none: RuntimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
integer_division_by_zero_test: RuntimeError # Issue 8301
|
||||
internal_library_test/02: Crash
|
||||
invocation_mirror_invoke_on2_test: RuntimeError
|
||||
invocation_mirror_invoke_on_test: RuntimeError
|
||||
issue21079_test: RuntimeError
|
||||
issue23244_test: RuntimeError # Isolates - enum canonicalization - Issue 23244
|
||||
issue31596_super_test/01: CompileTimeError
|
||||
issue31596_super_test/03: CompileTimeError
|
||||
left_shift_test: RuntimeError # non JS number semantics
|
||||
library_env_test/has_io_support: RuntimeError, OK # dart2js doesn't support io when compiling on --categories=Client
|
||||
library_env_test/has_mirror_support: Fail # mirrors not supported on web
|
||||
library_env_test/has_mirror_support: RuntimeError
|
||||
library_env_test/has_no_html_support: RuntimeError, OK
|
||||
library_env_test/has_no_mirror_support: Pass # fails for the wrong reason.
|
||||
list_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
local_function2_test/none: RuntimeError
|
||||
local_function3_test/none: RuntimeError
|
||||
local_function_test/none: RuntimeError
|
||||
minify_closure_variable_collision_test: CompileTimeError
|
||||
mint_arithmetic_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
mint_arithmetic_test: RuntimeError # non JS number semantics
|
||||
mint_compares_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
mint_identical_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
mixin_illegal_super_use_test/01: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/04: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/07: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/10: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/11: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/01: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/02: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/03: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/04: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/05: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/06: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/07: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/08: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/09: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/10: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/11: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/12: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/13: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/14: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/15: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/16: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/17: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/18: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/19: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/20: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/21: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/22: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/23: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/24: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/25: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/26: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/27: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/28: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/29: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/30: MissingCompileTimeError
|
||||
mixin_method_override_test/G5: Skip # Issue 34354
|
||||
mock_writable_final_field_test: RuntimeError # Issue 30847
|
||||
mock_writable_final_private_field_test: RuntimeError # Issue 17526, 30847
|
||||
modulo_test: RuntimeError # non JS number semantics
|
||||
named_parameters_default_eq_test/none: RuntimeError
|
||||
nan_identical_test: RuntimeError # Issue 11551
|
||||
nested_generic_closure_test: RuntimeError
|
||||
no_main_test/01: CompileTimeError
|
||||
no_such_method_mock_test: RuntimeError
|
||||
null_no_such_method_test: CompileTimeError
|
||||
number_identity2_test: RuntimeError
|
||||
number_identity_test: CompileTimeError, OK # Error if web int literal cannot be represented exactly, see http://dartbug.com/33351
|
||||
numbers_test: RuntimeError, OK # non JS number semantics
|
||||
parser_quirks_test: CompileTimeError
|
||||
partial_instantiation_eager_bounds_check_test: RuntimeError # Issue #34295
|
||||
partial_tearoff_instantiation_test/05: Pass # for the wrong reason.
|
||||
partial_tearoff_instantiation_test/06: Pass # for the wrong reason.
|
||||
partial_tearoff_instantiation_test/07: Pass # for the wrong reason.
|
||||
partial_tearoff_instantiation_test/08: Pass # for the wrong reason.
|
||||
private_method_tearoff_test: RuntimeError
|
||||
redirecting_factory_reflection_test: RuntimeError
|
||||
regress_23408_test: CompileTimeError
|
||||
regress_24283_test: RuntimeError, OK # non JS number semantics
|
||||
regress_28255_test: RuntimeError
|
||||
regress_29025_test: CompileTimeError
|
||||
regress_29405_test: CompileTimeError
|
||||
regress_30339_test: CompileTimeError
|
||||
setter_no_getter_test/01: CompileTimeError
|
||||
stacktrace_demangle_ctors_test: RuntimeError # Issue 12698
|
||||
stacktrace_rethrow_error_test/none: RuntimeError # Issue 12698
|
||||
stacktrace_rethrow_error_test/withtraceparameter: RuntimeError # Issue 12698
|
||||
stacktrace_rethrow_nonerror_test: RuntimeError # Issue 12698
|
||||
super_bound_closure_test/none: CompileTimeError
|
||||
super_call4_test/01: MissingCompileTimeError
|
||||
super_test: RuntimeError
|
||||
tearoff_dynamic_test: RuntimeError
|
||||
truncdiv_test: RuntimeError # non JS number semantics - Issue 15246
|
||||
type_constants_test/none: RuntimeError # Issue 35052
|
||||
type_error_test: RuntimeError
|
||||
type_literal_test: RuntimeError
|
||||
type_promotion_more_specific_test/04: CompileTimeError
|
||||
vm/*: SkipByDesign # Tests for the VM.
|
||||
|
||||
[ $compiler != dart2js ]
|
||||
|
@ -72,13 +213,11 @@ control_flow_collections/for_non_bool_condition_test: Crash # Issue 36442
|
|||
|
||||
[ $compiler == dart2js && $runtime == chrome ]
|
||||
field_override_optimization_test: RuntimeError
|
||||
stacktrace_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == chrome && $system == macos ]
|
||||
await_future_test: Pass, Timeout # Issue 26735
|
||||
|
||||
[ $compiler == dart2js && $runtime == chrome && $strong ]
|
||||
stacktrace_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == chromeOnAndroid ]
|
||||
override_field_test/02: Pass, Slow # TODO(kasperl): Please triage.
|
||||
|
||||
|
@ -86,13 +225,11 @@ override_field_test/02: Pass, Slow # TODO(kasperl): Please triage.
|
|||
conditional_import_string_test: SkipByDesign # No XHR in d8
|
||||
conditional_import_test: SkipByDesign # No XHR in d8
|
||||
implicit_creation/implicit_new_constructor_generic_test: Pass
|
||||
stacktrace_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == d8 && !$checked ]
|
||||
field_override_optimization_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == d8 && $strong ]
|
||||
stacktrace_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == ff ]
|
||||
field_override_optimization_test: RuntimeError
|
||||
round_test: Pass, Fail, OK # Fixed in ff 35. Common JavaScript engine Math.round bug.
|
||||
|
@ -113,24 +250,15 @@ syncstar_covariant_type_test: RuntimeError # dart2js misplaces check in Iterator
|
|||
syncstar_dcall_type_test: RuntimeError # dart2js misplaces check in Iterator, not Iterable.
|
||||
|
||||
[ $compiler == dart2js && $runtime == safari ]
|
||||
async_throw_in_catch_test/none: Pass, RuntimeError
|
||||
field_override_optimization_test: RuntimeError
|
||||
round_test: Fail, OK # Common JavaScript engine Math.round bug.
|
||||
|
||||
[ $compiler == dart2js && $runtime == safari && $strong ]
|
||||
async_throw_in_catch_test/none: Pass, RuntimeError
|
||||
stacktrace_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $system == windows ]
|
||||
string_literals_test: Pass, RuntimeError # Failures on dart2js-win7-chrome-4-4-be and dart2js-win7-ie11ff-4-4-be
|
||||
|
||||
[ $compiler == dart2js && $checked ]
|
||||
covariant_subtyping_test: CompileTimeError
|
||||
|
||||
[ $compiler == dart2js && $checked && $minified && $strong ]
|
||||
inline_super_field_test: Crash
|
||||
typedef_is_test: Crash
|
||||
|
||||
[ $compiler == dart2js && $checked && $strong ]
|
||||
assign_instance_method_test: RuntimeError
|
||||
async_await_foreign_test: RuntimeError
|
||||
async_star_cancel_while_paused_test: RuntimeError
|
||||
|
@ -222,6 +350,7 @@ constructor_duplicate_final_test/02: MissingCompileTimeError
|
|||
constructor_named_arguments_test/01: MissingCompileTimeError
|
||||
constructor_named_arguments_test/none: RuntimeError
|
||||
covariant_override/runtime_check_test: RuntimeError
|
||||
covariant_subtyping_test: CompileTimeError
|
||||
covariant_subtyping_test: RuntimeError
|
||||
deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError
|
||||
deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError
|
||||
|
@ -374,12 +503,16 @@ type_parameter_test/06: Crash # Internal Error: Unexpected type variable in stat
|
|||
type_parameter_test/09: Crash # Internal Error: Unexpected type variable in static context.
|
||||
type_variable_scope_test/03: Crash # Internal Error: Unexpected type variable in static context.
|
||||
|
||||
[ $compiler == dart2js && $checked && $minified ]
|
||||
inline_super_field_test: Crash
|
||||
typedef_is_test: Crash
|
||||
|
||||
[ $compiler == dart2js && !$checked ]
|
||||
bool_check_test: RuntimeError
|
||||
bool_condition_check_test: RuntimeError
|
||||
issue31596_super_test/05: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $host_checked && $strong ]
|
||||
[ $compiler == dart2js && $host_checked ]
|
||||
async_return_types_test/nestedFuture: Crash # 'file:*/pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart': Failed assertion: line 208 pos 18: '!(_useKernel && _strongMode && !_disableRtiOptimization) ||
|
||||
async_star_cancel_while_paused_test: Crash # 'file:*/pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart': Failed assertion: line 208 pos 18: '!(_useKernel && _strongMode && !_disableRtiOptimization) ||
|
||||
await_not_started_immediately_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(bindCallback.R) in (local(_RootZone.bindCallback#)) for j:closure_call(_RootZone_bindCallback_closure.call).
|
||||
|
@ -402,22 +535,6 @@ type_literal_prefix_call_test/00: MissingCompileTimeError
|
|||
type_promotion_logical_and_test/01: MissingCompileTimeError
|
||||
|
||||
[ $compiler == dart2js && $minified ]
|
||||
cyclic_type2_test: RuntimeError # Issue 31054
|
||||
cyclic_type_test/0*: RuntimeError # Issue 31054
|
||||
f_bounded_quantification4_test: RuntimeError # Issue 31054
|
||||
f_bounded_quantification5_test: RuntimeError # Issue 31054
|
||||
generic_closure_test/01: RuntimeError # Uses runtimeType.toString()
|
||||
mixin_mixin2_test: RuntimeError # Issue 31054
|
||||
mixin_mixin3_test: RuntimeError # Issue 31054
|
||||
mixin_mixin4_test: RuntimeError # Issue 31054
|
||||
mixin_mixin5_test: RuntimeError # Issue 31054
|
||||
mixin_mixin6_test: RuntimeError # Issue 31054
|
||||
mixin_mixin_bound2_test: RuntimeError # Issue 31054
|
||||
mixin_mixin_bound_test: RuntimeError # Issue 31054
|
||||
mixin_mixin_type_arguments_test: RuntimeError # Issue 31054
|
||||
runtime_type_function_test: RuntimeError # Uses runtimeType.toString()
|
||||
|
||||
[ $compiler == dart2js && $minified && $strong ]
|
||||
async_return_types_test/nestedFuture: Crash # Interpolated value #1 is not an Expression or List of Expressions: [VariableUse(f), Instance of 'LiteralNull', null]
|
||||
async_star_cancel_while_paused_test: Crash # Interpolated value #1 is not an Expression or List of Expressions: [VariableUse(f), Instance of 'LiteralNull', null]
|
||||
await_not_started_immediately_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(bindCallback.R) in (local(_RootZone.bindCallback#)) for j:closure_call(_RootZone_bindCallback_closure.call).
|
||||
|
@ -427,6 +544,11 @@ class_literal_static_test/03: MissingCompileTimeError
|
|||
class_literal_static_test/07: MissingCompileTimeError
|
||||
config_import_corelib_test: CompileTimeError
|
||||
covariant_subtyping_test: RuntimeError
|
||||
cyclic_type2_test: RuntimeError # Issue 31054
|
||||
cyclic_type_test/0*: RuntimeError # Issue 31054
|
||||
f_bounded_quantification4_test: RuntimeError # Issue 31054
|
||||
f_bounded_quantification5_test: RuntimeError # Issue 31054
|
||||
generic_closure_test/01: RuntimeError # Uses runtimeType.toString()
|
||||
invocation_mirror2_test: RuntimeError # mirrors not supported
|
||||
invocation_mirror_test: RuntimeError
|
||||
issue23244_test: Crash # Interpolated value #1 is not an Expression or List of Expressions: [VariableUse(f), Instance of 'LiteralNull', null]
|
||||
|
@ -434,7 +556,14 @@ library_env_test/has_no_html_support: RuntimeError
|
|||
many_overridden_no_such_method_test: RuntimeError
|
||||
map_literal3_test/03: MissingCompileTimeError
|
||||
mixin_generic_test: RuntimeError # Issue 12605
|
||||
mixin_mixin_type_arguments_test: RuntimeError
|
||||
mixin_mixin2_test: RuntimeError # Issue 31054
|
||||
mixin_mixin3_test: RuntimeError # Issue 31054
|
||||
mixin_mixin4_test: RuntimeError # Issue 31054
|
||||
mixin_mixin5_test: RuntimeError # Issue 31054
|
||||
mixin_mixin6_test: RuntimeError # Issue 31054
|
||||
mixin_mixin_bound2_test: RuntimeError # Issue 31054
|
||||
mixin_mixin_bound_test: RuntimeError # Issue 31054
|
||||
mixin_mixin_type_arguments_test: RuntimeError # Issue 31054
|
||||
no_such_method_native_test: RuntimeError
|
||||
no_such_method_test: RuntimeError
|
||||
overridden_no_such_method_test: RuntimeError
|
||||
|
@ -442,156 +571,8 @@ recursive_generic_test: RuntimeError
|
|||
regress_13462_1_test: RuntimeError
|
||||
regress_18535_test: RuntimeError
|
||||
regress_21795_test: RuntimeError # Issue 12605
|
||||
runtime_type_function_test: RuntimeError # Uses runtimeType.toString()
|
||||
stack_trace_test: RuntimeError, OK # Stack trace not preserved in minified code.
|
||||
symbol_conflict_test: RuntimeError # Issue 23857
|
||||
type_literal_prefix_call_test/00: MissingCompileTimeError
|
||||
type_promotion_logical_and_test/01: MissingCompileTimeError
|
||||
|
||||
[ $compiler == dart2js && $strong ]
|
||||
async_await_test/02: RuntimeError
|
||||
async_await_test/03: RuntimeError
|
||||
async_await_test/none: RuntimeError
|
||||
async_star_cancel_while_paused_test: RuntimeError
|
||||
async_star_test/02: RuntimeError
|
||||
bit_operations_test: RuntimeError
|
||||
branch_canonicalization_test: RuntimeError
|
||||
canonical_const2_test: RuntimeError, OK # non JS number semantics
|
||||
closure_type_arguments_test: Crash # Issue 34272
|
||||
compile_time_constant_static5_test/11: CompileTimeError
|
||||
compile_time_constant_static5_test/16: CompileTimeError
|
||||
compile_time_constant_static5_test/21: CompileTimeError
|
||||
compile_time_constant_static5_test/23: CompileTimeError
|
||||
conditional_rewrite_test: RuntimeError
|
||||
config_import_test: RuntimeError
|
||||
const_constructor3_test/04: MissingCompileTimeError # OK - Subtype check uses JS number semantics.
|
||||
const_evaluation_test/01: RuntimeError
|
||||
const_list_test: RuntimeError
|
||||
const_map2_test/00: MissingCompileTimeError
|
||||
const_map3_test/00: MissingCompileTimeError
|
||||
const_map4_test: RuntimeError
|
||||
const_switch_test/02: RuntimeError, OK # constant identity based on JS constants
|
||||
const_switch_test/04: RuntimeError, OK # constant identity based on JS constants
|
||||
constructor12_test: RuntimeError
|
||||
constructor_named_arguments_test/none: RuntimeError
|
||||
covariant_subtyping_test: Crash # Unsupported operation: Unsupported type parameter type node E.
|
||||
ct_const_test: RuntimeError
|
||||
deferred_load_library_wrong_args_test/01: CompileTimeError
|
||||
deferred_not_loaded_check_test: RuntimeError # Test out of date. Issue 31933
|
||||
deferred_redirecting_factory_test: RuntimeError
|
||||
double_int_to_string_test: RuntimeError, OK # non JS number semantics
|
||||
dynamic_prefix_core_test/none: CompileTimeError
|
||||
enum_mirror_test: RuntimeError
|
||||
example_constructor_test: RuntimeError
|
||||
expect_test: RuntimeError, OK # Issue 13080
|
||||
external_test/10: MissingRuntimeError
|
||||
external_test/13: MissingRuntimeError
|
||||
external_test/20: MissingRuntimeError
|
||||
external_test/21: CompileTimeError
|
||||
external_test/24: CompileTimeError
|
||||
flatten_test/05: MissingRuntimeError
|
||||
flatten_test/08: MissingRuntimeError
|
||||
flatten_test/09: MissingRuntimeError
|
||||
flatten_test/12: MissingRuntimeError
|
||||
full_stacktrace1_test: RuntimeError # Issue 12698
|
||||
full_stacktrace2_test: RuntimeError # Issue 12698
|
||||
full_stacktrace3_test: RuntimeError # Issue 12698
|
||||
function_subtype_inline2_test: RuntimeError
|
||||
generic_function_bounds_test: RuntimeError
|
||||
generic_function_dcall_test/01: RuntimeError
|
||||
generic_instanceof2_test: RuntimeError
|
||||
generic_is_check_test: RuntimeError
|
||||
generic_methods_bounds_test/02: MissingRuntimeError
|
||||
generic_no_such_method_dispatcher_simple_test: CompileTimeError
|
||||
generic_no_such_method_dispatcher_test: CompileTimeError
|
||||
generic_tearoff_test: CompileTimeError
|
||||
identical_closure2_test: RuntimeError # non JS number semantics
|
||||
if_null_precedence_test/none: RuntimeError
|
||||
infinity_test: RuntimeError # non JS number semantics - Issue 4984
|
||||
instance_creation_in_function_annotation_test: RuntimeError
|
||||
instantiate_tearoff_of_call_test: CompileTimeError
|
||||
integer_division_by_zero_test: RuntimeError # Issue 8301
|
||||
internal_library_test/02: Crash
|
||||
invocation_mirror_invoke_on2_test: RuntimeError
|
||||
invocation_mirror_invoke_on_test: RuntimeError
|
||||
issue21079_test: RuntimeError
|
||||
issue23244_test: RuntimeError
|
||||
issue31596_super_test/01: CompileTimeError
|
||||
issue31596_super_test/03: CompileTimeError
|
||||
left_shift_test: RuntimeError # non JS number semantics
|
||||
library_env_test/has_mirror_support: RuntimeError
|
||||
local_function2_test/none: RuntimeError
|
||||
local_function3_test/none: RuntimeError
|
||||
local_function_test/none: RuntimeError
|
||||
minify_closure_variable_collision_test: CompileTimeError
|
||||
mint_arithmetic_test: RuntimeError # non JS number semantics
|
||||
mixin_illegal_super_use_test/01: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/04: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/07: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/10: MissingCompileTimeError
|
||||
mixin_illegal_super_use_test/11: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/01: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/02: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/03: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/04: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/05: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/06: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/07: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/08: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/09: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/10: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/11: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/12: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/13: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/14: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/15: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/16: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/17: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/18: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/19: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/20: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/21: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/22: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/23: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/24: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/25: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/26: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/27: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/28: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/29: MissingCompileTimeError
|
||||
mixin_illegal_superclass_test/30: MissingCompileTimeError
|
||||
mixin_method_override_test/G5: Skip # Issue 34354
|
||||
mock_writable_final_field_test: RuntimeError # Issue 30847
|
||||
mock_writable_final_private_field_test: RuntimeError # Issue 17526, 30847
|
||||
modulo_test: RuntimeError # non JS number semantics
|
||||
named_parameters_default_eq_test/none: RuntimeError
|
||||
nan_identical_test: RuntimeError # Issue 11551
|
||||
nested_generic_closure_test: RuntimeError
|
||||
no_main_test/01: CompileTimeError
|
||||
no_such_method_mock_test: RuntimeError
|
||||
null_no_such_method_test: CompileTimeError
|
||||
number_identity2_test: RuntimeError
|
||||
numbers_test: RuntimeError, OK # non JS number semantics
|
||||
parser_quirks_test: CompileTimeError
|
||||
redirecting_factory_reflection_test: RuntimeError
|
||||
regress_23408_test: CompileTimeError
|
||||
regress_24283_test: RuntimeError, OK # non JS number semantics
|
||||
regress_28255_test: RuntimeError
|
||||
regress_29025_test: CompileTimeError
|
||||
regress_29405_test: CompileTimeError
|
||||
regress_30339_test: CompileTimeError
|
||||
setter_no_getter_test/01: CompileTimeError
|
||||
stacktrace_demangle_ctors_test: RuntimeError # Issue 12698
|
||||
stacktrace_rethrow_error_test/none: RuntimeError # Issue 12698
|
||||
stacktrace_rethrow_error_test/withtraceparameter: RuntimeError # Issue 12698
|
||||
stacktrace_rethrow_nonerror_test: RuntimeError # Issue 12698
|
||||
super_bound_closure_test/none: CompileTimeError
|
||||
super_call4_test/01: MissingCompileTimeError
|
||||
super_test: RuntimeError
|
||||
tearoff_dynamic_test: RuntimeError
|
||||
truncdiv_test: RuntimeError # non JS number semantics - Issue 15246
|
||||
type_error_test: RuntimeError
|
||||
type_literal_test: RuntimeError
|
||||
type_promotion_more_specific_test/04: CompileTimeError
|
||||
|
||||
[ $compiler == dart2js && !$strong ]
|
||||
*: SkipByDesign
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -28,8 +28,5 @@ large_class_declaration_test: SkipSlow # Uses too much memory.
|
|||
[ $arch == ia32 && $mode == release && $runtime == vm ]
|
||||
deep_nesting_expression_test/01: Crash, Pass # Issue 31496
|
||||
|
||||
[ !$strong && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # tests/language has the non-strong mode versions of these tests.
|
||||
|
||||
[ $runtime == dart_precompiled || $runtime == vm ]
|
||||
superinterface_variance/*: Skip # Issue dart-lang/language#113
|
||||
|
|
|
@ -149,24 +149,11 @@ mirrors/dynamic_load_test: RuntimeError # Issue 26869 - Reload fails to preserve
|
|||
[ $jscl ]
|
||||
isolate/spawn_uri_multi_test/none: RuntimeError # Issue 13544
|
||||
|
||||
[ !$strong ]
|
||||
async/future_test: SkipByDesign # Uses Dart 2 syntax.
|
||||
async/stream_first_where_test/badType: MissingCompileTimeError
|
||||
async/stream_from_iterable_test: SkipByDesign # Uses Dart 2 syntax.
|
||||
async/stream_last_where_test/badType: MissingCompileTimeError
|
||||
mirrors/redirecting_factory_different_type_test/02: MissingCompileTimeError
|
||||
|
||||
[ $builder_tag == mac10_7 && $runtime == safari ]
|
||||
typed_data/setRange_2_test: Fail # Safari doesn't fully implement spec for TypedArray.set
|
||||
typed_data/setRange_3_test: Fail # Safari doesn't fully implement spec for TypedArray.set
|
||||
typed_data/setRange_4_test: Fail # Safari doesn't fully implement spec for TypedArray.set
|
||||
|
||||
[ $compiler != dart2analyzer && $compiler != fasta && !$strong ]
|
||||
async/future_or_type_test: Fail # Strong mode implements FutureOr, non-strong treats it as dynamic.
|
||||
|
||||
[ $compiler != dartdevc && $checked && !$strong ]
|
||||
async/future_or_only_in_async_test/00: MissingCompileTimeError
|
||||
|
||||
[ $compiler == dartk && $system == macos && $hot_reload && ($arch == simdbc || $arch == simdbc64) ]
|
||||
isolate/unresolved_ports_test: Pass, RuntimeError # Issue 35410
|
||||
|
||||
|
@ -198,18 +185,6 @@ html/custom_elements_test: Pass, Timeout # Issue 26789
|
|||
html/request_animation_frame_test: Skip # Times out. Issue 22167
|
||||
html/transition_event_test: Skip # Times out. Issue 22167
|
||||
|
||||
[ !$checked && !$strong ]
|
||||
async/future_or_only_in_async_test/00: MissingCompileTimeError
|
||||
async/multiple_timer_test: Pass, Fail # Timing related
|
||||
isolate/issue_24243_parent_isolate_test: SkipByDesign # Requires type checks.
|
||||
|
||||
[ !$fasta && !$strong ]
|
||||
isolate/isolate_import_test/01: MissingCompileTimeError
|
||||
mirrors/top_level_accessors_test/01: MissingCompileTimeError
|
||||
typed_data/float32x4_static_test: MissingCompileTimeError
|
||||
typed_data/int32x4_static_test/01: MissingCompileTimeError
|
||||
typed_data/int32x4_static_test/02: MissingCompileTimeError
|
||||
|
||||
[ !$preview_dart_2 && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # Deprecating all Dart1 modes of execution
|
||||
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
# BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
[ $compiler == dart2js ]
|
||||
async/future_or_type_test: RuntimeError
|
||||
async/slow_consumer2_test: RuntimeError
|
||||
async/stream_distinct_test: RuntimeError
|
||||
collection/list_test: RuntimeError
|
||||
convert/chunked_conversion_utf88_test: Slow
|
||||
convert/utf85_test: Slow
|
||||
developer/timeline_test: Skip # Not supported
|
||||
|
@ -16,6 +20,7 @@ html/custom/js_custom_test: Skip # mirrors not supported, delete this test.
|
|||
html/custom/mirrors_2_test: Skip # mirrors not supported, delete this test.
|
||||
html/custom/mirrors_test: Skip # mirrors not supported, delete this test.
|
||||
html/custom_elements_test: Slow # Issue 26789
|
||||
html/element_classes_test: RuntimeError
|
||||
html/isolates_test: SkipByDesign
|
||||
html/mirrors_js_typed_interop_test: Skip # mirrors not supported, delete this test.
|
||||
html/worker_api_test: SkipByDesign
|
||||
|
@ -36,6 +41,7 @@ convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050
|
|||
html/element_types_keygen_test: RuntimeError # Issue 29055
|
||||
html/file_sample_test: Pass, RuntimeError
|
||||
html/fileapi_entry_test: Pass, RuntimeError
|
||||
html/interactive_media_test: RuntimeError
|
||||
html/media_stream_test: RuntimeError # Please triage.
|
||||
html/speechrecognition_test: RuntimeError # Please triage.
|
||||
|
||||
|
@ -57,9 +63,6 @@ html/js_typed_interop_lazy_test/none: RuntimeError
|
|||
html/js_typed_interop_rename_static_test: RuntimeError
|
||||
html/worker_test/functional: RuntimeError # Issue 32261
|
||||
|
||||
[ $compiler == dart2js && $runtime == chrome && $strong ]
|
||||
html/interactive_media_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == chromeOnAndroid ]
|
||||
html/audiobuffersourcenode_test/supported: Fail # TODO(dart2js-team): Please triage this failure.
|
||||
html/audiocontext_test/supported: RuntimeError # TODO(dart2js-team): Please triage this failure.
|
||||
|
@ -316,9 +319,6 @@ html/html_mock_test: RuntimeError # Issue 31038
|
|||
html/input_element_attributes_test: RuntimeError
|
||||
html/js_extend_class_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime != d8 && !$strong ]
|
||||
html/js_dart_functions_test: RuntimeError # does not implement Dart 2 implicit `.call` tearoff
|
||||
|
||||
[ $compiler == dart2js && $runtime == ff ]
|
||||
async/slow_consumer2_test: SkipSlow # Times out. Issue 22050
|
||||
convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050
|
||||
|
@ -340,6 +340,7 @@ html/file_sample_test: Skip # FileSystem not supported on FireFox.
|
|||
html/fileapi_supported_test: Skip # FileSystem not supported on FireFox.
|
||||
html/fileapi_supported_throws_test: Skip # FileSystem not supported on FireFox.
|
||||
html/fontface_test: Fail # Fontface not supported on ff
|
||||
html/gamepad_test: RuntimeError
|
||||
html/history_test/history: Skip # Issue 22050
|
||||
html/input_element_datetime_test: Fail
|
||||
html/input_element_month_test: Fail
|
||||
|
@ -354,10 +355,6 @@ html/speechrecognition_test: RuntimeError # Please triage.
|
|||
html/text_event_test: Fail # Issue 17893
|
||||
html/webgl_1_test: Pass, Fail # Issue 8219
|
||||
|
||||
[ $compiler == dart2js && $runtime == ff && $strong ]
|
||||
html/gamepad_test: RuntimeError
|
||||
html/interactive_media_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == ie11 ]
|
||||
html/element_types_content_test: RuntimeError # Issue 29922
|
||||
html/element_types_datalist_test: RuntimeError # Issue 29922
|
||||
|
@ -428,7 +425,12 @@ async/timer_not_available_test: RuntimeError
|
|||
|
||||
[ $compiler == dart2js && $runtime == safari ]
|
||||
html/audiobuffersourcenode_test: RuntimeError
|
||||
html/audiobuffersourcenode_test: Pass, RuntimeError
|
||||
html/callback_list_test: SkipByDesign # FileSystem not supported in Safari.
|
||||
html/canvasrenderingcontext2d_test/arc: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/drawImage_canvas_element: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/drawImage_image_element: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/fillText: Pass, RuntimeError
|
||||
html/css_test/functional/functional: RuntimeError # Issue 32576
|
||||
html/custom/attribute_changed_callback_test: RuntimeError, Timeout
|
||||
html/custom/constructor_calls_created_synchronously_test: Pass, Timeout
|
||||
|
@ -439,26 +441,10 @@ html/element_types_datalist_test: RuntimeError # Issue 29922
|
|||
html/element_types_shadow_test: RuntimeError # Issue 29922
|
||||
html/file_sample_test: Skip # FileSystem not supported on Safari.
|
||||
html/fileapi_supported_throws_test: Skip # FileSystem not supported on Safari
|
||||
html/storage_promise_test: RuntimeError # Not supported on Safari
|
||||
html/xhr_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $runtime == safari && $strong ]
|
||||
html/audiobuffersourcenode_test: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/arc: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/drawImage_canvas_element: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/drawImage_image_element: Pass, RuntimeError
|
||||
html/canvasrenderingcontext2d_test/fillText: Pass, RuntimeError
|
||||
html/interactive_media_test: SkipSlow
|
||||
html/notification_test: Pass, RuntimeError # Safari doesn't let us access the fields of the Notification to verify them.
|
||||
|
||||
[ $compiler == dart2js && $runtime == safari && !$strong ]
|
||||
convert/json_test: Fail # https://bugs.webkit.org/show_bug.cgi?id=134920
|
||||
html/fontface_loaded_test: RuntimeError # FontFace polyfill?
|
||||
html/fontface_test: Fail # FontFace polyfill?
|
||||
html/notification_test: Fail # Safari doesn't let us access the fields of the Notification to verify them.
|
||||
|
||||
[ $compiler == dart2js && $runtime != safari && !$strong ]
|
||||
html/element_classes_test: RuntimeError
|
||||
html/storage_promise_test: RuntimeError # Not supported on Safari
|
||||
html/xhr_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $system == linux ]
|
||||
html/interactive_geolocation_test: Skip # Requires allowing geo location.
|
||||
|
@ -468,20 +454,18 @@ html/xhr_test: RuntimeError
|
|||
|
||||
[ $compiler == dart2js && $browser ]
|
||||
html/custom/created_callback_test: RuntimeError
|
||||
html/element_classes_svg_test: RuntimeError
|
||||
html/js_array_test: RuntimeError
|
||||
html/js_typed_interop_lazy_test/01: RuntimeError
|
||||
html/notification_permission_test: Timeout, Pass # Issue 32002
|
||||
html/private_extension_member_test: RuntimeError
|
||||
html/typed_arrays_range_checks_test: RuntimeError
|
||||
js/null_test: RuntimeError # Issue 30652
|
||||
|
||||
[ $compiler == dart2js && $browser && $csp ]
|
||||
html/custom/element_upgrade_test: Fail # Issue 17298
|
||||
html/custom/js_custom_test: Fail # Issue 14643
|
||||
|
||||
[ $compiler == dart2js && $browser && $strong ]
|
||||
html/element_classes_svg_test: RuntimeError
|
||||
html/js_array_test: RuntimeError
|
||||
html/typed_arrays_range_checks_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $checked ]
|
||||
async/stream_listen_zone_test: RuntimeError
|
||||
convert/utf85_test: Pass, Slow # Issue 12029.
|
||||
|
@ -671,8 +655,6 @@ html/js_typed_interop_test: CompileTimeError
|
|||
[ $compiler == dart2js && $ie ]
|
||||
html/fontface_loaded_test: RuntimeError # FontFace polyfill?
|
||||
html/fontface_test: Fail # Fontface not supported on ie
|
||||
|
||||
[ $compiler == dart2js && $ie && $strong ]
|
||||
html/interactive_media_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && $minified ]
|
||||
|
@ -752,17 +734,6 @@ html/typed_arrays_1_test/arrays: RuntimeError
|
|||
html/typed_arrays_1_test/supported: RuntimeError
|
||||
html/webgl_1_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'.
|
||||
|
||||
[ $compiler == dart2js && $strong ]
|
||||
async/future_or_type_test: RuntimeError
|
||||
async/slow_consumer2_test: RuntimeError
|
||||
async/stream_distinct_test: RuntimeError
|
||||
collection/list_test: RuntimeError
|
||||
html/element_classes_test: RuntimeError
|
||||
|
||||
[ $compiler == dart2js && !$strong ]
|
||||
html/custom/element_upgrade_failure_test: MissingCompileTimeError
|
||||
html/element_classes_svg_test: RuntimeError # Expected runtime type check only in strong mode.
|
||||
|
||||
[ $compiler == dart2js && ($runtime == chrome || $runtime == ff) ]
|
||||
async/slow_consumer2_test: SkipSlow # Times out. Issue 22050
|
||||
convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050
|
||||
|
|
|
@ -17,12 +17,29 @@ async/timer_not_available_test: RuntimeError
|
|||
isolate/ping_pause_test: Skip # Timeout
|
||||
|
||||
[ $compiler == dartkb ]
|
||||
convert/streamed_conversion_json_utf8_decode_test: Pass, Timeout # Please triage.
|
||||
isolate/isolate_complex_messages_test: Pass, Crash # runtime/vm/object.cc: 17395: error: expected: type_arguments.IsNull() || type_arguments.IsCanonical()
|
||||
isolate/mandel_isolate_test: Pass, Timeout # Please triage.
|
||||
isolate/spawn_uri_exported_main_test: Pass, RuntimeError # Please triage: Expect.fail('Isolate was not spawned successfully.')
|
||||
mirrors/*: Skip # Mirrors are not yet supported in bytecode modes.
|
||||
mirrors/invocation_fuzz_test/emptyarray: Skip # Times out, issue 32232
|
||||
mirrors/invocation_fuzz_test/false: Skip # Times out, issue 32232
|
||||
mirrors/library_uri_io_test: RuntimeError # Platform.script points to dill file.
|
||||
mirrors/method_mirror_location_test: Crash # runtime/lib/mirrors.cc: 1634: error: expected: token_pos != TokenPosition::kNoSource
|
||||
|
||||
[ $compiler == fasta ]
|
||||
html/*: Skip # TODO(ahe): Make dart:html available.
|
||||
isolate/browser/*: Skip # TODO(ahe): Make dart:html available.
|
||||
isolate/isolate_stress_test: CompileTimeError
|
||||
js/*: Skip # TODO(ahe): Make dart:js available.
|
||||
mirrors/deferred_type_test: CompileTimeError
|
||||
mirrors/metadata_allowed_values_test/02: MissingCompileTimeError
|
||||
mirrors/metadata_allowed_values_test/27: MissingCompileTimeError
|
||||
mirrors/metadata_constructor_arguments_test/04: MissingCompileTimeError
|
||||
mirrors/mirrors_nsm_mismatch_test: CompileTimeError
|
||||
mirrors/mirrors_nsm_test/dart2js: CompileTimeError
|
||||
mirrors/mirrors_nsm_test/none: CompileTimeError
|
||||
mirrors/native_class_test: CompileTimeError
|
||||
|
||||
[ $fasta ]
|
||||
async/future_or_type_test: CompileTimeError # Issue 34626
|
||||
|
@ -32,19 +49,19 @@ mirrors/metadata_allowed_values_test/14: MissingCompileTimeError
|
|||
mirrors/redirecting_factory_test/01: CompileTimeError # Issue 34714
|
||||
mirrors/redirecting_factory_test/none: CompileTimeError # Issue 34714
|
||||
|
||||
[ $arch == simdbc64 && $mode == debug && $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $arch == simdbc64 && $mode == debug && $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
isolate/isolate_complex_messages_test: Crash # http://dartbug.com/33128
|
||||
|
||||
[ $arch == simdbc64 && $hot_reload_rollback ]
|
||||
convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Uses --verify_before_gc --verify_after_gc --old_gen_growth_rate=1 flags
|
||||
|
||||
[ $arch == simdbc64 && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $arch == simdbc64 && ($compiler == dartk || $compiler == dartkb) ]
|
||||
isolate/issue_24243_parent_isolate_test: RuntimeError # dartbug.com/35373
|
||||
|
||||
[ $arch == x64 && $builder_tag == asan && $compiler == dartk ]
|
||||
mirrors/dynamic_load_test: Fail # Memory leak (issue 34724)
|
||||
|
||||
[ $arch == x64 && $mode == debug && $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $arch == x64 && $mode == debug && $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
mirrors/invocation_fuzz_test: Skip # Because it times out, issue 29439.
|
||||
|
||||
[ $arch == x64 && ($hot_reload || $hot_reload_rollback) ]
|
||||
|
@ -65,28 +82,11 @@ mirrors/invocation_fuzz_test/string: Pass, Crash, RuntimeError # Flaky on vm-ker
|
|||
[ $compiler == app_jitk && ($mode == product || $mode == release) ]
|
||||
isolate/spawn_uri_nested_vm_test: Skip # Timeout, Issue 33385
|
||||
|
||||
[ $compiler != dart2js && $fasta && !$strong ]
|
||||
isolate/browser/compute_this_script_browser_test: CompileTimeError
|
||||
isolate/browser/package_resolve_browser_hook2_test: CompileTimeError
|
||||
isolate/browser/package_resolve_browser_hook_test: CompileTimeError
|
||||
isolate/browser/package_resolve_browser_test: CompileTimeError
|
||||
|
||||
# The failures below still need to be investigated and possibly fixed, or marked as skipped.
|
||||
[ $compiler == dartkb && $strong ]
|
||||
convert/streamed_conversion_json_utf8_decode_test: Pass, Timeout # Please triage.
|
||||
isolate/isolate_complex_messages_test: Pass, Crash # runtime/vm/object.cc: 17395: error: expected: type_arguments.IsNull() || type_arguments.IsCanonical()
|
||||
isolate/mandel_isolate_test: Pass, Timeout # Please triage.
|
||||
isolate/spawn_uri_exported_main_test: Pass, RuntimeError # Please triage: Expect.fail('Isolate was not spawned successfully.')
|
||||
mirrors/invocation_fuzz_test/emptyarray: Skip # Times out, issue 32232
|
||||
mirrors/invocation_fuzz_test/false: Skip # Times out, issue 32232
|
||||
mirrors/library_uri_io_test: RuntimeError # Platform.script points to dill file.
|
||||
mirrors/method_mirror_location_test: Crash # runtime/lib/mirrors.cc: 1634: error: expected: token_pos != TokenPosition::kNoSource
|
||||
|
||||
[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled && $strong ]
|
||||
[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled ]
|
||||
isolate/static_function_test: Skip # Flaky (https://github.com/dart-lang/sdk/issues/30063).
|
||||
|
||||
# ===== dartkp + dart_precompiled status lines =====
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled && $strong ]
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled ]
|
||||
async/slow_consumer2_test: RuntimeError # Issue 31402 (Invocation arguments)
|
||||
async/stream_distinct_test: RuntimeError
|
||||
async/timer_not_available_test: RuntimeError
|
||||
|
@ -98,32 +98,18 @@ isolate/ping_pause_test: Pass, Timeout
|
|||
isolate/spawn_uri_nested_vm_test: Pass, Timeout
|
||||
mirrors/*: SkipByDesign # Mirrors are not supported in AOT mode.
|
||||
|
||||
[ $compiler == dartkp && !$strong ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ $compiler == fasta && $strong ]
|
||||
isolate/isolate_stress_test: CompileTimeError
|
||||
mirrors/deferred_type_test: CompileTimeError
|
||||
mirrors/metadata_allowed_values_test/02: MissingCompileTimeError
|
||||
mirrors/metadata_allowed_values_test/27: MissingCompileTimeError
|
||||
mirrors/metadata_constructor_arguments_test/04: MissingCompileTimeError
|
||||
mirrors/mirrors_nsm_mismatch_test: CompileTimeError
|
||||
mirrors/mirrors_nsm_test/dart2js: CompileTimeError
|
||||
mirrors/mirrors_nsm_test/none: CompileTimeError
|
||||
mirrors/native_class_test: CompileTimeError
|
||||
|
||||
[ $mode == debug && $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $mode == debug && $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
mirrors/other_declarations_location_test: Crash # Issue 33325 (assertion error, TypeParameter not having position).
|
||||
|
||||
[ $mode == debug && $hot_reload_rollback && ($compiler == dartk || $compiler == dartkb) ]
|
||||
isolate/message3_test/constList_identical: Skip # Timeout
|
||||
|
||||
[ $runtime == vm && $checked && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $runtime == vm && $checked && ($compiler == dartk || $compiler == dartkb) ]
|
||||
mirrors/redirecting_factory_different_type_test/none: RuntimeError # Issue 28424
|
||||
mirrors/reflected_type_generics_test/02: Pass
|
||||
|
||||
# ===== dartk + vm status lines =====
|
||||
[ $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
async/slow_consumer2_test: CompileTimeError # Issue 31402 (Invocation arguments)
|
||||
async/timer_not_available_test: RuntimeError
|
||||
html/*: SkipByDesign # dart:html not supported on VM.
|
||||
|
@ -214,25 +200,6 @@ mirrors/typedef_reflected_type_test/none: RuntimeError
|
|||
mirrors/typedef_test: RuntimeError
|
||||
mirrors/typevariable_mirror_metadata_test: RuntimeError
|
||||
|
||||
[ $fasta && !$strong ]
|
||||
isolate/isolate_import_test/01: MissingCompileTimeError
|
||||
isolate/isolate_stress_test: CompileTimeError
|
||||
mirrors/generics_test/01: MissingCompileTimeError
|
||||
mirrors/metadata_allowed_values_test/02: MissingCompileTimeError
|
||||
mirrors/metadata_allowed_values_test/27: MissingCompileTimeError
|
||||
mirrors/metadata_constructor_arguments_test/04: MissingCompileTimeError
|
||||
mirrors/native_class_test: CompileTimeError
|
||||
mirrors/redirecting_factory_different_type_test/01: MissingCompileTimeError
|
||||
mirrors/reflect_class_test/01: MissingCompileTimeError
|
||||
mirrors/reflect_class_test/02: MissingCompileTimeError
|
||||
mirrors/reflected_type_classes_test/01: MissingCompileTimeError
|
||||
mirrors/reflected_type_test/01: MissingCompileTimeError
|
||||
mirrors/regress_16321_test/01: MissingCompileTimeError
|
||||
mirrors/top_level_accessors_test/01: MissingCompileTimeError
|
||||
typed_data/float32x4_static_test: MissingCompileTimeError
|
||||
typed_data/int32x4_static_test/01: MissingCompileTimeError
|
||||
typed_data/int32x4_static_test/02: MissingCompileTimeError
|
||||
|
||||
[ $hot_reload_rollback && ($compiler == dartk || $compiler == dartkb) ]
|
||||
isolate/illegal_msg_function_test: Skip # Timeout
|
||||
isolate/pause_test: Skip # Timeout
|
||||
|
@ -240,15 +207,28 @@ isolate/pause_test: Skip # Timeout
|
|||
# Enabling of dartk for sim{arm,arm64,dbc64} revealed these test failures, which
|
||||
# are to be triaged. Isolate tests are skipped on purpose due to the usage of
|
||||
# batch mode.
|
||||
[ $strong && ($arch == simarm || $arch == simarm64 || $arch == simdbc64) && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ ($arch == simarm || $arch == simarm64 || $arch == simdbc64) && ($compiler == dartk || $compiler == dartkb) ]
|
||||
isolate/mandel_isolate_test: Pass, Timeout
|
||||
isolate/nested_spawn2_test: Pass, RuntimeError # RuntimeError caused by timeout
|
||||
mirrors/library_uri_io_test: RuntimeError # Please triage.
|
||||
|
||||
[ $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ ($compiler == dartk || $compiler == dartkb) && ($hot_reload || $hot_reload_rollback) ]
|
||||
isolate/mandel_isolate_test: Pass, Timeout, RuntimeError # Test can time out which results in runtime error
|
||||
isolate/message4_test: Pass, Timeout, Crash # Timeout and sporadic crash (issue 33824)
|
||||
mirrors/dynamic_load_test: Crash
|
||||
mirrors/library_uri_io_test: Skip # Timeout
|
||||
mirrors/library_uri_package_test: Skip # Timeout
|
||||
|
||||
[ $compiler == app_jitk || $compiler == dartk || $compiler == dartkb || $compiler == dartkp ]
|
||||
html/*: SkipByDesign
|
||||
isolate/browser/*: SkipByDesign
|
||||
js/*: SkipByDesign
|
||||
|
||||
[ $compiler == dartk || $compiler == dartkb ]
|
||||
async/slow_consumer2_test: RuntimeError # Issue 31402 (Invocation arguments)
|
||||
async/stream_distinct_test: RuntimeError
|
||||
isolate/ping_pause_test: RuntimeError
|
||||
isolate/ping_pause_test: Skip # Issues 32137 and 32138
|
||||
isolate/request_reply_test: Pass, Timeout
|
||||
isolate/stacktrace_message_test: RuntimeError
|
||||
mirrors/constructor_optional_args_test: RuntimeError
|
||||
|
@ -264,24 +244,5 @@ mirrors/operator_test: RuntimeError
|
|||
mirrors/redirecting_factory_different_type_test/none: RuntimeError
|
||||
mirrors/redirecting_factory_reflection_test: RuntimeError
|
||||
|
||||
# ===== Skip dartk and darkp in !$strong mode ====
|
||||
[ !$strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ ($compiler == dartk || $compiler == dartkb) && ($hot_reload || $hot_reload_rollback) ]
|
||||
isolate/mandel_isolate_test: Pass, Timeout, RuntimeError # Test can time out which results in runtime error
|
||||
isolate/message4_test: Pass, Timeout, Crash # Timeout and sporadic crash (issue 33824)
|
||||
mirrors/dynamic_load_test: Crash
|
||||
mirrors/library_uri_io_test: Skip # Timeout
|
||||
mirrors/library_uri_package_test: Skip # Timeout
|
||||
|
||||
[ $compiler == app_jitk || $compiler == dartk || $compiler == dartkb || $compiler == dartkp ]
|
||||
html/*: SkipByDesign
|
||||
isolate/browser/*: SkipByDesign
|
||||
js/*: SkipByDesign
|
||||
|
||||
[ $compiler == dartk || $compiler == dartkb ]
|
||||
isolate/ping_pause_test: Skip # Issues 32137 and 32138
|
||||
|
||||
[ $hot_reload || $hot_reload_rollback ]
|
||||
isolate/issue_6610_test: Skip # Sources are looked up on every reload request.
|
||||
|
|
|
@ -18,6 +18,7 @@ convert/streamed_conversion_json_utf8_decode_test: Skip # Verification not yet i
|
|||
convert/utf85_test: Skip # Pass, Slow Issue 20111.
|
||||
|
||||
[ $compiler != app_jitk && $compiler != dartk && $compiler != dartkb && $runtime == vm ]
|
||||
async/future_or_only_in_async_test/00: MissingCompileTimeError
|
||||
convert/streamed_conversion_json_utf8_decode_test: Pass, Slow # Infrequent timeouts.
|
||||
html/*: SkipByDesign # dart:html not supported on VM.
|
||||
js/datetime_roundtrip_test: CompileTimeError
|
||||
|
@ -40,24 +41,6 @@ mirrors/redirecting_factory_test/none: RuntimeError
|
|||
[ $compiler != app_jitk && $compiler != dartk && $compiler != dartkb && $runtime == vm && !$checked ]
|
||||
mirrors/inference_and_no_such_method_test: RuntimeError
|
||||
|
||||
[ $compiler != app_jitk && $compiler != dartk && $compiler != dartkb && $runtime == vm && $strong ]
|
||||
async/future_or_only_in_async_test/00: MissingCompileTimeError
|
||||
|
||||
[ $compiler != app_jitk && $compiler != dartk && $compiler != dartkb && $runtime == vm && !$strong ]
|
||||
mirrors/redirecting_factory_test/02: MissingCompileTimeError
|
||||
mirrors/redirecting_factory_test/03: MissingCompileTimeError
|
||||
mirrors/redirecting_factory_test/04: MissingCompileTimeError
|
||||
|
||||
[ $compiler != dartk && $compiler != dartkb && $runtime == vm && !$strong ]
|
||||
mirrors/reflect_class_test/01: MissingCompileTimeError
|
||||
mirrors/reflect_class_test/02: MissingCompileTimeError
|
||||
mirrors/reflected_type_classes_test/01: MissingCompileTimeError
|
||||
mirrors/reflected_type_classes_test/02: MissingCompileTimeError
|
||||
mirrors/reflected_type_classes_test/03: MissingCompileTimeError
|
||||
mirrors/reflected_type_test/01: MissingCompileTimeError
|
||||
mirrors/reflected_type_test/02: MissingCompileTimeError
|
||||
mirrors/reflected_type_test/03: MissingCompileTimeError
|
||||
|
||||
[ $runtime == vm && $system == fuchsia ]
|
||||
async/first_regression_test: RuntimeError
|
||||
async/future_timeout_test: RuntimeError
|
||||
|
@ -96,9 +79,6 @@ mirrors/invocation_fuzz_test: Crash
|
|||
mirrors/library_uri_io_test: RuntimeError
|
||||
mirrors/library_uri_package_test: RuntimeError
|
||||
|
||||
[ $runtime == vm && !$checked && !$strong ]
|
||||
mirrors/regress_16321_test/01: MissingCompileTimeError
|
||||
|
||||
[ $runtime == vm && $no_preview_dart_2 ]
|
||||
async/async_no_await_zones_test: RuntimeError # not supported in Dart 1 mode.
|
||||
|
||||
|
|
|
@ -68,14 +68,11 @@ io/wait_for_event_zone_caught_error_test: SkipByDesign # Uses mirrors.
|
|||
io/wait_for_event_zone_test: SkipByDesign # Uses mirrors.
|
||||
io/wait_for_test: SkipByDesign # Uses mirrors.
|
||||
|
||||
[ !$strong ]
|
||||
float_array_static_test: MissingCompileTimeError
|
||||
|
||||
[ $builder_tag == swarming && $system == macos ]
|
||||
io/*: Skip # Issue 30618
|
||||
|
||||
# All static_tests have expected compile-time errors.
|
||||
[ $compiler != app_jitk && $compiler != dart2analyzer && $compiler != dartdevc && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $runtime != none && $strong ]
|
||||
[ $compiler != app_jitk && $compiler != dart2analyzer && $compiler != dartdevc && $compiler != dartk && $compiler != dartkb && $compiler != dartkp && $runtime != none ]
|
||||
float_array_static_test: MissingCompileTimeError
|
||||
|
||||
[ $compiler == none && $runtime == vm && $system == fuchsia ]
|
||||
|
@ -91,9 +88,6 @@ dwarf_stack_trace_test: SkipByDesign # Due to instruction canonicalization we ca
|
|||
[ $mode == release && $runtime == vm && $system == macos ]
|
||||
io/named_pipe_script_test: Pass, RuntimeError # Issue 28737
|
||||
|
||||
[ $runtime == none && !$strong ]
|
||||
io/process_exit_negative_test: Fail, OK # Must be run to exit with non-zero exit code.
|
||||
|
||||
[ $runtime == vm && $system == linux ]
|
||||
io/http_basic_test: Pass, Slow, Timeout # Issue 28046, These tests might be slow on an opt counter threshold bot. They also time out on the bot occasionally => flaky test issue 28046
|
||||
io/http_launch_test: Pass, Slow, Timeout # Issue 28046, These tests might be slow on an opt counter threshold bot. They also time out on the bot occasionally => flaky test issue 28046
|
||||
|
@ -108,7 +102,13 @@ io/socket_many_connections_test: Skip # This test fails with "Too many open file
|
|||
[ !$preview_dart_2 && ($runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # Deprecating all Dart1 modes of execution
|
||||
|
||||
[ $strong && ($compiler == dartk || $compiler == dartkb || $compiler == dartkp) ]
|
||||
[ $arch == arm || $arch == arm64 || $runtime != vm || $mode == debug && $system == windows ]
|
||||
fragmentation_test: Skip
|
||||
|
||||
[ $compiler == dart2js || $compiler == dartdevc || $compiler == dartdevk ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ $compiler == dartk || $compiler == dartkb || $compiler == dartkp ]
|
||||
io/file_error_test: RuntimeError
|
||||
io/file_test: RuntimeError
|
||||
io/http_auth_digest_test: RuntimeError
|
||||
|
@ -125,37 +125,6 @@ io/web_socket_pipe_test: RuntimeError
|
|||
io/web_socket_protocol_processor_test: CompileTimeError
|
||||
io/zlib_test: RuntimeError
|
||||
|
||||
[ !$strong && ($compiler == dartk || $compiler == dartkb || $compiler == dartkp) ]
|
||||
io/compile_all_test: Skip # Crashes
|
||||
io/http_client_connect_test: Skip # Flaky.
|
||||
io/http_content_length_test: Skip # Flaky.
|
||||
io/http_proxy_test: Skip # Flaky.
|
||||
io/http_response_deadline_test: Skip # Flaky.
|
||||
io/http_reuse_server_port_test: Skip # Flaky.
|
||||
io/http_server_close_response_after_error_test: Skip # Flaky.
|
||||
io/http_shutdown_test: Skip # Flaky.
|
||||
io/raw_secure_server_closing_test: Skip # Flaky.
|
||||
io/secure_multiple_client_server_test: Skip # Flaky.
|
||||
io/secure_server_closing_test: Skip # Flaky.
|
||||
io/secure_server_socket_test: Skip # Flaky.
|
||||
io/web_socket_error_test: Skip # Flaky
|
||||
io/web_socket_ping_test: Skip # Flaky.
|
||||
io/web_socket_test: Skip # Flaky.
|
||||
map_insert_remove_oom_test: Skip # Heap limit too low.
|
||||
no_support_debugger_test: Skip # kernel-service snapshot not compatible with flag disabled
|
||||
package/package1_test: CompileTimeError
|
||||
package/package_test: CompileTimeError
|
||||
package/scenarios/invalid/invalid_utf8_test: CompileTimeError
|
||||
package/scenarios/invalid/non_existent_packages_file_test: CompileTimeError
|
||||
package/scenarios/invalid/same_package_twice_test: CompileTimeError
|
||||
regress_29350_test: MissingCompileTimeError
|
||||
|
||||
[ $arch == arm || $arch == arm64 || $runtime != vm || $mode == debug && $system == windows ]
|
||||
fragmentation_test: Skip
|
||||
|
||||
[ $compiler == dart2js || $compiler == dartdevc || $compiler == dartdevk ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ $mode == product || $runtime == dart_precompiled ]
|
||||
no_assert_test: SkipByDesign
|
||||
|
||||
|
|
|
@ -35,19 +35,36 @@ io/web_socket_protocol_processor_test: CompileTimeError
|
|||
io/zlib_test: RuntimeError
|
||||
|
||||
[ $compiler == dartkb ]
|
||||
io/dart_std_io_pipe_test: Pass, Timeout # Please triage
|
||||
io/platform_resolved_executable_test/00: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_resolved_executable_test/01: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_resolved_executable_test/02: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_resolved_executable_test/03: RuntimeError
|
||||
io/platform_resolved_executable_test/04: RuntimeError
|
||||
io/platform_resolved_executable_test/05: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_test: RuntimeError # Platform.script points to dill file.
|
||||
io/test_extension_fail_test: RuntimeError # Platform.script points to dill file.
|
||||
io/test_extension_test: RuntimeError # Platform.script points to dill file.
|
||||
no_lazy_dispatchers_test: SkipByDesign # KBC interpreter doesn't support --no_lazy_dispatchers
|
||||
|
||||
[ $compiler == dartkp ]
|
||||
io/arguments_test: Fail # Test harness passes runtime arguments to the compiler
|
||||
io/test_runner_test: SkipByDesign # Is not relevant for AOT.
|
||||
|
||||
[ $compiler == fasta ]
|
||||
io/http_cookie_date_test: CompileTimeError
|
||||
io/http_headers_test: CompileTimeError
|
||||
io/http_parser_test: CompileTimeError
|
||||
io/secure_socket_argument_test: CompileTimeError
|
||||
io/web_socket_protocol_processor_test: CompileTimeError
|
||||
|
||||
[ $system == android ]
|
||||
entrypoints_verification_test: Skip # Requires shared objects which the test script doesn't "adb push".
|
||||
|
||||
[ $fasta ]
|
||||
deferred_transitive_import_error_test: CompileTimeError
|
||||
package/package1_test: CompileTimeError
|
||||
package/package_isolate_test: CompileTimeError
|
||||
package/package_test: CompileTimeError
|
||||
package/scenarios/invalid/invalid_utf8_test: CompileTimeError
|
||||
package/scenarios/invalid/non_existent_packages_file_test: CompileTimeError
|
||||
|
@ -56,10 +73,10 @@ package/scenarios/invalid/same_package_twice_test: CompileTimeError
|
|||
[ $arch == ia32 && $builder_tag == optimization_counter_threshold ]
|
||||
io/file_lock_test: SkipSlow # Timeout
|
||||
|
||||
[ $arch == ia32 && $compiler == dartk && $strong ]
|
||||
[ $arch == ia32 && $compiler == dartk ]
|
||||
io/dart_std_io_pipe_test: Timeout, Pass # Issue 34723
|
||||
|
||||
[ $arch == simarm64 && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $arch == simarm64 && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/http_bind_test: Pass, Slow
|
||||
|
||||
[ $arch == x64 && $builder_tag == asan && $compiler == dartk ]
|
||||
|
@ -71,19 +88,7 @@ io/test_extension_fail_test: Fail # Memory leak (issue 34724)
|
|||
[ $builder_tag == optimization_counter_threshold && ($compiler == dartk || $compiler == dartkb) ]
|
||||
map_insert_remove_oom_test: Skip # Heap limit too low.
|
||||
|
||||
# The failures below still need to be investigated and possibly fixed, or marked as skipped.
|
||||
[ $compiler == dartkb && $strong ]
|
||||
io/dart_std_io_pipe_test: Pass, Timeout # Please triage
|
||||
io/platform_resolved_executable_test/00: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_resolved_executable_test/01: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_resolved_executable_test/02: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_resolved_executable_test/05: RuntimeError # Reruns the same script (dill file without AST) without passing --enable-interpreter or --use-bytecode-compiler.
|
||||
io/platform_test: RuntimeError # Platform.script points to dill file.
|
||||
io/test_extension_fail_test: RuntimeError # Platform.script points to dill file.
|
||||
io/test_extension_test: RuntimeError # Platform.script points to dill file.
|
||||
no_lazy_dispatchers_test: SkipByDesign # KBC interpreter doesn't support --no_lazy_dispatchers
|
||||
|
||||
[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled && $strong ]
|
||||
[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled ]
|
||||
io/raw_socket_test: Crash
|
||||
io/skipping_dart2js_compilations_test: Crash
|
||||
io/socket_exception_test: Pass, Crash
|
||||
|
@ -92,14 +97,10 @@ io/socket_info_ipv4_test: Pass, Crash
|
|||
io/socket_info_ipv6_test: Pass, Crash
|
||||
io/socket_port_test: Pass, Crash
|
||||
|
||||
[ $compiler == dartkp && $mode == product && $runtime == dart_precompiled && $strong ]
|
||||
[ $compiler == dartkp && $mode == product && $runtime == dart_precompiled ]
|
||||
io/compile_all_test: Pass
|
||||
|
||||
# ===== dartkp + dart_precompiled status lines =====
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled && $system != windows && $strong ]
|
||||
io/namespace_test: RuntimeError
|
||||
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled && $strong ]
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled ]
|
||||
io/compile_all_test: Skip # We do not support --compile-all for precompilation
|
||||
io/file_fuzz_test: RuntimeError, Pass
|
||||
io/http_client_connect_test: Skip # Flaky.
|
||||
|
@ -131,20 +132,14 @@ no_support_debugger_test: Skip # kernel-service snapshot not compatible with fla
|
|||
regress_29350_test: MissingCompileTimeError
|
||||
regress_29350_test/none: Pass # Issue 31537
|
||||
|
||||
# ===== dartkp + dart_precompiled status lines =====
|
||||
[ $compiler == dartkp && $runtime == dart_precompiled && $system != windows ]
|
||||
io/namespace_test: RuntimeError
|
||||
|
||||
[ $compiler == dartkp && $system == android ]
|
||||
io/http_close_test: Timeout # Issue 28380
|
||||
|
||||
[ $compiler == dartkp && !$strong ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ $compiler == fasta && $strong ]
|
||||
io/http_cookie_date_test: CompileTimeError
|
||||
io/http_headers_test: CompileTimeError
|
||||
io/http_parser_test: CompileTimeError
|
||||
io/secure_socket_argument_test: CompileTimeError
|
||||
io/web_socket_protocol_processor_test: CompileTimeError
|
||||
|
||||
[ $mode == debug && $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $mode == debug && $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/file_lock_test: Slow, Pass
|
||||
io/raw_socket_test: Crash
|
||||
io/socket_exception_test: Pass, Crash
|
||||
|
@ -156,7 +151,7 @@ io/socket_port_test: Pass, Crash
|
|||
[ $mode == debug && $hot_reload && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/web_socket_ping_test: Crash, Pass
|
||||
|
||||
[ $runtime == vm && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ $runtime == vm && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/http_client_request_test: Pass, Timeout
|
||||
io/secure_builtin_roots_test: Pass, Timeout
|
||||
io/socket_finalizer_test: Pass, Timeout
|
||||
|
@ -164,22 +159,14 @@ no_support_debugger_test: Skip # kernel-service snapshot not compatible with fla
|
|||
regress_29350_test: MissingCompileTimeError
|
||||
regress_29350_test/none: Pass # Issue 31537
|
||||
|
||||
[ $system == windows && $strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/compile_all_test: Pass, Fail # Possibly related to issue 32373
|
||||
map_insert_remove_oom_test: Skip # Heap limit too low.
|
||||
|
||||
[ $system == windows && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/compile_all_test: Pass, Fail # Possibly related to issue 32373
|
||||
io/dart_std_io_pipe_test: Pass, Slow
|
||||
io/secure_builtin_roots_test: Skip # Issues 32137 and 32138.
|
||||
io/test_extension_fail_test: RuntimeError, Pass # Issue 32137.
|
||||
io/test_extension_test: RuntimeError, Pass # Issue 32137.
|
||||
io/wait_for_event_isolate_test: Skip # Issues 32137 and 32138.
|
||||
|
||||
[ $fasta && $strong ]
|
||||
package/package_isolate_test: CompileTimeError
|
||||
|
||||
[ $fasta && !$strong ]
|
||||
regress_29350_test/none: MissingCompileTimeError
|
||||
map_insert_remove_oom_test: Skip # Heap limit too low.
|
||||
|
||||
[ $hot_reload && ($compiler == dartk || $compiler == dartkb) ]
|
||||
io/http_no_reason_phrase_test: Pass, Crash
|
||||
|
@ -192,7 +179,7 @@ io/echo_server_stream_test: Pass, Slow
|
|||
# Enabling of dartk for sim{arm,arm64,dbc64} revealed these test failures, which
|
||||
# are to be triaged. Isolate tests are skipped on purpose due to the usage of
|
||||
# batch mode.
|
||||
[ $strong && ($arch == simarm || $arch == simarm64 || $arch == simdbc64) && ($compiler == dartk || $compiler == dartkb) ]
|
||||
[ ($arch == simarm || $arch == simarm64 || $arch == simdbc64) && ($compiler == dartk || $compiler == dartkb) ]
|
||||
fragmentation_test: Timeout, Pass
|
||||
io/dart_std_io_pipe_test: Timeout, Pass
|
||||
io/directory_list_sync_test: Timeout, Pass # Please triage.
|
||||
|
@ -204,13 +191,6 @@ io/test_extension_fail_test: RuntimeError # Platform.script points to dill file.
|
|||
io/test_extension_test: RuntimeError # Platform.script points to dill file.
|
||||
map_insert_remove_oom_test: Skip # Heap limit too low.
|
||||
|
||||
# ===== Skip dartk and darkp in !$strong mode ====
|
||||
[ !$strong && ($compiler == dartk || $compiler == dartkb) ]
|
||||
*: SkipByDesign
|
||||
|
||||
[ !$strong && ($compiler == dartk || $compiler == dartkb || $compiler == dartkp || $runtime == dart_precompiled || $runtime == vm) ]
|
||||
*: SkipByDesign # standalone_2 is only supported in strong mode.
|
||||
|
||||
[ ($compiler == dartk || $compiler == dartkb) && ($hot_reload || $hot_reload_rollback) ]
|
||||
io/addlatexhash_test: Skip # Timeout
|
||||
io/http_advanced_test: Skip # Timeout
|
||||
|
@ -228,6 +208,5 @@ io/socket_many_connections_test: Skip # Timeout
|
|||
io/web_socket_compression_test: Skip # Timeout
|
||||
io/web_socket_test: Skip # Timeout
|
||||
|
||||
|
||||
[ $compiler != dartk && $compiler != dartkb && $compiler != dartkp || $compiler == dartkp && $system == windows ]
|
||||
entrypoints_verification_test: SkipByDesign # Requires VM to run. Cannot run in precompiled Windows because the DLL is linked against dart.exe instead of dart_precompiled_runtime.exe.
|
||||
|
|
|
@ -62,9 +62,6 @@ dwarf_stack_trace_test: Pass, RuntimeError # Results will flake due to identical
|
|||
io/namespace_test: RuntimeError
|
||||
io/test_runner_test: RuntimeError
|
||||
|
||||
[ $runtime == dart_precompiled && !$checked && !$strong ]
|
||||
io/file_constructor_test: RuntimeError
|
||||
|
||||
[ $compiler == app_jit || $compiler == precompiler ]
|
||||
io/compile_all_test: Skip # Incompatible flag --compile_all
|
||||
|
||||
|
|
|
@ -88,9 +88,6 @@ io/http_server_close_response_after_error_test: Pass, Timeout # Issue 28370: tim
|
|||
[ $runtime == dart_precompiled && $system == linux && ($arch == simarm || $arch == simarm64 || $arch == x64) ]
|
||||
io/stdout_stderr_non_blocking_test: Pass, Timeout # Issue 35192
|
||||
|
||||
[ $runtime == vm && !$checked && !$strong ]
|
||||
io/file_constructor_test: RuntimeError
|
||||
|
||||
[ $runtime == vm && ($arch == arm || $arch == arm64) ]
|
||||
io/dart_std_io_pipe_test: Timeout, Pass
|
||||
io/file_input_stream_test: Skip # Issue 26109
|
||||
|
|
Loading…
Reference in a new issue