diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 52c6c4fc2b3..4e65f3e6755 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -15,6 +15,39 @@ import scm import subprocess import tempfile + +def _CheckFormat(input_api, identification, extension, windows, + hasFormatErrors): + local_root = input_api.change.RepositoryRoot() + upstream = input_api.change._upstream + unformatted_files = [] + for git_file in input_api.AffectedTextFiles(): + filename = git_file.AbsoluteLocalPath() + if filename.endswith(extension) and hasFormatErrors(filename=filename): + old_version_has_errors = False + try: + path = git_file.LocalPath() + if windows: + # Git expects a linux style path. + path = path.replace(os.sep, '/') + old_contents = scm.GIT.Capture( + ['show', upstream + ':' + path], + cwd=local_root, + strip_out=False) + if hasFormatErrors(contents=old_contents): + old_version_has_errors = True + except subprocess.CalledProcessError as e: + old_version_has_errors = False + + if old_version_has_errors: + print("WARNING: %s has existing and possibly new %s issues" % + (git_file.LocalPath(), identification)) + else: + unformatted_files.append(filename) + + return unformatted_files + + def _CheckBuildStatus(input_api, output_api): results = [] status_check = input_api.canned_checks.CheckTreeIsOpen( @@ -24,6 +57,7 @@ def _CheckBuildStatus(input_api, output_api): results.extend(status_check) return results + def _CheckDartFormat(input_api, output_api): local_root = input_api.change.RepositoryRoot() upstream = input_api.change._upstream @@ -57,33 +91,8 @@ def _CheckDartFormat(input_api, output_api): # parsed and formatted. Don't treat those as errors. return process.returncode == 1 - unformatted_files = [] - for git_file in input_api.AffectedTextFiles(): - filename = git_file.AbsoluteLocalPath() - if filename.endswith('.dart'): - if HasFormatErrors(filename=filename): - old_version_has_errors = False - try: - path = git_file.LocalPath() - if windows: - # Git expects a linux style path. - path = path.replace(os.sep, '/') - old_contents = scm.GIT.Capture( - ['show', upstream + ':' + path], - cwd=local_root, - strip_out=False) - if HasFormatErrors(contents=old_contents): - old_version_has_errors = True - except subprocess.CalledProcessError as e: - # TODO(jacobr): verify that the error really is that the file was - # added for this CL. - old_version_has_errors = False - - if old_version_has_errors: - print("WARNING: %s has existing and possibly new dartfmt issues" % - git_file.LocalPath()) - else: - unformatted_files.append(filename) + unformatted_files = _CheckFormat(input_api, "dartfmt", ".dart", windows, + HasFormatErrors) if unformatted_files: lineSep = " \\\n" @@ -97,6 +106,7 @@ def _CheckDartFormat(input_api, output_api): return [] + def _CheckNewTests(input_api, output_api): testsDirectories = [ # Dart 1 tests Dart 2.0 tests @@ -167,11 +177,62 @@ def _CheckNewTests(input_api, output_api): return result + +def _CheckStatusFiles(input_api, output_api): + local_root = input_api.change.RepositoryRoot() + upstream = input_api.change._upstream + utils = imp.load_source('utils', + os.path.join(local_root, 'tools', 'utils.py')) + + dart = os.path.join(utils.CheckedInSdkPath(), 'bin', 'dart') + lint = os.path.join(local_root, 'pkg', 'status_file', 'bin', 'lint.dart') + + windows = utils.GuessOS() == 'win32' + if windows: + dart += '.bat' + + if not os.path.isfile(dart): + print('WARNING: dart not found: %s' % dart) + return [] + + if not os.path.isfile(lint): + print('WARNING: Status file linter not found: %s' % lint) + return [] + + def HasFormatErrors(filename=None, contents=None): + args = [dart, lint] + (['-t'] if contents else [filename]) + process = subprocess.Popen(args, + stdout=subprocess.PIPE, + stdin=subprocess.PIPE) + process.communicate(input=contents) + return process.returncode != 0 + + unformatted_files = _CheckFormat(input_api, "status file", ".status", + windows, HasFormatErrors) + + if unformatted_files: + normalize = os.path.join(local_root, 'pkg', 'status_file', 'bin', + 'normalize.dart') + lineSep = " \\\n" + if windows: + lineSep = " ^\n"; + return [output_api.PresubmitError( + 'Status files are not normalized.\n' + 'Fix these issues with:\n' + '%s %s -w%s%s' % (dart, normalize, lineSep, + lineSep.join(unformatted_files)))] + + return [] + + def CheckChangeOnCommit(input_api, output_api): return (_CheckBuildStatus(input_api, output_api) + _CheckNewTests(input_api, output_api) + - _CheckDartFormat(input_api, output_api)) + _CheckDartFormat(input_api, output_api) + + _CheckStatusFiles(input_api, output_api)) + def CheckChangeOnUpload(input_api, output_api): return (_CheckNewTests(input_api, output_api) + - _CheckDartFormat(input_api, output_api)) + _CheckDartFormat(input_api, output_api) + + _CheckStatusFiles(input_api, output_api)) diff --git a/runtime/observatory/tests/observatory_ui/observatory_ui.status b/runtime/observatory/tests/observatory_ui/observatory_ui.status index 8c3c55f4dfd..1937c70cc77 100644 --- a/runtime/observatory/tests/observatory_ui/observatory_ui.status +++ b/runtime/observatory/tests/observatory_ui/observatory_ui.status @@ -2,7 +2,10 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ ! $browser || $runtime == drt || $fast_startup] +[ $runtime == chrome || $runtime == ff || $runtime == safari ] +heap_snapshot/element_test: RuntimeError # Issue 27925 + +[ $runtime == drt || !$browser || $fast_startup ] *: SkipByDesign [ $runtime == ff || $runtime == safari ] @@ -10,5 +13,3 @@ allocation_profile: Skip cpu_profile_table: Skip persistent_handles_page: Skip -[ $runtime == ff || $runtime == chrome || $runtime == safari ] -heap_snapshot/element_test: RuntimeError # Issue 27925 diff --git a/runtime/observatory/tests/service/service.status b/runtime/observatory/tests/service/service.status index 177c74b3c9d..e8d35c61f08 100644 --- a/runtime/observatory/tests/service/service.status +++ b/runtime/observatory/tests/service/service.status @@ -1,109 +1,103 @@ # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Flaky failures +field_script_test: Pass, RuntimeError get_allocation_samples_test: Pass, RuntimeError # Inconsistent stack trace -reload_sources_test: Pass, Slow # Reload is slow on the bots +get_isolate_rpc_test: Pass, RuntimeError # Issue 29324 get_retained_size_rpc_test: Pass, RuntimeError # Issue 28193 isolate_lifecycle_test: Pass, RuntimeError # Issue 24174 -field_script_test: Pass, RuntimeError -get_isolate_rpc_test: Pass, RuntimeError # Issue 29324 +reload_sources_test: Pass, Slow # Reload is slow on the bots -[ $system == windows && $mode == debug && $checked ] -async_scope_test: Pass, Slow +[ $arch == arm ] +process_service_test: Pass, Fail # Issue 24344 -[$runtime == vm && $compiler == none && $system == fuchsia] -*: Skip # Not yet triaged. +[ $compiler == app_jit ] +bad_reload_test: RuntimeError # Issue 27806 +complex_reload_test: RuntimeError # Issue 27806 +debugger_location_second_test: Skip # Issue 28180 +evaluate_activation_test/instance: RuntimeError # Issue 27806 +evaluate_activation_test/scope: RuntimeError # Issue 27806 +get_object_rpc_test: RuntimeError # Issue 27806 +get_source_report_test: RuntimeError # Issue 27806 +next_through_closure_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +next_through_create_list_and_map_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +next_through_for_each_loop_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +pause_on_unhandled_async_exceptions2_test: Pass, RuntimeError, Timeout, Crash # Issue 29178 +set_name_rpc_test: RuntimeError # Issue 27806 +step_through_constructor_calls_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +step_through_function_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +step_through_switch_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +step_through_switch_with_continue_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. +unused_changes_in_last_reload_test: RuntimeError # Issue 27806 -[ $system == windows ] -async_generator_breakpoint_test: Skip # Issue 29145 +# Tests with known analyzer issues +[ $compiler == dart2analyzer ] +developer_extension_test: SkipByDesign +evaluate_activation_in_method_class_test: CompileTimeError # Issue 24478 +get_isolate_after_language_error_test: SkipByDesign + +[ $compiler == dartk ] +next_through_simple_async_test: Pass, Fail # Issue 29145 # Kernel version of tests [ $compiler != dartk ] add_breakpoint_rpc_kernel_test: SkipByDesign # kernel specific version of add_breakpoint_rpc_test -[ $compiler == dartk ] -next_through_simple_async_test: Pass, Fail # Issue 29145 - -[ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime == dart_precompiled) ] -evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 -evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 +[ $compiler == precompiler ] +*: Skip # Issue 24651 # Debugger location tests are slow in debug mode. [ $mode == debug ] debugger_location_second_test: Pass, Slow debugger_location_test: Pass, Slow -# These tests are slow on simulators. -[ $arch == simarm || $arch == simarm64 ] -*: Pass, Slow +# Service protocol is not supported in product mode. +[ $mode == product ] +*: SkipByDesign + +[ $system == windows ] +async_generator_breakpoint_test: Skip # Issue 29145 +dev_fs_http_put_weird_char_test: Skip # Windows disallows carriage returns in paths +dev_fs_weird_char_test: Skip # Windows disallows question mark in paths + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + +[ $compiler == none && $runtime == vm && $system == fuchsia ] +*: Skip # Not yet triaged. + +[ $mode == debug && $system == windows && $checked ] +async_scope_test: Pass, Slow + [ $mode == debug && ($arch == simarm || $arch == simarm64) ] *: SkipSlow -# All tests use dart:io -[ $browser || $compiler == dart2js ] -*: SkipByDesign +[ ($compiler == none || $compiler == precompiler) && ($runtime == dart_precompiled || $runtime == vm) ] +evaluate_activation_test/instance: RuntimeError # http://dartbug.com/20047 +evaluate_activation_test/scope: RuntimeError # http://dartbug.com/20047 -# Tests with known analyzer issues -[ $compiler == dart2analyzer ] -developer_extension_test: SkipByDesign -get_isolate_after_language_error_test: SkipByDesign +[ $arch != ia32 || $arch != x64 || $system != linux ] +get_native_allocation_samples_test: Skip # Unsupported. -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - -[ $arch == arm ] -process_service_test: Pass, Fail # Issue 24344 - -[ $compiler == precompiler ] -*: Skip # Issue 24651 - -[ $compiler == app_jit ] -complex_reload_test: RuntimeError # Issue 27806 -bad_reload_test: RuntimeError # Issue 27806 -unused_changes_in_last_reload_test: RuntimeError # Issue 27806 -evaluate_activation_test/instance: RuntimeError # Issue 27806 -evaluate_activation_test/scope: RuntimeError # Issue 27806 -get_object_rpc_test: RuntimeError # Issue 27806 -get_source_report_test: RuntimeError # Issue 27806 -set_name_rpc_test: RuntimeError # Issue 27806 -pause_on_unhandled_async_exceptions2_test: Pass, RuntimeError, Timeout, Crash # Issue 29178 - -debugger_location_second_test: Skip # Issue 28180 - -next_through_for_each_loop_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. -next_through_create_list_and_map_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. -next_through_closure_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. -step_through_switch_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. -step_through_constructor_calls_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. -step_through_function_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. -step_through_switch_with_continue_test: RuntimeError # Snapshots don't include source and generated source is not 1-to-1. The column offsets are thus off. - -[ $compiler == dart2analyzer ] -evaluate_activation_in_method_class_test: CompileTimeError # Issue 24478 +# These tests are slow on simulators. +[ $arch == simarm || $arch == simarm64 ] +*: Pass, Slow [ $arch == simdbc || $arch == simdbc64 ] -implicit_getter_setter_test: RuntimeError # Field guards unimplemented. async_single_step_exception_test: RuntimeError # Issue 29218 - +implicit_getter_setter_test: RuntimeError # Field guards unimplemented. next_through_catch_test: RuntimeError # Debugging StringConcatenation doesn't work the same on simdbc as on other platforms (bug #28975). next_through_simple_async_test: RuntimeError # Debugging StringConcatenation doesn't work the same on simdbc as on other platforms (bug #28975). next_through_simple_linear_2_test: RuntimeError # Debugging StringConcatenation doesn't work the same on simdbc as on other platforms (bug #28975). step_through_function_test: RuntimeError # Debugging StringConcatenation doesn't work the same on simdbc as on other platforms (bug #28975). step_through_getter_test: RuntimeError # Debugging StringConcatenation doesn't work the same on simdbc as on other platforms (bug #28975). +# All tests use dart:io +[ $compiler == dart2js || $browser ] +*: SkipByDesign + # Skip all service tests because random reloads interfere. [ $hot_reload || $hot_reload_rollback ] *: SkipByDesign # The service tests should run without being reloaded. -[ $system == windows ] -dev_fs_weird_char_test: Skip # Windows disallows question mark in paths -dev_fs_http_put_weird_char_test: Skip # Windows disallows carriage returns in paths - -[ $system != linux || ($arch != x64 || $arch != ia32) ] -get_native_allocation_samples_test: Skip # Unsupported. - -# Service protocol is not supported in product mode. -[ $mode == product ] -*: SkipByDesign diff --git a/runtime/observatory/tests/service/service_kernel.status b/runtime/observatory/tests/service/service_kernel.status index 9bda9fcd5c8..44dd5d78db9 100644 --- a/runtime/observatory/tests/service/service_kernel.status +++ b/runtime/observatory/tests/service/service_kernel.status @@ -2,44 +2,36 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $compiler == dartkp ] -*: Skip # Non-kernel also skips precompiled mode. - # Kernel works slightly different. There are kernel specific versions. # These are the non-kernel specific versions so skip tests and allow errors. [ $compiler == dartk ] -add_breakpoint_rpc_test: SkipByDesign # non-kernel specific version of add_breakpoint_rpc_kernel_test. -get_isolate_after_language_error_test: CompileTimeError -developer_extension_test: CompileTimeError -step_through_arithmetic_test: RuntimeError # probably constant evaluator pre-evaluating e.g. 1+2 - -capture_stdio_test: CompileTimeError # These 3 tests fail with 'dart:vmservice_io': error: [...] native function 'VMServiceIO_Shutdown' (0 arguments) cannot be found because of '--compile_all' -address_mapper_test: CompileTimeError # These 3 tests fail with 'dart:vmservice_io': error: [...] native function 'VMServiceIO_Shutdown' (0 arguments) cannot be found because of '--compile_all' - *_reload_*: Skip # no reload support for now +add_breakpoint_rpc_test: SkipByDesign # non-kernel specific version of add_breakpoint_rpc_kernel_test. +address_mapper_test: CompileTimeError # These 3 tests fail with 'dart:vmservice_io': error: [...] native function 'VMServiceIO_Shutdown' (0 arguments) cannot be found because of '--compile_all' +address_mapper_test: Crash +async_generator_breakpoint_test: Skip # Issue 29158, Async debugging +async_single_step_out_test: RuntimeError # Issue 29158, Async debugging +async_star_single_step_into_test: RuntimeError # Issue 29158, Async debugging +async_star_step_out_test: RuntimeError # Issue 29158, Async debugging +async_step_out_test: RuntimeError # Issue 29158, Async debugging +awaiter_async_stack_contents_test: RuntimeError # Issue 29158, Async debugging +capture_stdio_test: CompileTimeError # These 3 tests fail with 'dart:vmservice_io': error: [...] native function 'VMServiceIO_Shutdown' (0 arguments) cannot be found because of '--compile_all' +capture_stdio_test: Crash +developer_extension_test: CompileTimeError eval_internal_class_test: Skip # no evaluation test for now evaluate_*: Skip # no evaluation test for now - -async_star_single_step_into_test: RuntimeError # Issue 29158, Async debugging -async_step_out_test: RuntimeError # Issue 29158, Async debugging -async_star_step_out_test: RuntimeError # Issue 29158, Async debugging -awaiter_async_stack_contents_test: RuntimeError # Issue 29158, Async debugging -async_single_step_out_test: RuntimeError # Issue 29158, Async debugging -async_generator_breakpoint_test: Skip # Issue 29158, Async debugging - -capture_stdio_test: Crash -address_mapper_test: Crash -vm_restart_test: Crash - +get_isolate_after_language_error_test: CompileTimeError +isolate_lifecycle_test: Pass, RuntimeError # Inherited from service.status +library_dependency_test: CompileTimeError # Deferred loading kernel issue 28335. pause_on_unhandled_async_exceptions2_test: RuntimeError # --pause-isolates-on-unhandled-exceptions doesn't currently work. Issue #29056 pause_on_unhandled_async_exceptions_test: RuntimeError # --pause-isolates-on-unhandled-exceptions doesn't currently work. Issue #29056 +step_through_arithmetic_test: RuntimeError # probably constant evaluator pre-evaluating e.g. 1+2 +vm_restart_test: Crash -isolate_lifecycle_test: Pass, RuntimeError # Inherited from service.status +[ $compiler == dartkp ] +*: Skip # Non-kernel also skips precompiled mode. [ $compiler == dartk && $mode == debug ] isolate_lifecycle_test: Skip # Flaky. pause_idle_isolate_test: Skip # Flaky -# Deferred loading kernel issue 28335. -[ $compiler == dartk ] -library_dependency_test: CompileTimeError # Deferred loading kernel issue 28335. diff --git a/runtime/tests/vm/vm.status b/runtime/tests/vm/vm.status index 05d90299eca..fb4595e14ba 100644 --- a/runtime/tests/vm/vm.status +++ b/runtime/tests/vm/vm.status @@ -1,151 +1,27 @@ # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - -cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: SkipSlow # Issue 28198 -cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: SkipSlow # Issue 28198 +cc/AllocGeneric_Overflow: Crash, Fail # These tests are expected to crash on all platforms. +cc/ArrayNew_Overflow_Crash: Crash, Fail # These tests are expected to crash on all platforms. +cc/CodeImmutability: Crash, Fail # These tests are expected to crash on all platforms. +cc/Dart2JSCompileAll: Fail, Crash # Issue 27369 +cc/Dart2JSCompilerStats: Fail, Crash # Issue 27369 +cc/Fail0: Fail # These tests are expected to crash on all platforms. +cc/Fail1: Fail # These tests are expected to crash on all platforms. +cc/Fail2: Fail # These tests are expected to crash on all platforms. cc/IsolateReload_PendingConstructorCall_AbstractToConcrete: SkipSlow # Issue 28198 cc/IsolateReload_PendingConstructorCall_ConcreteToAbstract: SkipSlow # Issue 28198 cc/IsolateReload_PendingStaticCall_DefinedToNSM: SkipSlow # Issue 28198 cc/IsolateReload_PendingStaticCall_NSMToDefined: SkipSlow # Issue 28198 - -cc/ArrayNew_Overflow_Crash: Crash, Fail # These tests are expected to crash on all platforms. -cc/AllocGeneric_Overflow: Crash, Fail # These tests are expected to crash on all platforms. -cc/CodeImmutability: Crash, Fail # These tests are expected to crash on all platforms. -cc/SNPrint_BadArgs: Crash, Fail # These tests are expected to crash on all platforms. -cc/Fail0: Fail # These tests are expected to crash on all platforms. -cc/Fail1: Fail # These tests are expected to crash on all platforms. -cc/Fail2: Fail # These tests are expected to crash on all platforms. - -cc/Dart2JSCompileAll: Fail, Crash # Issue 27369 -cc/Dart2JSCompilerStats: Fail, Crash # Issue 27369 - +cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: SkipSlow # Issue 28198 +cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: SkipSlow # Issue 28198 cc/Profiler_InliningIntervalBoundry: Skip # Differences in ia32, debug, release - +cc/SNPrint_BadArgs: Crash, Fail # These tests are expected to crash on all platforms. cc/Sleep: Skip # Flaky # Flaky on buildbot. Issue 5133 and 10409. - dart/data_uri_import_test/none: SkipByDesign -[ $mode == debug ] -cc/CorelibIsolateStartup: Skip # This is a benchmark that is not informative in debug mode. -cc/VerifyImplicit_Crash: Crash # Negative tests of VerifiedMemory should crash iff in DEBUG mode. TODO(koda): Improve support for negative tests. -cc/VerifyExplicit_Crash: Crash # Negative tests of VerifiedMemory should crash iff in DEBUG mode. TODO(koda): Improve support for negative tests. -dart/spawn_shutdown_test: Pass, Slow # VM Shutdown test, It can take some time for all the isolates to shutdown in a Debug build. - -[ $system == windows ] -cc/Service_Profile: Skip -cc/CorelibCompilerStats: Skip - -[ $system == windows && $arch == x64 ] -cc/Profiler_IntrinsicAllocation: Pass, Fail # Issue 31137 -cc/Profiler_ClosureAllocation: Pass, Fail # Issue 31137 -cc/Profiler_StringAllocation: Pass, Fail # Issue 31137 -cc/Profiler_TypedArrayAllocation: Pass, Fail # Issue 31137 -cc/Profiler_SourcePositionOptimized: Pass, Fail # Issue 31137 -cc/Profiler_BinaryOperatorSourcePositionOptimized: Pass, Fail # Issue 31137 - -[ $system == fuchsia ] -dart/spawn_shutdown_test: Skip # OOM crash can bring down the OS. -cc/CorelibIsolateStartup: Skip # OOM crash can bring down the OS. -dart/data_uri_spawn_test: Skip # TODO(zra): package:unittest is not in the image. -cc/Read: Fail # TODO(zra): Investigate, ../../dart/runtime/bin/file_test.cc: 34: error: expected: !file->WriteByte(1) - -# Profiler is completely disabled in SIMDBC builds. -# On the simluator stack traces produced by the Profiler do not match -# up with the real Dart stack trace and hence we don't get correct -# symbol names. -[ $arch == simarm || $arch == simarmv6 || $arch == simarmv5te || $arch == simarm64 || $arch == simdbc || $arch == simdbc64 ] -cc/Service_Profile: Skip -cc/Profiler_AllocationSampleTest: Skip -cc/Profiler_ArrayAllocation: Skip -cc/Profiler_BasicSourcePosition: Skip -cc/Profiler_BasicSourcePositionOptimized: Skip -cc/Profiler_BinaryOperatorSourcePosition: Skip -cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip -cc/Profiler_ChainedSamples: Skip -cc/Profiler_ClosureAllocation: Skip -cc/Profiler_CodeTicks: Skip -cc/Profiler_ContextAllocation: Skip -cc/Profiler_FunctionInline: Skip -cc/Profiler_FunctionTicks: Skip -cc/Profiler_InliningIntervalBoundry: Skip -cc/Profiler_IntrinsicAllocation: Skip -cc/Profiler_SampleBufferIterateTest: Skip -cc/Profiler_SampleBufferWrapTest: Skip -cc/Profiler_SourcePosition: Skip -cc/Profiler_SourcePositionOptimized: Skip -cc/Profiler_StringAllocation: Skip -cc/Profiler_StringInterpolation: Skip -cc/Profiler_ToggleRecordAllocation: Skip -cc/Profiler_TrivialRecordAllocation: Skip -cc/Profiler_TypedArrayAllocation: Skip -cc/Profiler_GetSourceReport: Skip -cc/LargeMap: Skip - -# Following tests are failing in a weird way on macos/ia32/debug builds -# need to investigate. -[ $runtime == vm && $mode == debug && $arch == ia32 && $system == macos ] -cc/Profiler_TrivialRecordAllocation: Skip -cc/Profiler_ToggleRecordAllocation: Skip -cc/Profiler_FunctionTicks: Skip -cc/Profiler_CodeTicks: Skip -cc/Profiler_IntrinsicAllocation: Skip -cc/Profiler_ArrayAllocation: Skip -cc/Profiler_ContextAllocation: Skip -cc/Profiler_ClosureAllocation: Skip -cc/Profiler_TypedArrayAllocation: Skip -cc/Profiler_StringAllocation: Skip -cc/Profiler_StringInterpolation: Skip -cc/Profiler_BasicSourcePosition: Skip -cc/Profiler_BasicSourcePositionOptimized: Skip -cc/Profiler_ChainedSamples: Skip -cc/Profiler_FunctionInline: Skip -cc/Profiler_SourcePosition: Skip -cc/Profiler_SourcePositionOptimized: Skip -cc/Profiler_BinaryOperatorSourcePosition: Skip -cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip - -[ $compiler == none && $runtime == drt ] -dart/truncating_ints_test: Skip # Issue 14651 - -[ $compiler == dart2js ] -dart/redirection_type_shuffling_test: Skip # Depends on lazy enforcement of type bounds -dart/byte_array_test: Skip # compilers not aware of byte arrays -dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays -dart/simd128float32_array_test: Skip # compilers not aware of Simd128 -dart/simd128float32_test: Skip # compilers not aware of Simd128 -dart/truncating_ints_test: Skip # dart2js doesn't know about --limit-ints-to-64-bits - -[ $compiler == dart2js ] -dart/optimized_stacktrace_line_test: RuntimeError # The source positions do not match with dart2js. -dart/optimized_stacktrace_line_and_column_test: RuntimeError # The source positions do not match with dart2js. - -dart/inline_stack_frame_test: Skip # Issue 7953, Methods can be missing in dart2js stack traces due to inlining. Also when minifying they can be renamed, which is issue 7953. - -[ $compiler == dart2js || $compiler == dart2analyzer ] -dart/data_uri*test: Skip # Data uri's not supported by dart2js or the analyzer. - -[ $compiler == dart2analyzer ] -dart/optimized_stacktrace_line_test: StaticWarning -dart/optimized_stacktrace_line_and_column_test: StaticWarning - -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - -[ $compiler == app_jit ] -dart/snapshot_version_test: Fail,OK # Expects to find script snapshot relative to Dart source. - -[ $runtime != vm ] -dart/snapshot_version_test: SkipByDesign # Spawns processes -dart/spawn_infinite_loop_test: Skip # VM shutdown test -dart/spawn_shutdown_test: Skip # VM Shutdown test -dart/hello_fuchsia_test: SkipByDesign # This is a test for fuchsia OS - -[ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $builder_tag == asan ] -cc/Dart2JSCompileAll: SkipSlow # Timeout. - [ $builder_tag == asan ] -cc/CodeImmutability: Fail,OK # Address Sanitizer turns a crash into a failure. +cc/CodeImmutability: Fail, OK # Address Sanitizer turns a crash into a failure. cc/IsolateReload_DanglingGetter_Class: Fail # Issue 28349 cc/IsolateReload_DanglingGetter_Instance: Fail # Issue 28349 cc/IsolateReload_DanglingGetter_Library: Fail # Issue 28349 @@ -155,8 +31,8 @@ cc/IsolateReload_DanglingSetter_Library: Fail # Issue 28349 cc/IsolateReload_LiveStack: Fail # Issue 28349 cc/IsolateReload_PendingSuperCall: Fail # Issue 28349 cc/IsolateReload_SmiFastPathStubs: Fail # Issue 28349 -cc/IsolateReload_TearOff_AddArguments2: Fail # Issue 28349 cc/IsolateReload_TearOff_AddArguments: Fail # Issue 28349 +cc/IsolateReload_TearOff_AddArguments2: Fail # Issue 28349 cc/IsolateReload_TearOff_Class_Identity: Fail # Issue 28349 cc/IsolateReload_TearOff_Instance_Equality: Fail # Issue 28349 cc/IsolateReload_TearOff_Library_Identity: Fail # Issue 28349 @@ -165,62 +41,112 @@ cc/IsolateReload_TypeIdentity: Fail # Issue 28349 cc/IsolateReload_TypeIdentityGeneric: Fail # Issue 28349 cc/IsolateReload_TypeIdentityParameter: Fail # Issue 28349 -[ $compiler == precompiler ] -dart/byte_array_test: Skip # Incompatible flag --disable_alloc_stubs_after_gc - -[ $compiler == precompiler || $mode == product ] -dart/redirection_type_shuffling_test: SkipByDesign # Imports dart:mirrors -cc/CreateMirrorSystem: SkipByDesign # Imports dart:mirrors -cc/CoreSnapshotSize: SkipByDesign # Imports dart:mirrors -cc/StandaloneSnapshotSize: SkipByDesign # Imports dart:mirrors - [ $compiler == app_jit ] -dart/optimized_stacktrace_line_and_column_test: RuntimeError,OK # app-jit lacks column information +dart/optimized_stacktrace_line_and_column_test: RuntimeError, OK # app-jit lacks column information +dart/snapshot_version_test: Fail, OK # Expects to find script snapshot relative to Dart source. -[ $runtime == dart_precompiled ] -dart/optimized_stacktrace_line_and_column_test: RuntimeError,OK # AOT lacks column information -dart/data_uri_spawn_test: SkipByDesign # Isolate.spawnUri +[ $compiler == dart2analyzer ] +dart/optimized_stacktrace_line_and_column_test: StaticWarning +dart/optimized_stacktrace_line_test: StaticWarning -[ $runtime == vm && $mode == product ] -cc/DartAPI_IsolateSetCheckedMode: Fail,OK # Checked mode disabled in product mode. +[ $compiler == dart2js ] +dart/byte_array_optimized_test: Skip # compilers not aware of byte arrays +dart/byte_array_test: Skip # compilers not aware of byte arrays +dart/inline_stack_frame_test: Skip # Issue 7953, Methods can be missing in dart2js stack traces due to inlining. Also when minifying they can be renamed, which is issue 7953. +dart/optimized_stacktrace_line_and_column_test: RuntimeError # The source positions do not match with dart2js. +dart/optimized_stacktrace_line_test: RuntimeError # The source positions do not match with dart2js. +dart/redirection_type_shuffling_test: Skip # Depends on lazy enforcement of type bounds +dart/simd128float32_array_test: Skip # compilers not aware of Simd128 +dart/simd128float32_test: Skip # compilers not aware of Simd128 +dart/truncating_ints_test: Skip # dart2js doesn't know about --limit-ints-to-64-bits -[ $arch == simdbc || $arch == simdbc64 ] -cc/RegExp_ExternalOneByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. -cc/RegExp_ExternalTwoByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. -cc/RegExp_OneByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. -cc/RegExp_TwoByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. - -cc/GuardFieldConstructor2Test: Skip # TODO(vegorov) Field guards are disabled for SIMDBC -cc/GuardFieldConstructorTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC -cc/GuardFieldFinalListTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC -cc/GuardFieldFinalVariableLengthListTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC -cc/GuardFieldSimpleTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC - -cc/RegenerateAllocStubs: Skip # This test is meaningless for DBC as allocation stubs are not used. - -[ $hot_reload || $hot_reload_rollback ] -dart/spawn_shutdown_test: Skip # We can shutdown an isolate before it reloads. -dart/spawn_infinite_loop_test: Skip # We can shutdown an isolate before it reloads. - - -[ ($compiler == dartkp) && ($runtime == vm || $runtime == dart_precompiled) ] -dart/data_uri_import_test/base64: CompileTimeError -dart/data_uri_import_test/nocharset: CompileTimeError -dart/data_uri_import_test/nomime: CompileTimeError -dart/data_uri_import_test/percentencoded: CompileTimeError -dart/data_uri_import_test/wrongmime: CompileTimeError -dart/data_uri_spawn_test: RuntimeError -dart/redirection_type_shuffling_test: SkipByDesign # Includes dart:mirrors. -dart/spawn_shutdown_test: SkipSlow - -[ ($compiler != dartk) ] +[ $compiler != dartk ] cc/IsolateReload_KernelIncrementalCompile: Skip cc/IsolateReload_KernelIncrementalCompileAppAndLib: Skip cc/IsolateReload_KernelIncrementalCompileGenerics: Skip cc/Mixin_PrivateSuperResolution: Skip cc/Mixin_PrivateSuperResolutionCrossLibraryShouldFail: Skip -[ ($compiler == dartk) && ($runtime == vm) ] +[ $compiler == dartkp ] +dart/truncating_ints_test: CompileTimeError # Issue 31339 + +[ $compiler == precompiler ] +dart/byte_array_test: Skip # Incompatible flag --disable_alloc_stubs_after_gc + +[ $mode == debug ] +cc/CorelibIsolateStartup: Skip # This is a benchmark that is not informative in debug mode. +cc/VerifyExplicit_Crash: Crash # Negative tests of VerifiedMemory should crash iff in DEBUG mode. TODO(koda): Improve support for negative tests. +cc/VerifyImplicit_Crash: Crash # Negative tests of VerifiedMemory should crash iff in DEBUG mode. TODO(koda): Improve support for negative tests. +dart/spawn_shutdown_test: Pass, Slow # VM Shutdown test, It can take some time for all the isolates to shutdown in a Debug build. + +[ $runtime == dart_precompiled ] +dart/data_uri_spawn_test: SkipByDesign # Isolate.spawnUri +dart/optimized_stacktrace_line_and_column_test: RuntimeError, OK # AOT lacks column information + +[ $runtime != vm ] +dart/hello_fuchsia_test: SkipByDesign # This is a test for fuchsia OS +dart/snapshot_version_test: SkipByDesign # Spawns processes +dart/spawn_infinite_loop_test: Skip # VM shutdown test +dart/spawn_shutdown_test: Skip # VM Shutdown test + +[ $system == fuchsia ] +cc/CorelibIsolateStartup: Skip # OOM crash can bring down the OS. +cc/Read: Fail # TODO(zra): Investigate, ../../dart/runtime/bin/file_test.cc: 34: error: expected: !file->WriteByte(1) +dart/data_uri_spawn_test: Skip # TODO(zra): package:unittest is not in the image. +dart/spawn_shutdown_test: Skip # OOM crash can bring down the OS. + +[ $system == windows ] +cc/CorelibCompilerStats: Skip +cc/Service_Profile: Skip + +# Following tests are failing in a weird way on macos/ia32/debug builds +# need to investigate. +[ $arch == ia32 && $mode == debug && $runtime == vm && $system == macos ] +cc/Profiler_ArrayAllocation: Skip +cc/Profiler_BasicSourcePosition: Skip +cc/Profiler_BasicSourcePositionOptimized: Skip +cc/Profiler_BinaryOperatorSourcePosition: Skip +cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip +cc/Profiler_ChainedSamples: Skip +cc/Profiler_ClosureAllocation: Skip +cc/Profiler_CodeTicks: Skip +cc/Profiler_ContextAllocation: Skip +cc/Profiler_FunctionInline: Skip +cc/Profiler_FunctionTicks: Skip +cc/Profiler_IntrinsicAllocation: Skip +cc/Profiler_SourcePosition: Skip +cc/Profiler_SourcePositionOptimized: Skip +cc/Profiler_StringAllocation: Skip +cc/Profiler_StringInterpolation: Skip +cc/Profiler_ToggleRecordAllocation: Skip +cc/Profiler_TrivialRecordAllocation: Skip +cc/Profiler_TypedArrayAllocation: Skip + +[ $arch == x64 && $system == windows ] +cc/Profiler_BinaryOperatorSourcePositionOptimized: Pass, Fail # Issue 31137 +cc/Profiler_ClosureAllocation: Pass, Fail # Issue 31137 +cc/Profiler_IntrinsicAllocation: Pass, Fail # Issue 31137 +cc/Profiler_SourcePositionOptimized: Pass, Fail # Issue 31137 +cc/Profiler_StringAllocation: Pass, Fail # Issue 31137 +cc/Profiler_TypedArrayAllocation: Pass, Fail # Issue 31137 + +[ $builder_tag == asan && $mode == debug && ($runtime == dart_precompiled || $runtime == vm) ] +cc/Dart2JSCompileAll: SkipSlow # Timeout. + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + +[ $compiler == dartk && $mode == debug && $runtime == vm ] +cc/InjectNativeFields1: Crash +cc/InjectNativeFields3: Crash +cc/Service_TokenStream: Crash + +[ $compiler == dartk && $mode == release && $runtime == vm ] +cc/InjectNativeFields1: Fail +cc/InjectNativeFields3: Fail +cc/Service_TokenStream: Fail + +[ $compiler == dartk && $runtime == vm ] cc/CanonicalizationInScriptSnapshots: Fail cc/Class_ComputeEndTokenPos: Crash cc/DartAPI_CurrentStackTraceInfo: Fail @@ -229,8 +155,8 @@ cc/DartAPI_InjectNativeFields1: Skip cc/DartAPI_InjectNativeFields3: Crash cc/DartAPI_InjectNativeFields4: Crash cc/DartAPI_InjectNativeFieldsSuperClass: Crash -cc/DartAPI_Invoke_CrossLibrary: Crash cc/DartAPI_InvokeNoSuchMethod: Fail +cc/DartAPI_Invoke_CrossLibrary: Crash cc/DartAPI_IsolateShutdownRunDartCode: Skip # Flaky cc/DartAPI_LazyLoadDeoptimizes: Fail cc/DartAPI_LoadLibrary: Crash @@ -247,9 +173,9 @@ cc/DartAPI_NegativeNativeFieldInIsolateMessage: Crash cc/DartAPI_New: Crash cc/DartAPI_ParsePatchLibrary: Crash cc/DartAPI_PropagateError: Fail +cc/DartAPI_StackOverflowStackTraceInfoArrowFunction: Fail cc/DartAPI_StackOverflowStackTraceInfoBraceFunction1: Fail cc/DartAPI_StackOverflowStackTraceInfoBraceFunction2: Fail -cc/DartAPI_StackOverflowStackTraceInfoArrowFunction: Fail cc/DartAPI_TestNativeFieldsAccess: Crash cc/DartAPI_TypeGetParameterizedTypes: Crash cc/DebuggerAPI_BreakpointStubPatching: Fail @@ -263,12 +189,12 @@ cc/Debugger_Rewind_Optimized: SkipSlow cc/Debugger_SetBreakpointInPartOfLibrary: Crash cc/FunctionSourceFingerprint: Fail cc/IsolateReload_BadClass: Fail -cc/IsolateReload_ClassFieldAdded: Skip # Crash, Timeout -cc/IsolateReload_ClassFieldAdded2: Skip # Crash, Timeout cc/IsolateReload_ChangeInstanceFormat1: Skip cc/IsolateReload_ChangeInstanceFormat3: Skip cc/IsolateReload_ChangeInstanceFormat7: Skip cc/IsolateReload_ChangeInstanceFormat8: Skip +cc/IsolateReload_ClassFieldAdded: Skip # Crash, Timeout +cc/IsolateReload_ClassFieldAdded2: Skip # Crash, Timeout cc/IsolateReload_DanglingGetter_Class: Fail cc/IsolateReload_DanglingGetter_Instance: Fail cc/IsolateReload_DanglingGetter_Library: Fail @@ -302,8 +228,8 @@ cc/IsolateReload_RunNewFieldInitializersThrows: Skip cc/IsolateReload_RunNewFieldInitializersWithConsts: Skip cc/IsolateReload_ShapeChangeRetainsHash: Skip cc/IsolateReload_SmiFastPathStubs: Fail -cc/IsolateReload_TearOff_AddArguments2: Fail cc/IsolateReload_TearOff_AddArguments: Fail +cc/IsolateReload_TearOff_AddArguments2: Fail cc/IsolateReload_TearOff_Class_Identity: Fail cc/IsolateReload_TearOff_Instance_Equality: Fail cc/IsolateReload_TearOff_Library_Identity: Fail @@ -319,13 +245,13 @@ cc/Parser_AllocateVariables_Issue7681: Fail cc/Parser_AllocateVariables_MiddleChain: Fail cc/Parser_AllocateVariables_NestedCapturedVar: Fail cc/Parser_AllocateVariables_TwoChains: Fail -cc/Profiler_SourcePositionOptimized: Fail cc/Profiler_BasicSourcePositionOptimized: Skip cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip cc/Profiler_GetSourceReport: Fail +cc/Profiler_SourcePositionOptimized: Fail cc/Profiler_SourcePositionOptimized: Skip -cc/ScriptSnapshot2: Crash cc/ScriptSnapshot: Crash +cc/ScriptSnapshot2: Crash cc/SourcePosition_Async: Crash cc/SourcePosition_BitwiseOperations: Crash cc/SourcePosition_ForLoop: Crash @@ -365,17 +291,7 @@ dart/redirection_type_shuffling_test/00: Crash dart/redirection_type_shuffling_test/none: Crash dart/spawn_shutdown_test: SkipSlow -[ ($compiler == dartk) && ($runtime == vm) && ($mode == release) ] -cc/InjectNativeFields1: Fail -cc/InjectNativeFields3: Fail -cc/Service_TokenStream: Fail - -[ ($compiler == dartk) && ($runtime == vm) && ($mode == debug) ] -cc/InjectNativeFields1: Crash -cc/InjectNativeFields3: Crash -cc/Service_TokenStream: Crash - -[ ($compiler == dartk) && ($runtime == vm) && ($system == macos) ] +[ $compiler == dartk && $runtime == vm && $system == macos ] cc/IsolateReload_DanglingGetter_Class: Crash cc/IsolateReload_DanglingGetter_Instance: Crash cc/IsolateReload_DanglingGetter_Library: Crash @@ -384,8 +300,8 @@ cc/IsolateReload_DanglingSetter_Instance: Crash cc/IsolateReload_DanglingSetter_Library: Crash cc/IsolateReload_EnumDelete: Crash cc/IsolateReload_LibraryLookup: Crash -cc/IsolateReload_TearOff_AddArguments2: Crash cc/IsolateReload_TearOff_AddArguments: Crash +cc/IsolateReload_TearOff_AddArguments2: Crash cc/IsolateReload_TearOff_Class_Identity: Crash cc/IsolateReload_TearOff_Instance_Equality: Crash cc/IsolateReload_TearOff_Library_Identity: Crash @@ -399,10 +315,80 @@ cc/Parser_AllocateVariables_MiddleChain: Crash cc/Parser_AllocateVariables_NestedCapturedVar: Crash cc/Parser_AllocateVariables_TwoChains: Crash +[ $compiler == dartkp && ($runtime == dart_precompiled || $runtime == vm) ] +dart/data_uri_import_test/base64: CompileTimeError +dart/data_uri_import_test/nocharset: CompileTimeError +dart/data_uri_import_test/nomime: CompileTimeError +dart/data_uri_import_test/percentencoded: CompileTimeError +dart/data_uri_import_test/wrongmime: CompileTimeError +dart/data_uri_spawn_test: RuntimeError +dart/redirection_type_shuffling_test: SkipByDesign # Includes dart:mirrors. +dart/spawn_shutdown_test: SkipSlow + +[ $compiler == none && $runtime == drt ] +dart/truncating_ints_test: Skip # Issue 14651 + +[ $mode == product && $runtime == vm ] +cc/DartAPI_IsolateSetCheckedMode: Fail, OK # Checked mode disabled in product mode. + [ $runtime == dart_precompiled && $minified ] dart/inline_stack_frame_test: Skip dart/optimized_stacktrace_line_test: Skip +# Profiler is completely disabled in SIMDBC builds. +# On the simluator stack traces produced by the Profiler do not match +# up with the real Dart stack trace and hence we don't get correct +# symbol names. +[ $arch == simarm || $arch == simarm64 || $arch == simarmv5te || $arch == simarmv6 || $arch == simdbc || $arch == simdbc64 ] +cc/LargeMap: Skip +cc/Profiler_AllocationSampleTest: Skip +cc/Profiler_ArrayAllocation: Skip +cc/Profiler_BasicSourcePosition: Skip +cc/Profiler_BasicSourcePositionOptimized: Skip +cc/Profiler_BinaryOperatorSourcePosition: Skip +cc/Profiler_BinaryOperatorSourcePositionOptimized: Skip +cc/Profiler_ChainedSamples: Skip +cc/Profiler_ClosureAllocation: Skip +cc/Profiler_CodeTicks: Skip +cc/Profiler_ContextAllocation: Skip +cc/Profiler_FunctionInline: Skip +cc/Profiler_FunctionTicks: Skip +cc/Profiler_GetSourceReport: Skip +cc/Profiler_InliningIntervalBoundry: Skip +cc/Profiler_IntrinsicAllocation: Skip +cc/Profiler_SampleBufferIterateTest: Skip +cc/Profiler_SampleBufferWrapTest: Skip +cc/Profiler_SourcePosition: Skip +cc/Profiler_SourcePositionOptimized: Skip +cc/Profiler_StringAllocation: Skip +cc/Profiler_StringInterpolation: Skip +cc/Profiler_ToggleRecordAllocation: Skip +cc/Profiler_TrivialRecordAllocation: Skip +cc/Profiler_TypedArrayAllocation: Skip +cc/Service_Profile: Skip + +[ $arch == simdbc || $arch == simdbc64 ] +cc/GuardFieldConstructor2Test: Skip # TODO(vegorov) Field guards are disabled for SIMDBC +cc/GuardFieldConstructorTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC +cc/GuardFieldFinalListTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC +cc/GuardFieldFinalVariableLengthListTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC +cc/GuardFieldSimpleTest: Skip # TODO(vegorov) Field guards are disabled for SIMDBC +cc/RegExp_ExternalOneByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. +cc/RegExp_ExternalTwoByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. +cc/RegExp_OneByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. +cc/RegExp_TwoByteString: Skip # TODO(vegorov) These tests don't seem to work if FLAG_interpret_irregexp is switched on by default because they attempt to call regexp functions directly instead of going through JSSyntaxRegExp_ExecuteMatch. +cc/RegenerateAllocStubs: Skip # This test is meaningless for DBC as allocation stubs are not used. + +[ $compiler == dart2analyzer || $compiler == dart2js ] +dart/data_uri*test: Skip # Data uri's not supported by dart2js or the analyzer. + +[ $compiler == precompiler || $mode == product ] +cc/CoreSnapshotSize: SkipByDesign # Imports dart:mirrors +cc/CreateMirrorSystem: SkipByDesign # Imports dart:mirrors +cc/StandaloneSnapshotSize: SkipByDesign # Imports dart:mirrors +dart/redirection_type_shuffling_test: SkipByDesign # Imports dart:mirrors + +[ $hot_reload || $hot_reload_rollback ] +dart/spawn_infinite_loop_test: Skip # We can shutdown an isolate before it reloads. +dart/spawn_shutdown_test: Skip # We can shutdown an isolate before it reloads. -[ ($compiler == dartkp) ] -dart/truncating_ints_test: CompileTimeError # Issue 31339 diff --git a/tests/co19/co19-analyzer2.status b/tests/co19/co19-analyzer2.status index 8b1bd09bea7..85a56bdc368 100644 --- a/tests/co19/co19-analyzer2.status +++ b/tests/co19/co19-analyzer2.status @@ -3,7 +3,6 @@ # BSD-style license that can be found in the LICENSE file. [ $compiler == dart2analyzer ] - Language/Classes/Classes/method_definition_t06: MissingStaticWarning # Please triage this failure. Language/Classes/Getters/static_getter_t02: CompileTimeError # Issue 24534 Language/Classes/Getters/static_t01: StaticWarning # Please triage this failure. @@ -16,8 +15,8 @@ Language/Classes/method_definition_t06: MissingStaticWarning # Please triage thi Language/Enums/syntax_t08: MissingCompileTimeError # Please triage this failure. Language/Enums/syntax_t09: MissingCompileTimeError # Please triage this failure. Language/Expressions/Assignment/super_assignment_static_warning_t03: StaticWarning # Issue 15467 -Language/Expressions/Constants/exception_t01: fail, OK # co19 issue #438, Static variables are initialized lazily, need not be constants -Language/Expressions/Constants/exception_t02: fail, OK # co19 issue #438, Static variables are initialized lazily, need not be constants +Language/Expressions/Constants/exception_t01: Fail, OK # co19 issue #438, Static variables are initialized lazily, need not be constants +Language/Expressions/Constants/exception_t02: Fail, OK # co19 issue #438, Static variables are initialized lazily, need not be constants Language/Expressions/Function_Invocation/Unqualified_Invocation/instance_context_invocation_t03: MissingCompileTimeError # Please triage this failure. Language/Expressions/Function_Invocation/Unqualified_Invocation/instance_context_invocation_t04: MissingCompileTimeError # Please triage this failure. Language/Expressions/Function_Invocation/Unqualified_Invocation/invocation_t17: MissingCompileTimeError # Please triage this failure @@ -66,7 +65,7 @@ Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t02: CompileTimeErro Language/Libraries_and_Scripts/Parts/compilation_t01: Pass, MissingCompileTimeError # Issue 26692 Language/Libraries_and_Scripts/Parts/compilation_t02: Pass, MissingCompileTimeError # Issue 26692 Language/Libraries_and_Scripts/Parts/compilation_t04: Pass, CompileTimeError # Issue 26592 -Language/Libraries_and_Scripts/Parts/compilation_t15: fail, pass # Issue 23595 +Language/Libraries_and_Scripts/Parts/compilation_t15: Fail, Pass # Issue 23595 Language/Libraries_and_Scripts/Scripts/syntax_t11: Pass, CompileTimeError # Issue 26592 Language/Mixins/Mixin_Application/error_t01: MissingCompileTimeError # Please triage this failure. Language/Mixins/Mixin_Application/error_t02: MissingCompileTimeError # Please triage this failure. @@ -93,7 +92,7 @@ Language/Statements/Switch/last_statement_t03: MissingStaticWarning # Please tri Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t01: MissingCompileTimeError # Issue 25495 Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t03: MissingCompileTimeError # Issue 25495 Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t05: MissingCompileTimeError # Issue 25495 -Language/Types/Interface_Types/subtype_t12: fail, OK # co19 issue #442, undefined name "Expect" +Language/Types/Interface_Types/subtype_t12: Fail, OK # co19 issue #442, undefined name "Expect" Language/Types/Type_Void/syntax_t01: MissingCompileTimeError # Issue co19/30264 Language/Types/Type_Void/syntax_t02: MissingCompileTimeError # Issue co19/30264 Language/Types/Type_Void/syntax_t04: MissingCompileTimeError # Issue co19/30264 @@ -176,8 +175,8 @@ LayoutTests/fast/events/initkeyboardevent-crash_t01: StaticWarning # Please tria LayoutTests/fast/html/article-element_t01: StaticWarning # Please triage this failure. LayoutTests/fast/html/aside-element_t01: StaticWarning # Please triage this failure. LayoutTests/fast/html/imports/import-element-removed-flag_t01: StaticWarning # Please triage this failure. -LayoutTests/fast/html/imports/import-events_t01: CompileTimeError # Please triage this failure. LayoutTests/fast/html/imports/import-events_t01: StaticWarning # Please triage this failure. +LayoutTests/fast/html/imports/import-events_t01: CompileTimeError # Please triage this failure. LayoutTests/fast/html/select-dropdown-consistent-background-color_t01: StaticWarning # Please triage this failure. LayoutTests/fast/html/text-field-input-types_t01: StaticWarning # Please triage this failure. LayoutTests/fast/inline/boundingBox-with-continuation_t01: StaticWarning # Please triage this failure. @@ -429,5 +428,6 @@ WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t0 WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: StaticWarning # Please triage this failure. WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: StaticWarning # Please triage this failure. -[ $compiler == dart2analyzer && $builder_tag == strong ] +[ $builder_tag == strong && $compiler == dart2analyzer ] *: Skip # Issue 28649 + diff --git a/tests/co19/co19-co19.status b/tests/co19/co19-co19.status index 39d3d021546..2f30364651a 100644 --- a/tests/co19/co19-co19.status +++ b/tests/co19/co19-co19.status @@ -1,32 +1,14 @@ # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # This file contains the tests that have been identified as broken and # have been filed on the co19 issue tracker at # https://code.google.com/p/co19/issues/list (read-only). # https://github.com/dart-lang/co19/issues . # # In order to qualify here these tests need to fail both on the VM and dart2js. - ### GENERAL FAILURES ### -# Tests that fail everywhere, including the analyzer. -[ $runtime == vm || $runtime != vm ] -Language/Classes/Getters/type_object_t01: Fail # co19 issue 115 -Language/Classes/Getters/type_object_t02: Fail # co19 issue 115 -Language/Classes/Setters/type_object_t01: Fail # co19 issue 115 -Language/Classes/Setters/type_object_t02: Fail # co19 issue 115 -Language/Classes/Static_Methods/type_object_t01: Fail # co19 issue 115 -Language/Classes/Static_Methods/type_object_t02: Fail # co19 issue 115 -Language/Statements/Assert/syntax_t04: Pass, Fail # assert now has an optional second parameter. -LibTest/typed_data/ByteData/buffer_A01_t01: Fail # co19 r736 bug - sent comment. -LibTest/core/RegExp/firstMatch_A01_t01: Fail # co19 issue 742 - -LibTest/async/Zone/bindBinaryCallback_A01_t02: Fail # co19 issue 126 -LibTest/async/Zone/bindCallback_A01_t02: Fail # co19 issue 126 -LibTest/async/Zone/bindUnaryCallback_A01_t02: Fail # co19 issue 126 - # Tests that fail on every runtime, but not on the analyzer. [ $compiler != dart2analyzer ] Language/Classes/same_name_type_variable_t04: Pass, MissingCompileTimeError, Fail # Issue 14513,25525 @@ -63,16 +45,32 @@ LibTest/isolate/ReceivePort/receive_A01_t01: Fail # Co19 issue 639 LibTest/isolate/ReceivePort/receive_A01_t03: Fail # Co19 issue 639 LibTest/isolate/ReceivePort/sendPort_A01_t01: Fail # Co19 issue 639 LibTest/isolate/SendPort/call_A01_t01: Fail # Co19 issue 639 -LibTest/isolate/SendPort/send_A02_t02: SKIP # co19 issue 493 (not fixed in r672) -LibTest/isolate/SendPort/send_A02_t03: SKIP # co19 issue 495 (not fixed in r672) +LibTest/isolate/SendPort/send_A02_t02: Skip # co19 issue 493 (not fixed in r672) +LibTest/isolate/SendPort/send_A02_t03: Skip # co19 issue 495 (not fixed in r672) LibTest/isolate/SendPort/send_A02_t04: Fail # Co19 issue 639 LibTest/isolate/SendPort/send_A02_t05: Fail # Co19 issue 639 LibTest/isolate/SendPort/send_A02_t06: Fail # Co19 issue 639 LibTest/isolate/SendPort/send_A03_t01: Fail # Co19 issue 639 LibTest/isolate/SendPort/send_A03_t02: Fail # Co19 issue 639 -LibTest/math/acos_A01_t01: PASS, FAIL, OK # Issue 26261 -LibTest/math/asin_A01_t01: PASS, FAIL, OK # Issue 26261 -LibTest/math/atan_A01_t01: PASS, FAIL, OK # Issue 26261 -LibTest/math/cos_A01_t01: PASS, FAIL, OK # Issue 26261 -LibTest/math/tan_A01_t01: PASS, FAIL, OK # Issue 26261 -LibTest/math/log_A01_t01: PASS, FAIL, OK # Issue 26261 +LibTest/math/acos_A01_t01: Pass, Fail, OK # Issue 26261 +LibTest/math/asin_A01_t01: Pass, Fail, OK # Issue 26261 +LibTest/math/atan_A01_t01: Pass, Fail, OK # Issue 26261 +LibTest/math/cos_A01_t01: Pass, Fail, OK # Issue 26261 +LibTest/math/log_A01_t01: Pass, Fail, OK # Issue 26261 +LibTest/math/tan_A01_t01: Pass, Fail, OK # Issue 26261 + +# Tests that fail everywhere, including the analyzer. +[ $runtime == vm || $runtime != vm ] +Language/Classes/Getters/type_object_t01: Fail # co19 issue 115 +Language/Classes/Getters/type_object_t02: Fail # co19 issue 115 +Language/Classes/Setters/type_object_t01: Fail # co19 issue 115 +Language/Classes/Setters/type_object_t02: Fail # co19 issue 115 +Language/Classes/Static_Methods/type_object_t01: Fail # co19 issue 115 +Language/Classes/Static_Methods/type_object_t02: Fail # co19 issue 115 +Language/Statements/Assert/syntax_t04: Pass, Fail # assert now has an optional second parameter. +LibTest/async/Zone/bindBinaryCallback_A01_t02: Fail # co19 issue 126 +LibTest/async/Zone/bindCallback_A01_t02: Fail # co19 issue 126 +LibTest/async/Zone/bindUnaryCallback_A01_t02: Fail # co19 issue 126 +LibTest/core/RegExp/firstMatch_A01_t01: Fail # co19 issue 742 +LibTest/typed_data/ByteData/buffer_A01_t01: Fail # co19 r736 bug - sent comment. + diff --git a/tests/co19/co19-dart2js.status b/tests/co19/co19-dart2js.status index fa19cf54e7b..eeb991cd43b 100644 --- a/tests/co19/co19-dart2js.status +++ b/tests/co19/co19-dart2js.status @@ -2,75 +2,19 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $compiler == dart2js && $builder_tag != run_webgl_tests ] -LayoutTests/fast/canvas/webgl*: Skip # Only run WebGL on special builders, issue 29961 - [ $compiler == dart2js ] -Language/Classes/Constructors/Generative_Constructors/execution_t03: RuntimeError # https://github.com/dart-lang/sdk/issues/29596 -Language/Expressions/Function_Invocation/async_cleanup_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Expressions/Function_Invocation/async_cleanup_t03: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Expressions/Function_Invocation/async_cleanup_t05: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Expressions/Function_Invocation/async_cleanup_t06: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Expressions/Function_Invocation/async_cleanup_t08: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Expressions/Instance_Creation/New/execution_t04: RuntimeError # https://github.com/dart-lang/sdk/issues/29596 -Language/Expressions/Instance_Creation/New/execution_t06: RuntimeError # https://github.com/dart-lang/sdk/issues/29596 -Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t03: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t05: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t06: Skip # https://github.com/dart-lang/sdk/issues/28873 -Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t08: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/css/font-face-cache-bug_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/dom/HTMLLinkElement/link-onload-stylesheet-with-import_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/dom/mutation-event-remove-inserted-node_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/dom/subtree-modified-attributes_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/files/file-reader-done-reading-abort_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/forms/search-popup-crasher_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/media/mq-parsing_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/mediastream/getusermedia_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/replaced/preferred-widths_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/replaced/table-percent-height_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/replaced/table-percent-width_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/css-table-max-height_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/hittest-tablecell-right-edge_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/table-size-integer-overflow_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/text/find-case-folding_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/text/find-hidden-text_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/text/find-quotes_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/text/find-spaces_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/text/international/cjk-segmentation_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/text/zero-width-characters-complex-script_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/transforms/hit-test-large-scale_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/transforms/scrollIntoView-transformed_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/writing-mode/percentage-margins-absolute_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: Skip # https://github.com/dart-lang/sdk/issues/28873 -LayoutTests/fast/xpath/ambiguous-operators_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -LibTest/async/Future/Future.delayed_A01_t02: Pass, Fail # Issue 15524 -LibTest/html/Element/addEventListener_A01_t04: Skip # https://github.com/dart-lang/sdk/issues/28873 -LibTest/html/IFrameElement/addEventListener_A01_t04: Skip # https://github.com/dart-lang/sdk/issues/28873 -LibTest/html/Window/postMessage_A01_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -WebPlatformTest/Utils/test/asyncTestFail_t02: Skip # https://github.com/dart-lang/sdk/issues/28873 -WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 -WebPlatformTest/webstorage/event_local_storageeventinit_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 - Language/Classes/Constructors/Generative_Constructors/execution_of_a_superinitializer_t01: RuntimeError # compiler cancelled: cannot resolve type T Language/Classes/Constructors/Generative_Constructors/execution_of_a_superinitializer_t01: RuntimeError, OK # co19 issue 258 -Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t02: fail # Issue 13363 -Language/Classes/Constructors/Generative_Constructors/initializing_formals_execution_t02: fail # Issue 13363 +Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t02: Fail # Issue 13363 +Language/Classes/Constructors/Generative_Constructors/execution_t03: RuntimeError # https://github.com/dart-lang/sdk/issues/29596 +Language/Classes/Constructors/Generative_Constructors/initializing_formals_execution_t02: Fail # Issue 13363 Language/Classes/Getters/static_getter_t02: CompileTimeError # Should be fixed with unified frontend. Issue 24534 -Language/Classes/Instance_Methods/same_name_setter_t01: fail # Issue 21201 +Language/Classes/Instance_Methods/same_name_setter_t01: Fail # Issue 21201 Language/Classes/Setters/name_t01: CompileTimeError # Issue 5023 Language/Classes/Setters/name_t02: CompileTimeError # Issue 5023 Language/Classes/Setters/name_t03: RuntimeError # Issue 5023 Language/Classes/Setters/name_t07: CompileTimeError # Issue 5023 -Language/Classes/Setters/static_setter_t06: RuntimeError # Should be fixed with unified frontend. Issue 23749 +Language/Classes/Setters/static_setter_t06: RuntimeError # Should be fixed with unified frontend. Issue 23749 Language/Classes/Static_Methods/same_name_method_and_setter_t01: CompileTimeError # Should be fixed with unified frontend. Issue 23749 Language/Classes/definition_t23: CompileTimeError # Please triage this failure Language/Classes/same_name_type_variable_t01: Fail # Missing CT error on class with same name a type parameter @@ -90,19 +34,26 @@ Language/Expressions/Await_Expressions/evaluation_throws_t06: RuntimeError # Ple Language/Expressions/Await_Expressions/evaluation_throws_t07: RuntimeError # Please triage this failure Language/Expressions/Constants/identifier_denotes_a_constant_t06: MissingCompileTimeError # Issue 26580 Language/Expressions/Constants/identifier_denotes_a_constant_t07: MissingCompileTimeError # Issue 26580 +Language/Expressions/Function_Invocation/async_cleanup_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Expressions/Function_Invocation/async_cleanup_t03: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Expressions/Function_Invocation/async_cleanup_t05: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Expressions/Function_Invocation/async_cleanup_t06: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Expressions/Function_Invocation/async_cleanup_t08: Skip # https://github.com/dart-lang/sdk/issues/28873 Language/Expressions/Function_Invocation/async_generator_invokation_t08: Skip # Issue 25967 Language/Expressions/Function_Invocation/async_generator_invokation_t10: Skip # Issue 25967 Language/Expressions/Function_Invocation/async_invokation_t04: RuntimeError, Pass # co19 issue 57 Language/Expressions/Instance_Creation/New/evaluation_t19: RuntimeError # Please triage this failure Language/Expressions/Instance_Creation/New/evaluation_t20: RuntimeError # Please triage this failure +Language/Expressions/Instance_Creation/New/execution_t04: RuntimeError # https://github.com/dart-lang/sdk/issues/29596 +Language/Expressions/Instance_Creation/New/execution_t06: RuntimeError # https://github.com/dart-lang/sdk/issues/29596 Language/Expressions/Maps/key_value_equals_operator_t02: CompileTimeError # Please triage this failure Language/Expressions/Maps/static_type_dynamic_t01: CompileTimeError # Maybe ok. Issue 17207 Language/Expressions/Method_Invocation/Ordinary_Invocation/object_method_invocation_t01: MissingCompileTimeError # Issue 25496 Language/Expressions/Method_Invocation/Ordinary_Invocation/object_method_invocation_t02: MissingCompileTimeError # Issue 25496 -Language/Expressions/Numbers/syntax_t06: fail # Issue 21098 -Language/Expressions/Numbers/syntax_t09: fail # Issue 21098 -Language/Expressions/Object_Identity/Object_Identity/constant_objects_t01: fail # Issue 11551, also related to issue 563, 18738 -Language/Expressions/Object_Identity/Object_Identity/double_t02: fail # Issue 11551, also related to issue 563, 18738 +Language/Expressions/Numbers/syntax_t06: Fail # Issue 21098 +Language/Expressions/Numbers/syntax_t09: Fail # Issue 21098 +Language/Expressions/Object_Identity/Object_Identity/constant_objects_t01: Fail # Issue 11551, also related to issue 563, 18738 +Language/Expressions/Object_Identity/Object_Identity/double_t02: Fail # Issue 11551, also related to issue 563, 18738 Language/Expressions/Object_Identity/constant_objects_t01: RuntimeError # Please triage this failure Language/Expressions/Object_Identity/double_t02: RuntimeError # Please triage this failure Language/Expressions/Object_Identity/double_t03: RuntimeError # Please triage this failure @@ -157,6 +108,10 @@ Language/Statements/Local_Function_Declaration/reference_before_declaration_t01: Language/Statements/Local_Function_Declaration/reference_before_declaration_t03: MissingCompileTimeError # Issue 21050 Language/Statements/Try/catch_scope_t01: RuntimeError # Please triage this failure Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t02: RuntimeError # Please triage this failure +Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t03: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t05: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t06: Skip # https://github.com/dart-lang/sdk/issues/28873 +Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t08: Skip # https://github.com/dart-lang/sdk/issues/28873 Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_sync_t05: RuntimeError # Issue 25662,25634 Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t01: MissingCompileTimeError # Issue 25495 Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t03: MissingCompileTimeError # Issue 25495 @@ -164,13 +119,48 @@ Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t05: MissingCompile Language/Types/Dynamic_Type_System/deferred_type_error_t01: RuntimeError # Please triage this failure Language/Types/Interface_Types/subtype_t27: Skip # Times out or crashes. Issue 21174 Language/Types/Interface_Types/subtype_t28: Pass, Fail, Crash # Stack overflow. Issue 25282 -Language/Types/Interface_Types/subtype_t30: fail # Issue 14654 +Language/Types/Interface_Types/subtype_t30: Fail # Issue 14654 Language/Variables/final_t01/01: CompileTimeError # co19 issue 77 Language/Variables/final_t02/01: CompileTimeError # co19 issue 77 Language/Variables/local_variable_t01: MissingCompileTimeError # Issue 21050 +LayoutTests/fast/css/font-face-cache-bug_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/dom/HTMLLinkElement/link-onload-stylesheet-with-import_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 LayoutTests/fast/dom/css-innerHTML_t01: SkipByDesign # Test is incorrect. -LayoutTests/fast/loader/loadInProgress_t01: Skip # Issue 23466 +LayoutTests/fast/dom/mutation-event-remove-inserted-node_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/dom/subtree-modified-attributes_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/files/file-reader-done-reading-abort_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 LayoutTests/fast/forms/input-implicit-length-limit_t01: SkipByDesign # Test is not about Dart, but about a DOM-only webkit bug that has been fixed. +LayoutTests/fast/forms/search-popup-crasher_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/loader/loadInProgress_t01: Skip # Issue 23466 +LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/media/mq-parsing_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/mediastream/getusermedia_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/replaced/preferred-widths_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/replaced/table-percent-height_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/replaced/table-percent-width_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/css-table-max-height_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/hittest-tablecell-right-edge_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/table-size-integer-overflow_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/text/find-case-folding_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/text/find-hidden-text_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/text/find-quotes_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/text/find-spaces_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/text/international/cjk-segmentation_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/text/zero-width-characters-complex-script_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/transforms/hit-test-large-scale_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/transforms/scrollIntoView-transformed_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/writing-mode/percentage-margins-absolute_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: Skip # https://github.com/dart-lang/sdk/issues/28873 +LayoutTests/fast/xpath/ambiguous-operators_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 +LibTest/async/Future/Future.delayed_A01_t02: Pass, Fail # Issue 15524 LibTest/collection/LinkedHashSet/LinkedHashSet.from_A03_t01: RuntimeError # Please triage this failure. LibTest/collection/LinkedList/add_A01_t01: Pass, Slow # Slow tests that needs extra time to finish. LibTest/collection/ListBase/ListBase_class_A01_t01: RuntimeError # Please triage this failure @@ -190,6 +180,7 @@ LibTest/core/List/List_class_A01_t01: RuntimeError # co19-roll r623: Please tria LibTest/core/List/getRange_A03_t01: RuntimeError, OK # Tests that fail because they use the legacy try-catch syntax. co19 issue 184. LibTest/core/List/removeAt_A02_t01: RuntimeError # Issue 1533 LibTest/core/List/sort_A01_t06: Slow, Pass # Slow tests that needs extra time to finish. +LibTest/core/RegExp/Pattern_semantics/splitQueryString_A02_t01: Pass, RuntimeError # https://github.com/dart-lang/sdk/issues/29814 LibTest/core/double/INFINITY_A01_t04: RuntimeError # Expected to fail because double.INFINITY is int. LibTest/core/double/NEGATIVE_INFINITY_A01_t04: RuntimeError # Expected to fail because double.NEGATIVE_INFINITY is int. LibTest/core/int/hashCode_A01_t01: RuntimeError, OK # co19 issue 308 @@ -205,9 +196,11 @@ LibTest/core/int/operator_addition_A01_t01: RuntimeError, OK # co19 issue 200 LibTest/core/int/operator_remainder_A01_t01: RuntimeError, OK # Requires bigints. LibTest/core/int/operator_right_shift_A01_t01: RuntimeError, OK # Expects negative result from bit-operation. LibTest/core/int/toDouble_A01_t01: RuntimeError, OK # co19 issue 200 -LibTest/core/RegExp/Pattern_semantics/splitQueryString_A02_t01: Pass,RuntimeError # https://github.com/dart-lang/sdk/issues/29814 +LibTest/html/Element/addEventListener_A01_t04: Skip # https://github.com/dart-lang/sdk/issues/28873 LibTest/html/HttpRequest/responseType_A01_t03: CompileTimeError # co19-roll r706: Please triage this failure +LibTest/html/IFrameElement/addEventListener_A01_t04: Skip # https://github.com/dart-lang/sdk/issues/28873 LibTest/html/IFrameElement/enteredView_A01_t01: CompileTimeError # co19-roll r706: Please triage this failure +LibTest/html/Window/postMessage_A01_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 LibTest/isolate/Isolate/spawnUri_A01_t01: Fail # Dart issue 15974 LibTest/isolate/Isolate/spawnUri_A01_t02: Fail # Dart issue 15974 LibTest/isolate/Isolate/spawnUri_A01_t03: Fail # Dart issue 15974 @@ -224,62 +217,62 @@ LibTest/isolate/SendPort/send_A01_t02: CompileTimeError # co19-roll r706: Please LibTest/isolate/SendPort/send_A01_t03: CompileTimeError # co19-roll r706: Please triage this failure LibTest/math/MutableRectangle/boundingBox_A01_t01: RuntimeError, Pass # co19-roll r706: Please triage this failure. LibTest/math/Rectangle/boundingBox_A01_t01: RuntimeError, Pass # co19-roll r706: Please triage this failure. -LibTest/math/pow_A04_t01: fail # co19-roll r587: Please triage this failure -LibTest/math/pow_A14_t01: fail # co19-roll r587: Please triage this failure -LibTest/math/pow_A16_t01: fail # co19-roll r587: Please triage this failure -LibTest/typed_data/ByteData/*Int64*: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/*Uint64*: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/ByteData.view_A01_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/ByteData.view_A03_t01: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/ByteData.view_A04_t01: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/ByteData.view_A05_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/ByteData.view_A05_t02: fail # Issue 12989 -LibTest/typed_data/ByteData/ByteData.view_A05_t03: fail # Issue 12989 -LibTest/typed_data/ByteData/ByteData_A01_t01: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/ByteData_A02_t01: fail # co19-roll r576: Please triage this failure -LibTest/typed_data/ByteData/getFloat32_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getFloat32_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getFloat64_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getFloat64_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getInt16_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getInt16_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getInt32_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getInt32_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getInt64_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getInt8_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getInt8_A02_t02: fail # Issue 12989 -LibTest/typed_data/ByteData/getUint16_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getUint16_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getUint32_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getUint32_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getUint64_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/getUint8_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/getUint8_A02_t02: fail # Issue 12989 -LibTest/typed_data/ByteData/setFloat32_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setFloat32_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setFloat64_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setFloat64_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setInt16_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setInt16_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setInt32_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setInt32_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setInt64_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setInt8_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setInt8_A02_t02: fail # Issue 12989 -LibTest/typed_data/ByteData/setUint16_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setUint16_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setUint32_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setUint32_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setUint64_A02_t02: fail # co19-roll r569: Please triage this failure -LibTest/typed_data/ByteData/setUint8_A02_t01: fail # Issue 12989 -LibTest/typed_data/ByteData/setUint8_A02_t02: fail # Issue 12989 +LibTest/math/pow_A04_t01: Fail # co19-roll r587: Please triage this failure +LibTest/math/pow_A14_t01: Fail # co19-roll r587: Please triage this failure +LibTest/math/pow_A16_t01: Fail # co19-roll r587: Please triage this failure +LibTest/typed_data/ByteData/*Int64*: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/*Uint64*: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/ByteData.view_A01_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/ByteData.view_A03_t01: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/ByteData.view_A04_t01: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/ByteData.view_A05_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/ByteData.view_A05_t02: Fail # Issue 12989 +LibTest/typed_data/ByteData/ByteData.view_A05_t03: Fail # Issue 12989 +LibTest/typed_data/ByteData/ByteData_A01_t01: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/ByteData_A02_t01: Fail # co19-roll r576: Please triage this failure +LibTest/typed_data/ByteData/getFloat32_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getFloat32_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getFloat64_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getFloat64_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getInt16_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getInt16_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getInt32_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getInt32_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getInt64_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getInt8_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getInt8_A02_t02: Fail # Issue 12989 +LibTest/typed_data/ByteData/getUint16_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getUint16_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getUint32_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getUint32_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getUint64_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/getUint8_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/getUint8_A02_t02: Fail # Issue 12989 +LibTest/typed_data/ByteData/setFloat32_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setFloat32_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setFloat64_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setFloat64_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setInt16_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setInt16_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setInt32_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setInt32_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setInt64_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setInt8_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setInt8_A02_t02: Fail # Issue 12989 +LibTest/typed_data/ByteData/setUint16_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setUint16_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setUint32_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setUint32_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setUint64_A02_t02: Fail # co19-roll r569: Please triage this failure +LibTest/typed_data/ByteData/setUint8_A02_t01: Fail # Issue 12989 +LibTest/typed_data/ByteData/setUint8_A02_t02: Fail # Issue 12989 LibTest/typed_data/Float32List/Float32List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Float32List/Float32List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Float32List/Float32List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32List/Float32List_A02_t01: fail # co19-roll r576: Please triage this failure -LibTest/typed_data/Float32List/fold_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32List/join_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32List/join_A01_t02: fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32List/Float32List_A02_t01: Fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Float32List/fold_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32List/join_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32List/join_A01_t02: Fail # co19-roll r559: Please triage this failure LibTest/typed_data/Float32x4/equal_A01_t01: Skip # co19 issue 656 LibTest/typed_data/Float32x4/greaterThanOrEqual_A01_t01: Skip # co19 issue 656 LibTest/typed_data/Float32x4/greaterThan_A01_t01: Skip # co19 issue 656 @@ -289,539 +282,76 @@ LibTest/typed_data/Float32x4/notEqual_A01_t01: Skip # co19 issue 656 LibTest/typed_data/Float32x4List/Float32x4List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Float32x4List/Float32x4List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Float32x4List/Float32x4List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32x4List/Float32x4List_A02_t01: fail # co19-roll r576: Please triage this failure -LibTest/typed_data/Float32x4List/fold_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32x4List/join_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32x4List/join_A01_t02: fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32x4List/Float32x4List_A02_t01: Fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Float32x4List/fold_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32x4List/join_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32x4List/join_A01_t02: Fail # co19-roll r559: Please triage this failure LibTest/typed_data/Float64List/Float64List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Float64List/Float64List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Float64List/Float64List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Float64List/Float64List_A02_t01: fail # co19-roll r576: Please triage this failure -LibTest/typed_data/Float64List/fold_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float64List/join_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float64List/join_A01_t02: fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float64List/Float64List_A02_t01: Fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Float64List/fold_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float64List/join_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float64List/join_A01_t02: Fail # co19-roll r559: Please triage this failure LibTest/typed_data/Int16List/Int16List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Int16List/Int16List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Int16List/Int16List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Int16List/Int16List_A02_t01: fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Int16List/Int16List_A02_t01: Fail # co19-roll r576: Please triage this failure LibTest/typed_data/Int32List/Int32List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Int32List/Int32List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Int32List/Int32List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Int32List/Int32List_A02_t01: fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Int32List/Int32List_A02_t01: Fail # co19-roll r576: Please triage this failure LibTest/typed_data/Int64List/*: Fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Int64List/Int64List_A02_t01: pass # co19-roll r559: Please triage this failure +LibTest/typed_data/Int64List/Int64List_A02_t01: Pass # co19-roll r559: Please triage this failure LibTest/typed_data/Int8List/Int8List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Int8List/Int8List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Int8List/Int8List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Int8List/Int8List_A02_t01: fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Int8List/Int8List_A02_t01: Fail # co19-roll r576: Please triage this failure LibTest/typed_data/Uint16List/Uint16List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint16List/Uint16List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint16List/Uint16List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint16List/Uint16List_A02_t01: fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Uint16List/Uint16List_A02_t01: Fail # co19-roll r576: Please triage this failure LibTest/typed_data/Uint32List/Uint32List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint32List/Uint32List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint32List/Uint32List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint32List/Uint32List_A02_t01: fail # co19-roll r576: Please triage this failure +LibTest/typed_data/Uint32List/Uint32List_A02_t01: Fail # co19-roll r576: Please triage this failure LibTest/typed_data/Uint64List/*: Fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint64List/Uint64List_A02_t01: pass # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint64List/Uint64List_A02_t01: Pass # co19-roll r559: Please triage this failure LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint8ClampedList/Uint8ClampedList.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint8ClampedList/Uint8ClampedList_A02_t01: Pass, fail # co19-roll r576: Passes on ie10. Please triage this failure +LibTest/typed_data/Uint8ClampedList/Uint8ClampedList_A02_t01: Pass, Fail # co19-roll r576: Passes on ie10. Please triage this failure LibTest/typed_data/Uint8List/Uint8List.view_A05_t01: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint8List/Uint8List.view_A05_t02: RuntimeError # co19-roll r559: Please triage this failure LibTest/typed_data/Uint8List/Uint8List.view_A05_t03: RuntimeError # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint8List/Uint8List_A02_t01: fail # co19-roll r576: Please triage this failure -Utils/tests/Expect/identical_A01_t01: fail # co19-roll r546: Please triage this failure +LibTest/typed_data/Uint8List/Uint8List_A02_t01: Fail # co19-roll r576: Please triage this failure +Utils/tests/Expect/identical_A01_t01: Fail # co19-roll r546: Please triage this failure +WebPlatformTest/Utils/test/asyncTestFail_t02: Skip # https://github.com/dart-lang/sdk/issues/28873 WebPlatformTest/Utils/test/testFail_t01: RuntimeError # co19-roll r722: Please triage this failure. +WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 WebPlatformTest/dom/nodes/DOMImplementation-createHTMLDocument_t01: CompileTimeError # co19-roll r722: Please triage this failure. WebPlatformTest/dom/nodes/Document-createElement_t01: CompileTimeError # co19-roll r722: Please triage this failure. WebPlatformTest/dom/nodes/Element-childElementCount-nochild_t01: CompileTimeError # co19-roll r722: Please triage this failure. -WebPlatformTest/webstorage/storage_session_setitem_quotaexceedederr_t01: Skip # Times out. Please triage this failure +WebPlatformTest/webstorage/event_local_storageeventinit_t01: Skip # https://github.com/dart-lang/sdk/issues/28873 WebPlatformTest/webstorage/storage_local_setitem_quotaexceedederr_t01: Skip # Times out. Please triage this failure. +WebPlatformTest/webstorage/storage_session_setitem_quotaexceedederr_t01: Skip # Times out. Please triage this failure -[ $compiler == dart2js && $checked ] -Language/Errors_and_Warnings/static_warning_t02: RuntimeError # Please triage this failure -Language/Errors_and_Warnings/static_warning_t03: RuntimeError # Please triage this failure -Language/Errors_and_Warnings/static_warning_t04: RuntimeError # Please triage this failure -Language/Errors_and_Warnings/static_warning_t05: RuntimeError # Please triage this failure -Language/Errors_and_Warnings/static_warning_t06: RuntimeError # Please triage this failure -Language/Expressions/Assignment/Compound_Assignment/null_aware_static_warning_super_t01/01: Fail # Please triage this failure -Language/Expressions/Assignment/Compound_Assignment/null_aware_static_warning_variable_t01/01: Fail # Please triage this failure -Language/Expressions/Assignment/super_assignment_static_warning_t04/01: Fail # Please triage this failure -Language/Expressions/Assignment/super_assignment_dynamic_error_t01: RuntimeError # Please triage this failure -Language/Expressions/Function_Expressions/static_type_dynamic_async_t03: RuntimeError # Please triage this failure -Language/Expressions/Function_Expressions/static_type_dynamic_asyncs_t03: RuntimeError # Please triage this failure -Language/Expressions/Function_Expressions/static_type_dynamic_syncs_t03: RuntimeError # Please triage this failure -Language/Expressions/Function_Expressions/static_type_form_3_async_t03: RuntimeError # Please triage this failure -Language/Expressions/Function_Expressions/static_type_form_3_asyncs_t03: RuntimeError # Please triage this failure -Language/Expressions/Function_Expressions/static_type_form_3_syncs_t03: RuntimeError # Please triage this failure -Language/Expressions/If_null_Expressions/static_type_t01: RuntimeError # Please triage this failure -Language/Expressions/If_null_Expressions/static_type_t02: RuntimeError # Please triage this failure -Language/Functions/async_return_type_t01: RuntimeError # Please triage this failure -Language/Functions/generator_return_type_t01: RuntimeError # Please triage this failure -Language/Functions/generator_return_type_t02: RuntimeError # Please triage this failure -Language/Statements/Assert/execution_t03: RuntimeError # Please triage this failure -Language/Statements/Assert/execution_t11: RuntimeError # Please triage this failure -Language/Statements/Switch/execution_t01: Fail # Missing type check in switch expression -Language/Statements/Switch/type_t01: RuntimeError # Issue 16089 -Language/Statements/Return/runtime_type_t04: RuntimeError # Issue 26584 -Language/Types/Static_Types/malformed_type_t01: RuntimeError # Issue 21089 -Language/Types/Dynamic_Type_System/malbounded_type_error_t01: RuntimeError # Issue 21088 -Language/Types/Parameterized_Types/malbounded_t06: RuntimeError # Issue 21088 -LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Skip # Timesout. Please triage this failure. -LibTest/core/Map/Map_class_A01_t04: Slow, Pass # Please triage this failure -LibTest/core/Uri/Uri_A06_t03: Slow, Pass # Please triage this failure -LibTest/math/Point/operator_mult_A02_t01: RuntimeError # Issue 1533 +[ $builder_tag != run_webgl_tests && $compiler == dart2js ] +LayoutTests/fast/canvas/webgl*: Skip # Only run WebGL on special builders, issue 29961 -[ $compiler == dart2js && ! $checked && $enable_asserts ] -Language/Statements/Assert/execution_t01: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/execution_t02: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/execution_t03: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/execution_t04: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/execution_t05: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/execution_t06: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/execution_t11: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/production_mode_t01: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/type_t02: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/type_t03: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/type_t04: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/type_t05: SkipByDesign # Unspec'd feature. -Language/Statements/Assert/type_t06: SkipByDesign # Unspec'd feature. +[ $builder_tag == win7 && $compiler == dart2js && $runtime == ie11 ] +LayoutTests/fast/files/file-reader-result-twice_t01: Pass, RuntimeError # Issue 31430 -[ $compiler == dart2js && $checked && $runtime != d8] -LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/empty-inline-before-collapsed-space_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/trivial_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/trivial-segments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/auto-sizing-orthogonal-flows_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context_t01: RuntimeError # Please triage this failure - -[ $compiler == dart2js && $checked && $runtime != drt && $runtime != d8] -WebPlatformTest/custom-elements/instantiating/createElement_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A04_t01: RuntimeError # Please triage this failure - -[ $compiler == dart2js && $fast_startup ] -Language/Classes/Instance_Methods/Operators/unary_minus: Fail # mirrors not supported -Language/Expressions/Null/instance_of_class_null_t01: Fail # mirrors not supported -Language/Metadata/before_class_t01: Fail # mirrors not supported -Language/Metadata/before_ctor_t01: Fail # mirrors not supported -Language/Metadata/before_ctor_t02: Fail # mirrors not supported -Language/Metadata/before_export_t01: Fail # mirrors not supported -Language/Metadata/before_factory_t01: Fail # mirrors not supported -Language/Metadata/before_function_t01: Fail # mirrors not supported -Language/Metadata/before_function_t02: Fail # mirrors not supported -Language/Metadata/before_function_t03: Fail # mirrors not supported -Language/Metadata/before_function_t04: Fail # mirrors not supported -Language/Metadata/before_function_t05: Fail # mirrors not supported -Language/Metadata/before_function_t06: Fail # mirrors not supported -Language/Metadata/before_function_t07: Fail # mirrors not supported -Language/Metadata/before_import_t01: Fail # mirrors not supported -Language/Metadata/before_library_t01: Fail # mirrors not supported -Language/Metadata/before_param_t01: Fail # mirrors not supported -Language/Metadata/before_param_t02: Fail # mirrors not supported -Language/Metadata/before_param_t03: Fail # mirrors not supported -Language/Metadata/before_param_t04: Fail # mirrors not supported -Language/Metadata/before_param_t05: Fail # mirrors not supported -Language/Metadata/before_param_t06: Fail # mirrors not supported -Language/Metadata/before_param_t07: Fail # mirrors not supported -Language/Metadata/before_param_t08: Fail # mirrors not supported -Language/Metadata/before_param_t09: Fail # mirrors not supported -Language/Metadata/before_type_param_t01: Fail # mirrors not supported -Language/Metadata/before_typedef_t01: Fail # mirrors not supported -Language/Metadata/before_variable_t01: Fail # mirrors not supported -Language/Metadata/before_variable_t02: Fail # mirrors not supported -Language/Metadata/compilation_t01: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t02: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t03: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t04: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t05: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t06: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t07: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t08: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t09: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t10: Pass # mirrors not supported, fails for the wrong reason -Language/Metadata/compilation_t11: Pass # mirrors not supported, fails for the wrong reason -WebPlatformTest/shadow-dom/testcommon: Fail # mirrors not supported - -[ $compiler == dart2js && $runtime == jsshell ] -LibTest/isolate/Isolate/spawn_A04_t04: Fail # Issue 27558 - -[ $compiler == dart2js && $fast_startup && $runtime == d8] -LibTest/isolate/Isolate/spawn_A04_t04: Fail # Issue 27558 - -[ $compiler == dart2js && $fast_startup && $runtime == jsshell ] -LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: Fail # please triage - -[ $compiler == dart2js && $fast_startup && $browser ] -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-001_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t02: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t02: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t02: Fail # custom elements not supported -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/custom-pseudo-elements/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: Fail # please triage - -[ $compiler == dart2js && $fast_startup && $browser && $runtime != chrome && $runtime != drt] -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-005_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-007_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-008_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-009_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-010_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-012_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-013_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-001_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-007_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-010_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-005_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t03: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t04: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-001_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/inert-html-elements/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/composition/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-005_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/nested-shadow-trees/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/rendering-shadow-trees/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/reprojection/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-005_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-006_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-017_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/shadow-root-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: Fail # please triage - -[ $compiler == dart2js && $fast_startup && $browser && $runtime != chrome ] -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: Fail # please triage - -[ $compiler == dart2js && $fast_startup && $browser && $runtime != drt ] -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-004_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: Fail # custom elements not supported -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: Fail # please triage -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-005_t01: Fail # please triage -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t01: Fail # please triage - -[ $compiler == dart2js && ! $checked && $runtime != d8 && $runtime != jsshell] -LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure - -[ $compiler == dart2js && $minified ] -LibTest/typed_data/Float32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32x4List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Float64List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Int16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Int32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Int8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint16List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint32List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint8List/runtimeType_A01_t01: fail # co19-roll r559: Please triage this failure +[ $builder_tag == win8 && $compiler == dart2js && $runtime == ie11 ] +LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/serialize-attribute_t01: RuntimeError # Please triage this failure +LibTest/typed_data/ByteData/offsetInBytes_A01_t01: RuntimeError # Please triage this failure [ $compiler == dart2js && $mode == debug ] LibTest/collection/ListBase/ListBase_class_A01_t01: Skip LibTest/collection/ListMixin/ListMixin_class_A01_t01: Skip LibTest/core/List/List_class_A01_t01: Skip -[ $compiler == dart2js && $runtime == jsshell ] -Language/Expressions/Await_Expressions/execution_t01: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Expressions/Await_Expressions/execution_t02: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Expressions/Await_Expressions/execution_t03: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Expressions/Await_Expressions/execution_t04: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Expressions/Await_Expressions/execution_t05: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Expressions/Await_Expressions/execution_t06: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/For/Asynchronous_For_in/execution_t04: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t01: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t04: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t02: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t03: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t04: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t05: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t06: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t07: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t08: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t09: RuntimeError # Issue 7728, timer not supported in jsshell -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t10: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Future/Future.delayed_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Future/Future.delayed_A03_t01: fail # Issue 7728, timer not supported in jsshell -LibTest/async/Future/doWhile_A05_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Future/forEach_A04_t02: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Future/timeout_A01_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Future/wait_A01_t07: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Stream/Stream.periodic_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Stream/Stream.periodic_A02_t01: fail # Issue 7728, timer not supported in jsshell -LibTest/async/Stream/Stream.periodic_A03_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Stream/asBroadcastStream_A03_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Stream/asBroadcastStream_A04_t03: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Stream/first_A01_t01: fail # co19-roll r546: Please triage this failure -LibTest/async/Stream/first_A02_t02: fail # co19-roll r546: Please triage this failure -LibTest/async/Stream/timeout_A01_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Stream/timeout_A02_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Stream/timeout_A03_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Stream/timeout_A04_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. -LibTest/async/Timer/Timer.periodic_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Timer/Timer.periodic_A02_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Timer/Timer_A01_t01: fail # Issue 7728, timer not supported in jsshell -LibTest/async/Timer/cancel_A01_t01: fail # Issue 7728, timer not supported in jsshell -LibTest/async/Timer/isActive_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Timer/isActive_A01_t02: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Zone/createPeriodicTimer_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/async/Zone/createTimer_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/List/sort_A01_t04: Skip # Must be a bug in jsshell, test sometimes times out. -LibTest/core/Map/Map_class_A01_t04: Pass, Slow # Issue 8096 -LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Fail # co19-roll r706: Please triage this failure. -LibTest/core/Stopwatch/elapsedInMs_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/elapsedInUs_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/elapsedTicks_A01_t01: RuntimeError # Please triage this failure -LibTest/core/Stopwatch/elapsedTicks_A01_t02: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/elapsedTicks_A01_t03: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/elapsed_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/elapsed_A01_t02: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/elapsed_A01_t03: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/start_A01_t01: RuntimeError # Please triage this failure -LibTest/core/Stopwatch/start_A01_t02: RuntimeError # Please triage this failure -LibTest/core/Stopwatch/start_A01_t03: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Stopwatch/stop_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/core/Uri/Uri_A06_t03: Pass, Slow -LibTest/isolate/Isolate/spawn_A03_t01: RuntimeError # Please triage this failure -LibTest/isolate/Isolate/spawn_A03_t03: RuntimeError # Please triage this failure -LibTest/isolate/Isolate/spawn_A03_t04: RuntimeError # Please triage this failure -LibTest/isolate/Isolate/spawn_A04_t02: RuntimeError # Please triage this failure -LibTest/isolate/Isolate/spawn_A04_t03: Fail # Please triage this failure -LibTest/isolate/Isolate/spawn_A04_t05: Fail # Please triage this failure -LibTest/isolate/Isolate/spawn_A06_t02: Fail # Please triage this failure -LibTest/isolate/Isolate/spawn_A06_t03: Fail # Please triage this failure -LibTest/isolate/Isolate/spawn_A06_t04: RuntimeError # Please triage this failure -LibTest/isolate/Isolate/spawn_A06_t05: RuntimeError # Please triage this failure -LibTest/isolate/Isolate/spawn_A06_t07: Fail # Please triage this failure -LibTest/isolate/RawReceivePort/close_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/isolate/ReceivePort/asBroadcastStream_A04_t03: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/isolate/ReceivePort/close_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/typed_data/Float32List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: fail # co19-roll r587: Please triage this failure -LibTest/typed_data/Float64List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Int16List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Int16List/toList_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Int32List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Int32List/toList_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell -LibTest/typed_data/Int8List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint16List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint16List/toList_A01_t01: fail # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint32List/toList_A01_t01: Skip # issue 16934, co19-roll r559: Please triage this failure -LibTest/typed_data/Uint8ClampedList/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -LibTest/typed_data/Uint8List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure - -[ $compiler == dart2js && $checked && $runtime == jsshell] -LibTest/core/Map/Map_class_A01_t04: Skip # Issue 18093, timeout. -LibTest/core/Uri/Uri_A06_t03: Skip # Issue 18093, timeout. -LibTest/core/Uri/encodeQueryComponent_A01_t02: Skip # Issue 18093, timeout. - -[ $compiler == dart2js && $jscl ] -LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Fail, Pass # issue 3333 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError, OK # This is not rejected by V8. Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 -LibTest/core/int/compareTo_A01_t01: RuntimeError, OK # Requires big int. -LibTest/core/int/hashCode_A01_t01: RuntimeError, OK # co19 testing missing assertion. -LibTest/core/int/isEven_A01_t01: RuntimeError, OK # Not in API. -LibTest/core/int/isOdd_A01_t01: RuntimeError, OK # Not in API. -LibTest/core/int/operator_left_shift_A01_t01: RuntimeError, OK # Requires big int. -LibTest/core/int/operator_remainder_A01_t03: RuntimeError, OK # Leg only has double. -LibTest/core/int/operator_truncating_division_A01_t02: RuntimeError, OK # Leg only has double. -LibTest/core/int/remainder_A01_t01: RuntimeError, OK # Requires big int. -LibTest/core/int/remainder_A01_t03: RuntimeError, OK # Leg only has double. -LibTest/core/int/toDouble_A01_t01: RuntimeError, OK # Requires big int. -LibTest/core/int/toRadixString_A01_t01: RuntimeError, OK # Bad test: uses Expect.fail, Expect.throws, assumes case of result, and uses unsupported radixes. - -[ $compiler == dart2js && $runtime == d8 ] -LibTest/isolate/Isolate/spawn_A03_t01: Pass # co19 issue 77 -LibTest/isolate/Isolate/spawn_A04_t02: RuntimeError # Please triage this failure. -LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: fail # co19-roll r587: Please triage this failure -LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell - - -[ $compiler == dart2js && $runtime == d8 && $system == windows ] -LibTest/async/DeferredLibrary/*: Skip # Issue 17458 - -[ $compiler == dart2js && $browser ] -LayoutTests/fast/mediastream/getusermedia_t01: Skip # Please triage this failure. -LayoutTests/fast/css-generated-content/bug91547_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/filesystem/file-after-reload-crash_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/dom/HTMLButtonElement/change-type_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/dom/StyleSheet/discarded-sheet-owner-null_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/dom/css-cached-import-rule_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/dom/cssTarget-crash_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/dom/empty-hash-and-search_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/dom/shadow/form-in-shadow_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/date/date-interactive-validation-required_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/datetimelocal/datetimelocal-interactive-validation-required_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/form-submission-create-crash_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/formmethod-attribute-button-html_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/formmethod-attribute-input-html_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/formmethod-attribute-input-2_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/missing-action_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/submit-form-with-dirname-attribute_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/submit-form-with-dirname-attribute-with-ancestor-dir-attribute_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/submit-form-with-dirname-attribute-with-nonhtml-ancestor_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/submit-nil-value-field-assert_t01: Skip # Test reloads itself. Issue 18558. -LayoutTests/fast/forms/textarea-submit-crash_t01: Skip # Test reloads itself. Issue 18558. -LibTest/html/IFrameElement/appendHtml_A01_t01: Pass, RuntimeError # Issue 23462 -LibTest/html/IFrameElement/appendHtml_A01_t02: Pass, RuntimeError # Issue 23462 - -LayoutTests/fast/dynamic/insertAdjacentHTML_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/balance-unbreakable_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance-maxheight_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t02: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t04: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t05: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t06: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t07: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t08: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t09: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/newmulticol/balance_t10: Pass, RuntimeError # Issue 747, I don't understand how, but sometimes passes. -LayoutTests/fast/multicol/newmulticol/balance-images_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/column-width-zero_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/widows_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/multicol/orphans-relayout_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/media/mq-parsing_t01: Pass, RuntimeError # Issue 747, False passes on Firefox, but trying to keep these grouped with the issue. -LayoutTests/fast/mediastream/RTCPeerConnection-AddRemoveStream_t01: Skip # Passes on Safari, Issue 23475 -LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: Pass, RuntimeError # Issue 747, False pass on Safari -LayoutTests/fast/lists/list-style-position-inside_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/overflow/overflow-rtl-vertical-origin_t01: Pass, RuntimeError # Issue 747, False passes on Firefox, but trying to keep these grouped with the issue. -LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor_t01: Pass # Issue 747, False pass -LayoutTests/fast/table/col-width-span-expand_t01: Skip # Issue 747 -LayoutTests/fast/text/font-fallback-synthetic-italics_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/text/glyph-reordering_t01: Pass, RuntimeError # Issue 747, This is a false pass. The font gets sanitized, so whether it works or not probably depends on default sizes. -LayoutTests/fast/text/international/rtl-text-wrapping_t01: Pass # Issue 747, This is a false pass. All the content gets sanitized, so there's nothing to assert fail on. If the code did anything it would fail. -LayoutTests/fast/text/line-break-after-empty-inline-hebrew_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/text/regional-indicator-symobls_t01: Pass, Fail # Issue 747 -LayoutTests/fast/text/font-fallback-synthetic-italics_t01: RuntimeError # Issue 747 -LayoutTests/fast/text/font-ligatures-linebreak_t01: Skip # Issue 747 -LayoutTests/fast/text/font-ligatures-linebreak-word_t01: Skip # Issue 747 -LayoutTests/fast/text/ipa-tone-letters_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/writing-mode/percentage-margins-absolute-replaced_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/writing-mode/positionForPoint_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/text/font-ligatures-linebreak-word_t01: Skip # Issue 747 -LayoutTests/fast/html/adjacent-html-context-element_t01:RuntimeError # Issue 747 -LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: RuntimeError # Issue 747 -LayoutTests/fast/transforms/transform-hit-test-flipped_t01: Pass, RuntimeError # Issue 747, Passes on Firefox, but is clearly not testing what it's trying to test. -LayoutTests/fast/transforms/scrollIntoView-transformed_t01: Pass, RuntimeError # Issue 747, False passes on Firefox. -LayoutTests/fast/transforms/bounding-rect-zoom_t01: RuntimeError, Pass # Issue 747, Erratic, but only passes because divs have been entirely removed. -LayoutTests/fast/table/anonymous-table-section-removed_t01: Skip # Issue 747 -LayoutTests/fast/table/hittest-tablecell-bottom-edge_t01: Skip # Issue 747 -LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge_t01: Skip # Issue 747 -LayoutTests/fast/table/table-width-exceeding-max-width_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/table/min-max-width-preferred-size_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/table/margins-flipped-text-direction_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/table/html-table-width-max-width-constrained_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/table/fixed-table-layout-width-change_t01: Pass, RuntimeError # Issue 747, False passes on Firefox -LayoutTests/fast/sub-pixel/replaced-element-baseline_t01: Pass, RuntimeError # Issue 747, Fails on Safari, false pass on others -LayoutTests/fast/ruby/parse-rp_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass. -LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass -LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor-vertical-lr_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass -LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor-vertical-lr_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/parser/parse-wbr_t01: Pass, RuntimeError # Issue 747 -WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t01: RuntimeError, Pass # Issue 747 -WebPlatformTest/html/semantics/document-metadata/styling/LinkStyle_t01: Pass,RuntimeError # Issue 747 -WebPlatformTest/html/semantics/grouping-content/the-ol-element/ol.start-reflection_t02: Skip # Issue 747 -WebPlatformTest/html/semantics/scripting-1/the-script-element/async_t11: Skip # Issue 747 -WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: Pass, RuntimeError # Issue 747, Spurious pass -WebPlatformTest/html/semantics/selectors/pseudo-classes/link_t01: Pass,RuntimeError # Issue 747 -WebPlatformTest/html/semantics/forms/the-form-element/form-nameditem_t01: RuntimeError # Issue 747 - -[ $compiler == dart2js && $runtime == chromeOnAndroid ] -LayoutTests/fast/multicol/newmulticol/balance-maxheight_t02: RuntimeError -Language/Expressions/Strings/escape_backspace_t01: Pass, Slow # Please triage this failure. -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: Fail # Issue 22200. -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: Fail # Issue 22200. -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: Fail # Issue 22200. -LibTest/core/Set/removeAll_A01_t02: Pass, Slow # Please triage this failure. -LibTest/core/int/compareTo_A01_t01: Fail # Please triage this failure. -LibTest/core/int/operator_left_shift_A01_t01: Fail # Please triage this failure. -LibTest/core/int/operator_remainder_A01_t03: Fail # Please triage this failure. -LibTest/core/int/operator_truncating_division_A01_t02: Fail # Please triage this failure. -LibTest/core/int/remainder_A01_t01: Fail # Please triage this failure. -LibTest/core/int/remainder_A01_t03: Fail # Please triage this failure. -LibTest/core/int/toRadixString_A01_t01: Fail # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A01_t01: Skip # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A01_t02: Skip # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A01_t03: Skip # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A02_t01: RuntimeError # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A02_t02: Skip # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A02_t03: Skip # Please triage this failure. -LibTest/isolate/Isolate/spawnUri_A02_t04: Skip # Please triage this failure. -LibTest/math/log_A01_t01: Fail # Please triage this failure. -LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t02: RuntimeError # Please triage this failure. -LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Please triage this failure. -LibTest/typed_data/Float64List/join_A01_t01: Pass, Slow # Please triage this failure. -LibTest/typed_data/Int16List/single_A01_t02: Pass, Slow # Please triage this failure. -LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Please triage this failure. -LibTest/typed_data/Int8List/sublist_A02_t01: Pass, Slow # Please triage this failure. -LibTest/typed_data/Uint8ClampedList/map_A02_t01: Pass, Slow # Please triage this failure. - [ $compiler == dart2js && $runtime == chrome ] Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t01: Pass, RuntimeError # Issue 26615 Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t04: Pass, RuntimeError # Issue 26615 @@ -1447,7 +977,7 @@ LayoutTests/fast/xpath/py-dom-xpath/expressions_t01: RuntimeError # Please triag LayoutTests/fast/xpath/py-dom-xpath/paths_t01: RuntimeError # Please triage this failure LayoutTests/fast/xpath/reverse-axes_t01: RuntimeError # Please triage this failure LayoutTests/fast/xsl/default-html_t01: RuntimeError # Please triage this failure -LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Pass,RuntimeError # https://github.com/dart-lang/sdk/issues/29814 +LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Pass, RuntimeError # https://github.com/dart-lang/sdk/issues/29814 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError # Issue 22200 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 @@ -1644,7 +1174,7 @@ WebPlatformTest/html/semantics/selectors/pseudo-classes/checked_t01: RuntimeErro WebPlatformTest/html/semantics/selectors/pseudo-classes/dir_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/selectors/pseudo-classes/enabled_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/focus_t01: Pass,RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/focus_t01: Pass, RuntimeError # Please triage this failure WebPlatformTest/html/semantics/selectors/pseudo-classes/indeterminate_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/tabular-data/the-table-element/table-rows_t01: RuntimeError # Please triage this failure WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t01: Pass, RuntimeError # Please triage this failure @@ -1710,7 +1240,52 @@ WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t0 WebPlatformTest/webstorage/event_constructor_t01: RuntimeError # Please triage this failure WebPlatformTest/webstorage/event_constructor_t02: RuntimeError # Please triage this failure -[ $compiler == dart2js && $runtime == chrome && $checked] +[ $compiler == dart2js && $runtime == chrome && $system == linux ] +LayoutTests/fast/canvas/canvas-before-css_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/canvas/canvas-ellipse_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/canvas/canvas-scale-fillRect-shadow_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Pass, RuntimeError # 30174 +LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/canvas/webgl/triangle_t01: RuntimeError, Pass # Please triage this flake +LayoutTests/fast/multicol/newmulticol/balance_t04: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/combining-marks-position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/regional-indicator-symobls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure +LibTest/math/log_A01_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime == chrome && $system == macos ] +Language/Expressions/Function_Invocation/async_invokation_t04: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-test_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Skip # Times out. Please triage this failure. +LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-attributes_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/forms/percent-height-auto-width-form-controls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance_t04: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure +LayoutTests/fast/text/glyph-reordering_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure +LibTest/async/Timer/Timer.periodic_A01_t01: Skip # Times out. Please triage this failure +LibTest/isolate/Isolate/spawn_A01_t05: Skip # Times out. Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: Skip # Times out. Please triage this failure + +[ $compiler == dart2js && $runtime == chrome && $system != macos ] +LayoutTests/fast/canvas/webgl/context-lost-restored_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/zero-width-characters-complex-script_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime == chrome && $system == windows ] +Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t04: Pass, Slow # Issue 25940 +Language/Expressions/Bitwise_Expressions/method_invocation_super_t01: Pass, Slow # Issue 25940 +LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime == chrome && $checked ] LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-intrinsic-dimensions/css-tables_t01: RuntimeError # Please triage this failure @@ -1726,11 +1301,15 @@ LayoutTests/fast/css/box-sizing-border-box-dynamic-padding-border-update_t01: Ru LayoutTests/fast/css/display-inline-block-scrollbar_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/fixed-width-intrinsic-width-excludes-scrollbars_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/style-scoped/style-scoped-scoping-nodes-different-order_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: Skip # Roll 50 failure LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-relative_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-static_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLLabelElement/form/test1_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLTableElement/insert-row_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/database-callback-delivery_t01: Skip # Roll 50 failure +LayoutTests/fast/dom/icon-size-property_t01: Skip # Roll 50 failure LayoutTests/fast/events/scroll-event-phase_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/filesystem/*: Skip # Roll 50 failure LayoutTests/fast/filesystem/file-writer-abort_t01: RuntimeError # Please triage this failure LayoutTests/fast/filesystem/file-writer-events_t01: RuntimeError # Please triage this failure LayoutTests/fast/filesystem/op-copy_t01: RuntimeError # Please triage this failure @@ -1772,62 +1351,127 @@ LayoutTests/fast/xpath/py-dom-xpath/axes_t01: RuntimeError # Dartium JSInterop f LayoutTests/fast/xpath/xpath-result-eventlistener-crash_t01: RuntimeError # Please triage this failure LibTest/html/Element/Element.tag_A01_t01: RuntimeError # Please triage this failure LibTest/html/Node/ownerDocument_A01_t01: RuntimeError # Issue 18251 +LibTest/html/Window/requestFileSystem_A01_t01: Skip # Roll 50 failure +LibTest/html/Window/requestFileSystem_A01_t02: Skip # Roll 50 failure WebPlatformTest/DOMEvents/approved/Propagation.path.target.removed_t01: RuntimeError # Please triage this failure WebPlatformTest/custom-elements/instantiating/createElementNS_A05_t01: RuntimeError # Please triage this failure WebPlatformTest/custom-elements/instantiating/createElement_A05_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context_t01: RuntimeError # Please triage this failure WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: Skip # Roll 50 failure -LayoutTests/fast/dom/icon-size-property_t01: Skip # Roll 50 failure -LayoutTests/fast/dom/MutationObserver/database-callback-delivery_t01: Skip # Roll 50 failure -LayoutTests/fast/filesystem/*: Skip # Roll 50 failure -LibTest/html/Window/requestFileSystem_A01_t01: Skip # Roll 50 failure -LibTest/html/Window/requestFileSystem_A01_t02: Skip # Roll 50 failure -[ $compiler == dart2js && $runtime == chrome && $system == macos ] -Language/Expressions/Function_Invocation/async_invokation_t04: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/canvas-test_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Skip # Times out. Please triage this failure. -LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-attributes_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/forms/percent-height-auto-width-form-controls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance_t04: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure -LayoutTests/fast/text/glyph-reordering_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure -LibTest/async/Timer/Timer.periodic_A01_t01: Skip # Times out. Please triage this failure -LibTest/isolate/Isolate/spawn_A01_t05: Skip # Times out. Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: Skip # Times out. Please triage this failure +[ $compiler == dart2js && $runtime != chrome && $runtime != drt && $browser && $fast_startup ] +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-005_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-007_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-008_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-009_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-010_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-012_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-013_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-001_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-007_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-010_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-005_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t03: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t04: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-001_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/inert-html-elements/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/composition/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-005_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/nested-shadow-trees/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/rendering-shadow-trees/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/reprojection/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-005_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-006_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-017_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/shadow-root-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: Fail # please triage -[ $compiler == dart2js && $runtime == chrome && $system == windows ] -Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t04: Pass, Slow # Issue 25940 -Language/Expressions/Bitwise_Expressions/method_invocation_super_t01: Pass, Slow # Issue 25940 -LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime != chrome && $browser && $fast_startup ] +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: Fail # please triage -[ $compiler == dart2js && $runtime == chrome && $system != macos ] -LayoutTests/fast/canvas/webgl/context-lost-restored_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/zero-width-characters-complex-script_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime == chromeOnAndroid ] +Language/Expressions/Strings/escape_backspace_t01: Pass, Slow # Please triage this failure. +LayoutTests/fast/multicol/newmulticol/balance-maxheight_t02: RuntimeError +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: Fail # Issue 22200. +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: Fail # Issue 22200. +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: Fail # Issue 22200. +LibTest/core/Set/removeAll_A01_t02: Pass, Slow # Please triage this failure. +LibTest/core/int/compareTo_A01_t01: Fail # Please triage this failure. +LibTest/core/int/operator_left_shift_A01_t01: Fail # Please triage this failure. +LibTest/core/int/operator_remainder_A01_t03: Fail # Please triage this failure. +LibTest/core/int/operator_truncating_division_A01_t02: Fail # Please triage this failure. +LibTest/core/int/remainder_A01_t01: Fail # Please triage this failure. +LibTest/core/int/remainder_A01_t03: Fail # Please triage this failure. +LibTest/core/int/toRadixString_A01_t01: Fail # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A01_t01: Skip # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A01_t02: Skip # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A01_t03: Skip # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A02_t01: RuntimeError # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A02_t02: Skip # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A02_t03: Skip # Please triage this failure. +LibTest/isolate/Isolate/spawnUri_A02_t04: Skip # Please triage this failure. +LibTest/math/log_A01_t01: Fail # Please triage this failure. +LibTest/typed_data/Float32x4List/Float32x4List.view_A01_t02: RuntimeError # Please triage this failure. +LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Please triage this failure. +LibTest/typed_data/Float64List/join_A01_t01: Pass, Slow # Please triage this failure. +LibTest/typed_data/Int16List/single_A01_t02: Pass, Slow # Please triage this failure. +LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Please triage this failure. +LibTest/typed_data/Int8List/sublist_A02_t01: Pass, Slow # Please triage this failure. +LibTest/typed_data/Uint8ClampedList/map_A02_t01: Pass, Slow # Please triage this failure. -[ $compiler == dart2js && $runtime == chrome && $system == linux] -LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Pass, RuntimeError # 30174 -LayoutTests/fast/multicol/newmulticol/balance_t04: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/combining-marks-position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/regional-indicator-symobls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure -LibTest/math/log_A01_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: RuntimeError, Pass # Please triage this flake -LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: RuntimeError, Pass # Please triage this flake -LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow_t01: RuntimeError, Pass # Please triage this flake -LayoutTests/fast/canvas/canvas-ellipse_t01: RuntimeError, Pass # Please triage this flake -LayoutTests/fast/canvas/canvas-before-css_t01: RuntimeError, Pass # Please triage this flake -LayoutTests/fast/canvas/webgl/triangle_t01: RuntimeError, Pass # Please triage this flake -LayoutTests/fast/canvas/canvas-scale-fillRect-shadow_t01: RuntimeError, Pass # Please triage this flake +[ $compiler == dart2js && $runtime == d8 ] +LibTest/isolate/Isolate/spawn_A03_t01: Pass # co19 issue 77 +LibTest/isolate/Isolate/spawn_A04_t02: RuntimeError # Please triage this failure. +LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: Fail # co19-roll r587: Please triage this failure +LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell + +[ $compiler == dart2js && $runtime == d8 && $system == windows ] +LibTest/async/DeferredLibrary/*: Skip # Issue 17458 + +[ $compiler == dart2js && $runtime == d8 && $fast_startup ] +LibTest/isolate/Isolate/spawn_A04_t04: Fail # Issue 27558 + +[ $compiler == dart2js && $runtime != d8 && $runtime != drt && $checked ] +WebPlatformTest/custom-elements/instantiating/createElementNS_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A04_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime != d8 && $runtime != jsshell && !$checked ] +LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime != d8 && $checked ] +LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/empty-inline-before-collapsed-space_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/trivial-segments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/trivial_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/auto-sizing-orthogonal-flows_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context_t01: RuntimeError # Please triage this failure [ $compiler == dart2js && $runtime == drt ] Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t02: Pass # Fails on _all_ other platforms. Please triage @@ -1840,6 +1484,7 @@ LayoutTests/fast/canvas/canvas-arc-negative-radius_t01: RuntimeError # Please tr LayoutTests/fast/canvas/canvas-as-image-incremental-repaint_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/canvas-as-image_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/canvas-css-crazy_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-currentTransform_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/canvas-empty-image-pattern_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/canvas-getImageData-invalid_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/canvas-getImageData-large-crash_t01: RuntimeError # Please triage this failure @@ -1849,112 +1494,207 @@ LayoutTests/fast/canvas/canvas-putImageData_t01: RuntimeError # Please triage th LayoutTests/fast/canvas/crash-set-font_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/draw-custom-focus-ring_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/array-bounds-clamping_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/array-bounds-clamping_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/attrib-location-length-limits_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/attrib-location-length-limits_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/bad-arguments-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/bad-arguments-test_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/buffer-bind-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/buffer-bind-test_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/buffer-data-array-buffer_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/canvas-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/canvas-zero-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-zero-size_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/context-lost-restored_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-lost_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/context-lost_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/css-webkit-canvas-repaint_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/css-webkit-canvas_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/error-reporting_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/error-reporting_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/framebuffer-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/framebuffer-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/functions-returning-strings_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/functions-returning-strings_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/get-active-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/get-active-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-enable-enum-test_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/gl-enum-tests_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-enum-tests_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-get-calls_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-get-calls_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/gl-getshadersource_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-getshadersource_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-getstring_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-getstring_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-object-get-calls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-object-get-calls_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-pixelstorei_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-pixelstorei_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-teximage_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-teximage_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-vertex-attrib_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-vertex-attrib_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/gl-vertexattribpointer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-vertexattribpointer_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/glsl-conformance_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/glsl-conformance_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/index-validation-copies-indices_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-copies-indices_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/index-validation_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/index-validation_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/invalid-UTF-16_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/invalid-UTF-16_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/invalid-passed-params_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/invalid-passed-params_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/is-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/is-object_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/null-object-behaviour_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/null-object-behaviour_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/null-uniform-location_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/null-uniform-location_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/object-deletion-behaviour_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/object-deletion-behaviour_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/point-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/point-size_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/program-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/program-test_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/read-pixels-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/renderbuffer-initialization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/renderbuffer-initialization_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/shader-precision-format_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/shader-precision-format_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgb565_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba4444_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba5551_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgb565_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgb565_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-webgl_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-image-webgl_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/tex-input-validation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-2d_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-sub-image-2d_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/texImage2DImageDataTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texImage2DImageDataTest_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/texImageTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texImageTest_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/texture-active-bind_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/texture-active-bind_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-bindings-uneffected-on-resize_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/texture-bindings-uneffected-on-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-color-profile_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/texture-color-profile_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-complete_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/texture-complete_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-npot_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/texture-npot_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/triangle_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/triangle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/uniform-location-length-limits_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/uniform-location-length-limits_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/uniform-location_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/uninitialized-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-composite-modes_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-composite-modes_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/webgl-exceptions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-exceptions_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-specific_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-specific_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-generated-content/pseudo-element-events_t01: Skip # Times out. LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: Skip # Times out. @@ -1982,23 +1722,31 @@ LayoutTests/fast/css-grid-layout/justify-self-cell_t01: RuntimeError # Please tr LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-intrinsic-dimensions/multicol_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/css/MarqueeLayoutTest_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/aspect-ratio-inheritance_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/aspect-ratio-parsing-tests_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/auto-min-size_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/checked-pseudo-selector_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/counters/complex-before_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/css-escaped-identifier_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/css/css3-nth-tokens-style_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/deprecated-flexbox-auto-min-size_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/font-face-unicode-range-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-shorthand-from-longhands_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/css/getComputedStyle/computed-style-border-image_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/css/html-attr-case-sensitivity_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/id-or-class-before-stylesheet_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/inherit-initial-shorthand-values_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/invalid-predefined-color_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/parsing-css-allowed-string-characters_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-css-nonascii_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/css/parsing-object-position_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/css/parsing-object-position_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: Skip # Times out. LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: Skip # Times out. +LayoutTests/fast/css/selector-text-escape_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/css/sticky/parsing-position-sticky_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/sticky/remove-inline-sticky-crash_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/style-scoped/style-scoped-nested_t01: RuntimeError # Please triage this failure @@ -2006,8 +1754,11 @@ LayoutTests/fast/css/style-scoped/style-scoped-with-dom-operation_t01: RuntimeEr LayoutTests/fast/css/style-scoped/style-scoped-with-important-rule_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/unicode-bidi-computed-value_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/css/url-with-multi-byte-unicode-escape_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/52776_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/DOMException/XPathException_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMException/dispatch-event-exception_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/Document/CaretRangeFromPoint/replace-element_t01: RuntimeError # Please triage this failure @@ -2046,6 +1797,7 @@ LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: RuntimeError # Pl LayoutTests/fast/dom/HTMLScriptElement/isURLAttribute_t01: Skip # Times out. Please triage this failure LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLSelectElement/remove-element-from-within-focus-handler-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLTemplateElement/custom-element-wrapper-gc_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLTemplateElement/innerHTML_t01: RuntimeError # Please triage this failure @@ -2067,8 +1819,10 @@ LayoutTests/fast/dom/SelectorAPI/dumpNodeList_t01: RuntimeError # Please triage LayoutTests/fast/dom/StyleSheet/css-medialist-item_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/StyleSheet/detached-stylesheet-without-wrapper_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/TreeWalker/TreeWalker-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements-complex_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/Window/window-resize-contents_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/Window/window-scroll-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/anchor-without-content_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/anchor-without-content_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/attribute-namespaces-get-set_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/characterdata-api-arguments_t01: RuntimeError # Please triage this failure @@ -2087,20 +1841,26 @@ LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: RuntimeError # Pl LayoutTests/fast/dom/navigatorcontentutils/is-protocol-handler-registered_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/navigatorcontentutils/unregister-protocol-handler_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/object-plugin-hides-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/offset-position-writing-modes_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/partial-layout-overlay-scrollbars_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/set-innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/shadow/event-path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/ancestor-to-absolute_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/dynamic/ancestor-to-absolute_t01: RuntimeError # Please triage this failure LayoutTests/fast/events/add-event-without-document_t01: RuntimeError # Please triage this failure LayoutTests/fast/events/change-overflow-on-overflow-change_t01: Skip # Times out. LayoutTests/fast/events/document-elementFromPoint_t01: RuntimeError # Please triage this failure LayoutTests/fast/events/event-creation_t01: RuntimeError # Please triage this failure LayoutTests/fast/events/event-trace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/fire-scroll-event_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/events/initkeyboardevent-crash_t01: RuntimeError # Please triage this failure LayoutTests/fast/events/invalid-003_t01: RuntimeError # Please triage this failure LayoutTests/fast/events/invalid-004_t01: RuntimeError # Please triage this failure @@ -2117,10 +1877,13 @@ LayoutTests/fast/files/xhr-response-blob_t01: RuntimeError # Please triage this LayoutTests/fast/filesystem/directory-entry-to-uri_t01: RuntimeError # Please triage this failure LayoutTests/fast/filesystem/file-entry-to-uri_t01: RuntimeError # Please triage this failure LayoutTests/fast/filesystem/file-writer-abort-continue_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/ValidityState-tooLong-input_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/forms/ValidityState-tooLong-textarea_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/forms/autofocus-focus-only-once_t01: Skip # Times out. LayoutTests/fast/forms/date/input-valueasdate-date_t01: RuntimeError # Please triage this failure LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal_t01: RuntimeError # Please triage this failure LayoutTests/fast/forms/file/file-input-capture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/formnovalidate-attribute_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/forms/input-appearance-elementFromPoint_t01: RuntimeError # Please triage this failure LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: RuntimeError # Please triage this failure LayoutTests/fast/forms/listbox-selection-2_t01: RuntimeError # Please triage this failure @@ -2128,7 +1891,9 @@ LayoutTests/fast/forms/option-strip-unicode-spaces_t01: RuntimeError # Please tr LayoutTests/fast/forms/parser-associated-form-removal_t01: RuntimeError # Please triage this failure LayoutTests/fast/forms/select-clientheight-large-size_t01: RuntimeError # Please triage this failure LayoutTests/fast/forms/select-clientheight-with-multiple-attr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/select-max-length_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/forms/setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/submit-form-attributes_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/html/details-add-child-2_t01: RuntimeError # Please triage this failure LayoutTests/fast/html/imports/import-element-removed-flag_t01: RuntimeError # Please triage this failure LayoutTests/fast/html/imports/import-events_t01: RuntimeError # Please triage this failure @@ -2137,6 +1902,7 @@ LayoutTests/fast/inline/boundingBox-with-continuation_t01: RuntimeError # Please LayoutTests/fast/inline/continuation-inlines-inserted-in-reverse-after-block_t01: RuntimeError # Please triage this failure LayoutTests/fast/inline/inline-position-top-align_t01: RuntimeError # Please triage this failure LayoutTests/fast/inline/out-of-flow-objects-and-whitespace-after-empty-inline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/innerHTML/innerHTML-uri-resolution_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/loader/about-blank-hash-change_t01: Skip # Times out. LayoutTests/fast/loader/about-blank-hash-kept_t01: Skip # Times out. LayoutTests/fast/loader/hashchange-event-properties_t01: RuntimeError # Please triage this failure @@ -2149,6 +1915,7 @@ LayoutTests/fast/masking/parsing-mask_t01: RuntimeError # Please triage this fai LayoutTests/fast/media/media-query-list-syntax_t01: RuntimeError # Please triage this failure LayoutTests/fast/multicol/break-properties_t01: RuntimeError # Please triage this failure LayoutTests/fast/multicol/cssom-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/flipped-blocks-hit-test_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/multicol/hit-test-above-or-below_t01: RuntimeError # Please triage this failure LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height_t01: RuntimeError # Please triage this failure LayoutTests/fast/multicol/hit-test-float_t01: RuntimeError # Please triage this failure @@ -2204,6 +1971,7 @@ LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: RuntimeErr LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: RuntimeError # Please triage this failure LayoutTests/fast/text-autosizing/vertical-writing-mode_t01: RuntimeError # Please triage this failure LayoutTests/fast/text/find-spaces_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/font-ligature-letter-spacing_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/text/international/cjk-segmentation_t01: RuntimeError # Please triage this failure LayoutTests/fast/text/international/iso-8859-8_t01: RuntimeError # Please triage this failure LayoutTests/fast/text/international/thai-offsetForPosition-inside-character_t01: RuntimeError # Please triage this failure @@ -2232,6 +2000,8 @@ LayoutTests/fast/url/segments-from-data-url_t01: RuntimeError # Please triage th LayoutTests/fast/url/segments_t01: RuntimeError # Please triage this failure LayoutTests/fast/url/standard-url_t01: RuntimeError # Please triage this failure LayoutTests/fast/writing-mode/display-mutation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/flipped-blocks-hit-test-overflow-scroll_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/writing-mode/flipped-blocks-hit-test-overflow_t01: Pass, RuntimeError # Issue 29634 LayoutTests/fast/writing-mode/table-hit-test_t01: RuntimeError # Please triage this failure LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: RuntimeError # Please triage this failure LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: RuntimeError # Please triage this failure @@ -2400,8 +2170,10 @@ WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/HTMLEl WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/cues_t01: Skip # Times out. WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/mode_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: Pass, RuntimeError # Issue 29634 WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formaction_t01: RuntimeError, Pass # Please triage this failure +WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: Pass, RuntimeError # Issue 29634 WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setRangeText_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setSelectionRange_t01: RuntimeError # Please triage this failure @@ -2425,6 +2197,7 @@ WebPlatformTest/html/semantics/forms/the-input-element/time_t01: RuntimeError # WebPlatformTest/html/semantics/forms/the-input-element/time_t02: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/the-input-element/type-change-state_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/the-input-element/url_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/url_t01: Pass, RuntimeError # Issue 29634 WebPlatformTest/html/semantics/forms/the-input-element/valueMode_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/the-input-element/week_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/forms/the-meter-element/meter_t01: RuntimeError # Please triage this failure @@ -2441,6 +2214,7 @@ WebPlatformTest/html/semantics/selectors/pseudo-classes/enabled_t01: RuntimeErro WebPlatformTest/html/semantics/selectors/pseudo-classes/indeterminate_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/selectors/pseudo-classes/inrange-outofrange_t01: RuntimeError # Please triage this failure WebPlatformTest/html/semantics/tabular-data/the-table-element/table-rows_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: Pass, RuntimeError # Issue 29634 WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: RuntimeError # Please triage this failure WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t02: RuntimeError # Please triage this failure WebPlatformTest/html/syntax/serializing-html-fragments/outerHTML_t01: RuntimeError # Please triage this failure @@ -2467,6 +2241,15 @@ WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: RuntimeError # Pl WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: RuntimeError # Please triage this failure WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: RuntimeError # Please triage this failure WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: Pass, RuntimeError # Issue 29634 +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: Pass, RuntimeError # Issue 29634 WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: RuntimeError # Please triage this failure WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: RuntimeError # Please triage this failure WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: RuntimeError # Please triage this failure @@ -2493,157 +2276,8 @@ WebPlatformTest/webstorage/event_session_newvalue_t01: Skip # Times out. Please WebPlatformTest/webstorage/event_session_oldvalue_t01: Skip # Times out. Please triage this failure WebPlatformTest/webstorage/event_session_storagearea_t01: Skip # Times out. Please triage this failure WebPlatformTest/webstorage/event_session_url_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/canvas/canvas-currentTransform_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/array-bounds-clamping_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/attrib-location-length-limits_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/bad-arguments-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/buffer-bind-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/canvas-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/canvas-zero-size_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/context-lost_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/error-reporting_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/framebuffer-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/functions-returning-strings_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/get-active-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-enable-enum-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-enum-tests_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-get-calls_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-getshadersource_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-getstring_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-object-get-calls_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-pixelstorei_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-teximage_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-vertex-attrib_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/gl-vertexattribpointer_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/glsl-conformance_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/index-validation-copies-indices_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/index-validation_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/invalid-UTF-16_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/invalid-passed-params_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/is-object_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/null-object-behaviour_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/null-uniform-location_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/object-deletion-behaviour_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/point-size_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/program-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/read-pixels-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/renderbuffer-initialization_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/shader-precision-format_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgb565_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba4444_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba5551_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgb565_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-image-webgl_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-sub-image-2d_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texImage2DImageDataTest_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texImageTest_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texture-active-bind_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texture-bindings-uneffected-on-resize_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texture-color-profile_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texture-complete_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/texture-npot_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/triangle_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/uniform-location-length-limits_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-composite-modes_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-exceptions_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-specific_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css-intrinsic-dimensions/multicol_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/css-escaped-identifier_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/font-shorthand-from-longhands_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/getComputedStyle/computed-style-border-image_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/parsing-css-nonascii_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/parsing-object-position_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/selector-text-escape_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/unicode-bidi-computed-value_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/url-with-multi-byte-unicode-escape_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/DOMException/dispatch-event-exception_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/Window/getMatchedCSSRules-with-pseudo-elements-complex_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/anchor-without-content_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/offset-position-writing-modes_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/dynamic/ancestor-to-absolute_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/events/fire-scroll-event_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/forms/ValidityState-tooLong-input_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/forms/ValidityState-tooLong-textarea_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/forms/formnovalidate-attribute_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/forms/select-max-length_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/forms/submit-form-attributes_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/innerHTML/innerHTML-uri-resolution_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/multicol/flipped-blocks-hit-test_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/text/font-ligature-letter-spacing_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/writing-mode/flipped-blocks-hit-test-overflow-scroll_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/writing-mode/flipped-blocks-hit-test-overflow_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/html/semantics/forms/the-input-element/url_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: Pass, RuntimeError # Issue 29634 -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: Pass, RuntimeError # Issue 29634 -[ $compiler == dart2js && $runtime == drt && $minified && $csp ] -LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/script-reexecution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/inertContents_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/create-contextual-fragment-script-unmark-already-started_t01: RuntimeError # Please triage this failure - -[ $compiler == dart2js && $runtime == drt && ! $minified && ! $csp] -LayoutTests/fast/dom/HTMLScriptElement/remove-source_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: RuntimeError # Please triage this failure - -[ $compiler == dart2js && $runtime == drt && $fast_startup && $checked ] +[ $compiler == dart2js && $runtime == drt && $checked && $fast_startup ] LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: RuntimeError # Please triage this failure @@ -2722,9 +2356,37 @@ WebPlatformTest/dom/nodes/DOMImplementation-createDocumentType_t01: RuntimeError WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context_t01: RuntimeError # Please triage this failure WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: RuntimeError # Please triage this failure -[ $compiler == dart2js && $runtime == drt && ! $checked ] +[ $compiler == dart2js && $runtime == drt && !$checked ] LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime == drt && $csp && $minified ] +LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/script-reexecution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/inertContents_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/create-contextual-fragment-script-unmark-already-started_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime == drt && !$csp && !$minified ] +LayoutTests/fast/dom/HTMLScriptElement/remove-source_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime != drt && $browser && $fast_startup ] +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: Fail # please triage +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-004_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-005_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t01: Fail # please triage + [ $compiler == dart2js && $runtime == ff ] Language/Expressions/Postfix_Expressions/property_decrement_t02: Skip # Times out. Please triage this failure Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t01: Pass, RuntimeError # Issue 26615 @@ -3610,7 +3272,7 @@ LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded- LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-right_t01: RuntimeError # Please triage this failure LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t01: RuntimeError # Please triage this failure LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: Skip # Times out. Please triage this failure LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: Skip # Times out. Please triage this failure LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: Skip # Times out. Please triage this failure LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: Skip # Times out. Please triage this failure @@ -3716,7 +3378,7 @@ LayoutTests/fast/xpath/reverse-axes_t01: RuntimeError # Please triage this failu LayoutTests/fast/xsl/default-html_t01: RuntimeError # Please triage this failure LibTest/async/Stream/Stream.periodic_A01_t01: Pass, RuntimeError # Please triage this failure LibTest/async/Timer/Timer.periodic_A01_t01: Pass, RuntimeError # Please triage this failure -LibTest/core/RegExp/Pattern_semantics/firstMatch_Atom_A03_t03: Pass,RuntimeError # Please triage this failure +LibTest/core/RegExp/Pattern_semantics/firstMatch_Atom_A03_t03: Pass, RuntimeError # Please triage this failure LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError # Issue 22200 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 @@ -3883,7 +3545,7 @@ WebPlatformTest/html-templates/innerhtml-on-templates/innerhtml_t01: RuntimeErro WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/parsing-html-templates/creating-an-element-for-the-token/template-owner-document_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/template-element/node-document-changes_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/template-as-a-descendant_t01 : RuntimeError # In Firefox, setting innerHTML on a Frameset element does nothing. +WebPlatformTest/html-templates/template-element/template-as-a-descendant_t01: RuntimeError # In Firefox, setting innerHTML on a Frameset element does nothing. WebPlatformTest/html-templates/template-element/template-content_t01: RuntimeError # Please triage this failure WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: RuntimeError # Please triage this failure WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-video_t01: RuntimeError # Please triage this failure @@ -3895,7 +3557,7 @@ WebPlatformTest/html/dom/documents/dom-tree-accessors/document.getElementsByName WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t01: RuntimeError # Please triage this failure WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t07: RuntimeError # Please triage this failure WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t05: Pass,RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t05: Pass, RuntimeError # Please triage this failure WebPlatformTest/html/dom/elements/global-attributes/dataset-delete_t01: RuntimeError # Please triage this failure WebPlatformTest/html/dom/elements/global-attributes/dataset-get_t01: RuntimeError # Please triage this failure WebPlatformTest/html/dom/elements/global-attributes/dataset-set_t01: RuntimeError # Please triage this failure @@ -4056,24 +3718,48 @@ WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t0 WebPlatformTest/webstorage/event_constructor_t01: RuntimeError # Please triage this failure WebPlatformTest/webstorage/event_constructor_t02: RuntimeError # Please triage this failure -[ $compiler == dart2js && $runtime == ff && ! $checked] -LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime == ff && $system == linux ] +LayoutTests/fast/canvas/webgl/*: Skip # Issue 26725 +LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: Skip # Times out always +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-input-validation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-complete_t01: Skip # Times out sometimes +LayoutTests/fast/canvas/webgl/texture-npot_t01: Skip # Times out sometimes +LayoutTests/fast/forms/submit-form-attributes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/whitespace/nowrap-line-break-after-white-space_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: RuntimeError # Dartium JSInterop failure -[ $compiler == dart2js && $runtime == ff && $checked] -LayoutTests/fast/css-intrinsic-dimensions/width-shrinks-avoid-floats_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime == ff && $system == windows ] +Language/Classes/Abstract_Instance_Members/override_no_named_parameters_t06: Pass, Slow # Issue 25940 +Language/Classes/Constructors/Factories/return_type_t03: Pass, Slow # Issue 25940 +Language/Classes/Constructors/Factories/return_type_t05: Pass, Slow # Issue 25940 +Language/Classes/Constructors/Factories/return_wrong_type_t02: Pass, Slow # Issue 25940 +LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/device-aspect-ratio_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/media-rule-screenDepthPerComponent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/submit-form-attributes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/color-does-not-include-alpha_t01: RuntimeError # Issue 31161 +LayoutTests/fast/media/media-query-list_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $runtime == ff && $checked ] LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: RuntimeError # Please triage this failure LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-column-flex-items_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-flex-items_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: RuntimeError # Please triage this failure LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-column-flex-items_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-flex-items_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-intrinsic-dimensions/width-shrinks-avoid-floats_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/box-sizing-border-box-dynamic-padding-border-update_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/display-inline-block-scrollbar_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/fixed-width-intrinsic-width-excludes-scrollbars_t01: RuntimeError # Please triage this failure -LayoutTests/fast/flexbox/flexing-overflow-scroll-item_t01: RuntimeError # Please triage this failure LayoutTests/fast/dom/HTMLTableElement/insert-row_t01: RuntimeError # Please triage this failure +LayoutTests/fast/flexbox/flexing-overflow-scroll-item_t01: RuntimeError # Please triage this failure LayoutTests/fast/flexbox/intrinsic-min-width-applies-with-fixed-width_t01: RuntimeError # Please triage this failure LayoutTests/fast/lists/marker-preferred-margins_t01: RuntimeError # Please triage this failure LayoutTests/fast/multicol/fixed-column-percent-logical-height-orthogonal-writing-mode_t01: RuntimeError # Please triage this failure @@ -4090,2500 +3776,8 @@ WebPlatformTest/DOMEvents/approved/Propagation.path.target.removed_t01: RuntimeE WebPlatformTest/dom/nodes/DOMImplementation-createDocumentType_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context_t01: RuntimeError # Please triage this failure -[ $compiler == dart2js && $runtime == ff && $system == windows ] -Language/Classes/Abstract_Instance_Members/override_no_named_parameters_t06: Pass, Slow # Issue 25940 -Language/Classes/Constructors/Factories/return_type_t03: Pass, Slow # Issue 25940 -Language/Classes/Constructors/Factories/return_type_t05: Pass, Slow # Issue 25940 -Language/Classes/Constructors/Factories/return_wrong_type_t02: Pass, Slow # Issue 25940 -LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/device-aspect-ratio_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/media-rule-screenDepthPerComponent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/submit-form-attributes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/color-does-not-include-alpha_t01: RuntimeError # Issue 31161 -LayoutTests/fast/media/media-query-list_t01: RuntimeError # Please triage this failure - -[ $compiler == dart2js && $runtime == ff && $system == linux] -LayoutTests/fast/canvas/webgl/*: Skip # Issue 26725 -LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: Skip # Times out always -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-input-validation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-complete_t01: Skip # Times out sometimes -LayoutTests/fast/canvas/webgl/texture-npot_t01: Skip # Times out sometimes -LayoutTests/fast/forms/submit-form-attributes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/whitespace/nowrap-line-break-after-white-space_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: RuntimeError # Dartium JSInterop failure - -[ $compiler == dart2js && $runtime == safari ] -LayoutTests/fast/alignment/parse-align-items_t01: RuntimeError # Please triage this failure -LayoutTests/fast/alignment/parse-align-self_t01: RuntimeError # Please triage this failure -LayoutTests/fast/alignment/parse-justify-self_t01: RuntimeError # Please triage this failure -LayoutTests/fast/animation/request-animation-frame-cancel2_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/animation/request-animation-frame-cancel_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/animation/request-animation-frame-timestamps-advance_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/animation/request-animation-frame-timestamps_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/animation/request-animation-frame-within-callback_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/backgrounds/background-repeat-computed-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/backgrounds/repeat/parsing-background-repeat_t01: RuntimeError # Please triage this failure -LayoutTests/fast/borders/border-image-width-numbers-computed-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.fillText.gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.negative_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.veryLarge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.verySmall_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/alpha_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-arc-negative-radius_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-as-image-incremental-repaint_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/canvas/canvas-blend-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blend-solid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-clipping_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-fill-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-global-alpha_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-transforms_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-currentTransform_t01: RuntimeError # Feature is not implemented -LayoutTests/fast/canvas/canvas-drawImage-scaled-copy-to-self_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-ellipse-zero-lineto_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-empty-image-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-fillStyle-no-quirks-parsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-font-consistency_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-getImageData-invalid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-getImageData-large-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-getImageData-largeNonintegralDimensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-large-dimensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-large-fills_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-lineDash-input-sequence_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-lose-restore-googol-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-lose-restore-max-int-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-putImageData_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-quadratic-same-endpoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-resetTransform_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-scale-shadowBlur_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-scale-strokePath-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-setTransform_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/draw-custom-focus-ring_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/drawImage-with-broken-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/drawImage-with-valid-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/getPutImageDataPairTest_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/setWidthResetAfterForcedRender_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/context-lost_t01: Skip -LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Skip # Issue 28640 -LayoutTests/fast/canvas/webgl/glsl-conformance_t01: Skip # Times out 1 out of 20. -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: Skip # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: Skip # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: Skip -LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/uniform-location_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Skip # Issue 29010 -LayoutTests/fast/css-generated-content/malformed-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-animation-before-onload_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-animation_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-element-events_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-transition_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/display-grid-set-get_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/flex-and-minmax-content-resolution-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/flex-content-resolution-columns_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/flex-content-resolution-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-auto-flow-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-container-change-explicit-grid-recompute-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-border-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-empty-row-column_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-min-max-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-padding-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-padding-margin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-area-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-change-order-auto-flow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-display_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-horiz-bt_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-lr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-rl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-resolution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-order-auto-flow-resolution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-template-areas-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/justify-self-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-only_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-grid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-resolution-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/MarqueeLayoutTest_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/aspect-ratio-inheritance_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/aspect-ratio-parsing-tests_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/background-serialize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/border-image-style-length_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/checked-pseudo-selector_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/computed-offset-with-zoom_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/content/content-none_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/content/content-normal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/content/content-quotes-01_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -LayoutTests/fast/css/content/content-quotes-05_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -LayoutTests/fast/css/counters/counter-cssText_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/css-escaped-identifier_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/css3-nth-tokens-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/cssText-shorthand_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/csstext-of-content-string_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/deprecated-flexbox-auto-min-size_t01: Pass,RuntimeError # Please triage this failure -LayoutTests/fast/css/draggable-region-parser_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/dynamic-class-backdrop-pseudo_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/first-child-display-change-inverse_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/focus-display-block-inline_t01: Pass, RuntimeError # Fails 5 out of 10. -LayoutTests/fast/css/focus-display-block-inline_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-cache-bug_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-unicode-range-load_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-unicode-range-monospace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-unicode-range-overlap-load_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-property-priority_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/css/font-shorthand-from-longhands_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/fontface-properties_t01: RuntimeError # Uses FontFace class, not defined for this browser. -LayoutTests/fast/css/fontfaceset-download-error_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/fontfaceset-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/fontfaceset-loadingdone_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/computed-style-border-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/computed-style-font_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/counterIncrement-without-counter_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getPropertyValue-clip_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getPropertyValue-columns_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/html-attr-case-sensitivity_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/id-or-class-before-stylesheet_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/important-js-override_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/inherit-initial-shorthand-values_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/inherited-properties-rare-text_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/css/invalid-not-with-simple-selector-sequence_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/css/invalid-predefined-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/detach-reattach-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/shadow-host-toggle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/targeted-class-host-pseudo_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/toggle-style-inside-shadow-root_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-1_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-3_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-4_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-5_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/media-query-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/media-rule-no-whitespace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parse-color-int-or-percent-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-at-rule-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-css-nonascii_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-css-nth-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-font-variant-ligatures_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/css/parsing-object-position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-page-rule_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-selector-error-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-unexpected-eof_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/pseudo-any_t01: Pass, RuntimeError # Fails 4 out of 10. -LayoutTests/fast/css/pseudo-any_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-001_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-002_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-003_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-004_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-005_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/selector-text-escape_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/css/shorthand-setProperty-important_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/sticky/parsing-position-sticky_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/string-quote-binary_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-nested_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-scoping-nodes-different-order_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-shadow-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-with-dom-operation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-with-important-rule_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/transform-origin-parsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/unicode-bidi-computed-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/webkit-keyframes-errors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-underline-position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent-inherited_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/52776_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/DOMException/XPathException_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/DOMException/dispatch-event-exception_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-strict-mode-wtih-checkbox_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-user-select-none_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-with-first-letter-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/createElementNS-namespace-err_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/getClientRects_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/offsetTop-table-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/setAttributeNS-namespace-err_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-autofocus_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-close-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-enabled_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-open_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-return-value_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-scrolled-viewport_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-show-modal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/inert-does-not-match-disabled-selector_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unfocusable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unselectable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/multiple-centered-dialogs_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/non-anchored-dialog-positioning_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/show-modal-focusing-steps_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-relative_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-static_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDocument/active-element-gets-unforcusable_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLDocument/set-focus-on-valid-element_t01: Skip -LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLElement/set-inner-outer-optimization_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLElement/spellcheck_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLFormElement/move-option-between-documents_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLImageElement/image-alt-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLImageElement/parse-src_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLInputElement/input-image-alt-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/prefetch-onerror_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/prefetch-onload_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/prefetch_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/resolve-url-on-insertion_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/async-inline-script_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/script-set-src_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/custom-element-wrapper-gc_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/cycles-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/innerHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/ownerDocumentXHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-childList_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-options-attributes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-options-character-data_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/weak-callback-gc-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Node/initial-values_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/NodeIterator/NodeIterator-basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/bug-19527_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/mutation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-comparePoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-constructor_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-created-during-remove-children_t01: RuntimeError -LayoutTests/fast/dom/Range/range-detached-exceptions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-exceptions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-expand_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-insertNode-splittext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-isPointInRange_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-on-detached-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/remove-twice-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/surroundContents-for-detached-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/dumpNodeList-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/dumpNodeList_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/css-insert-import-rule-to-shadow-stylesheets_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/css-medialist-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/detached-shadow-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/empty-shadow-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/TreeWalker/TreeWalker-basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/atob-btoa_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/getMatchedCSSRules-parent-stylesheets_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/window-resize-contents_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/window-resize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/window-scroll-arguments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-double-xmlns_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/anchor-without-content_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/attribute-namespaces-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/background-shorthand-csstext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/characterdata-api-arguments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/client-width-height-quirks_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/css-selectorText_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/dom/custom/attribute-changed-callback_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/constructor-calls-created-synchronously_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/created-callback_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-namespace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-on-create-callback_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-svg-extends_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-type-extensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/element-names_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/element-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/element-upgrade_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/type-extensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/unresolved-pseudoclass_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/upgrade-candidate-remove-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/dataset-xhtml_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/dataset_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/document-set-title-mutations_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/document-set-title-no-reuse_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/domparser-parsefromstring-mimetype-support_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/fragment-activation-focuses-target_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/getElementsByClassName/dumpNodeList_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/horizontal-scrollbar-in-rtl-doesnt-fire-onscroll_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/horizontal-scrollbar-in-rtl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/html-collections-named-getter-mandatory-arg_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/implementation-api-args_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/importNode-unsupported-node-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/location-hash_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/mutation-event-remove-inserted-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/navigatorcontentutils/is-protocol-handler-registered_t01: Skip # API not supported. -LayoutTests/fast/dom/navigatorcontentutils/register-protocol-handler_t01: Skip # API not supported. -LayoutTests/fast/dom/navigatorcontentutils/unregister-protocol-handler_t01: Skip # API not supported. -LayoutTests/fast/dom/object-plugin-hides-properties_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/dom/option-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/partial-layout-non-overlay-scrollbars_t01: Pass, RuntimeError # Issue 53 -LayoutTests/fast/dom/partial-layout-overlay-scrollbars_t01: Pass, RuntimeError # Fails 8 out of 10. -LayoutTests/fast/dom/set-innerHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/access-document-of-detached-stylesheetlist-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/base-in-shadow-tree_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-includer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-outside-shadow-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-dynamic-attribute-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-overridden_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-reprojection-fallback-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/distribution-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/distribution-for-event-path_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/distribution-update-recalcs-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/elementfrompoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/elements-in-frameless-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/event-path_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/form-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/get-distributed-nodes-orphan_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-mutation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/getelementbyid-in-orphan_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/getelementbyid-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/host-wrapper-reclaimed_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/insertion-point-list-menu-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/insertion-point-shadow-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/insertion-point-video-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/link-in-shadow-tree_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/no-renderers-for-light-children_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/offsetWidth-host-style-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/olderShadowRoot_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/reinsert-insertion-point_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/remove-and-insert-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-aware-shadow-root_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-content-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-disable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-element-inactive_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-element_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-hierarchy-exception_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-removechild-and-blur-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-append_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-js-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-node-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-text-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-ul-li_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-dynamic-styling_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-for-input-spellcheck_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-for-input-type-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-for-unknown-with-form_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowhost-keyframes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowroot-clonenode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowroot-host_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowroot-keyframes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/sibling-rules-dynamic-changes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-insertion-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-of-distributed-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-sharing-sibling-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-sharing-styles-in-older-shadow-roots_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/suppress-mutation-events-in-shadow-characterdata_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/title-element-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-counter_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-quote_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/insertAdjacentElement_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/insertAdjacentHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/recursive-layout_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/add-event-without-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/clipboard-clearData_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/clipboard-dataTransferItemList_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/dispatch-event-being-dispatched_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/document-elementFromPoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-creation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-on-created-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-on-xhr-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-trace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/initkeyboardevent-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/invalid-003_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/invalid-004_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/mutation-during-replace-child-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/mutation-during-replace-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/overflowchanged-event-raf-timing_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/scoped/editing-commands_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/scroll-event-does-not-bubble_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/tabindex-removal-from-focused-element_t01: RuntimeError # Please triage this failure -LayoutTests/fast/exclusions/parsing/parsing-wrap-flow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/exclusions/parsing/parsing-wrap-through_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-close-read_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-close-revoke_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-close_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-constructor_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-parts-slice-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-slice-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-abort-in-last-progress_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-done-reading-abort_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-methods-illegal-arguments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-readystate_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/url-null_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/xhr-response-blob_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/async-operations_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/directory-entry-to-uri_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-entry-to-uri_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-from-file-entry_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-metadata-after-write_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-abort-continue_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-abort-depth_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-abort_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-empty-blob_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-gc-blob_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-truncate-extend_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-write-overlapped_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/filesystem-reference_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/filesystem-unserializable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/filesystem-uri-origin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/input-access-entries_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-copy_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-get-entry_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-get-metadata_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-get-parent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-move_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-read-directory_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-remove_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-restricted-chars_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-restricted-names_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-restricted-unicode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/read-directory-many_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/read-directory_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-readonly-file-object_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-readonly_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-required-arguments-getdirectory_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-required-arguments-getfile_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-temporary_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/snapshot-file-with-gc_t01: RuntimeError # Please triage this failure -LayoutTests/fast/flexbox/repaint-scrollbar_t01: Pass, RuntimeError # Fails 2 out of 10. -LayoutTests/fast/flexbox/repaint-scrollbar_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/ValidityState-customError_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/ValidityState-typeMismatch-email_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/autocomplete_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/autofocus-input-css-style-change_t01: Pass, RuntimeError # Fails 7 out of 10. -LayoutTests/fast/forms/autofocus-input-css-style-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/button-baseline-and-collapsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/button/button-disabled-blur_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/clone-input-with-dirty-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/color/color-setrangetext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/color/input-value-sanitization-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datalist/datalist-child-validation_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/forms/datalist/datalist_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datalist/input-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: Pass, RuntimeError # Fails 6 out of 10. -LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/ValidityState-stepMismatch-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/ValidityState-typeMismatch-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/date-input-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/date-pseudo-classes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/date-setrangetext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/input-date-validation-message_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/input-valueasdate-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/input-valueasnumber-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/datetimelocal-pseudo-classes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/datetimelocal-setrangetext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/forms/file/file-input-capture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/form-attribute_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-appearance-elementFromPoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-inputmode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-type-change3_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-value-sanitization_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/interactive-validation-assertion-by-validate-twice_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/forms/interactive-validation-attach-assertion_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/forms/interactive-validation-select-crash_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/forms/select-max-length_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/forms/menulist-disabled-selected-option_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -LayoutTests/fast/forms/menulist-selection-reset_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/menulist-submit-without-selection_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -LayoutTests/fast/forms/multiple-selected-options-innerHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/option-change-single-selected_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/option-strip-unicode-spaces_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/parser-associated-form-removal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/plaintext-mode-1_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/search-popup-crasher_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -LayoutTests/fast/forms/select-set-length-with-mutation-remove_t01: RuntimeError -LayoutTests/fast/forms/select-set-length-with-mutation-reparent_t01: RuntimeError -LayoutTests/fast/forms/selection-wrongtype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/setrangetext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-maxlength_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-paste-newline_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-selection-preservation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/html/hidden-attr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/html/imports/import-element-removed-flag_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/html/imports/import-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/html/select-dropdown-consistent-background-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/boundingBox-with-continuation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/continuation-inlines-inserted-in-reverse-after-block_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/inline-position-top-align_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/inline-with-empty-inline-children_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/out-of-flow-objects-and-whitespace-after-empty-inline_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/parent-inline-element-padding-contributes-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/positioned-element-padding-contributes-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/innerHTML/innerHTML-uri-resolution_t01: Pass, RuntimeError # Issue 29634 -LayoutTests/fast/innerHTML/innerHTML-svg-write_t01: RuntimeError # Issue 25941 -LayoutTests/fast/innerHTML/javascript-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/about-blank-hash-change_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/loader/about-blank-hash-kept_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/loader/hashchange-event-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/onhashchange-attribute-listeners_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/loader/scroll-position-restored-on-back_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/loader/scroll-position-restored-on-reload-at-load-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: RuntimeError # Please triage this failure -LayoutTests/fast/masking/parsing-clip-path-shape_t01: RuntimeError # Please triage this failure -LayoutTests/fast/masking/parsing-mask_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/matchmedium-query-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/media-query-list-syntax_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/media-query-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-append-delete_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-js-media-except_t02: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-js-media-except_t03: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-parsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/mediastream/RTCIceCandidate_t01: Skip # Please triage this failure -LayoutTests/fast/mediastream/RTCPeerConnection_t01: Skip # Issue 23475 -LayoutTests/fast/mediastream/constructors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-short-trailing-empty-block_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-trailing-border_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-trailing-border_t02: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-unbreakable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/break-after-always-bottom-margin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/break-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/columns-shorthand-parsing_t02: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/cssom-view_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/float-truncation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-above-or-below_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-end-of-column_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-float_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance-images_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/orphans-relayout_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/vertical-lr/float-truncation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/vertical-rl/float-truncation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: RuntimeError # Please triage this failure -LayoutTests/fast/overflow/scrollbar-restored_t01: RuntimeError # Fails 10 out of 10. -LayoutTests/fast/parser/foster-parent-adopted_t02: RuntimeError # Please triage this failure -LayoutTests/fast/parser/fragment-parser-doctype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/parser/innerhtml-with-prefixed-elements_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/available-height-for-content_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/container-width-zero_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/preferred-widths_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/replaced/table-percent-height-text-controls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/table-percent-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/table-percent-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/ruby/ruby-line-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/scrolling/scroll-element-into-view_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-lengths_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-margin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-outside_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t02: Pass, RuntimeError # Fails on 6.2. Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-right_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-utterance-uses-voice_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-voices_t01: RuntimeError # Please triage this failure -LayoutTests/fast/storage/disallowed-storage_t01: RuntimeError # Please triage this failure -LayoutTests/fast/storage/storage-disallowed-in-data-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/cssom-subpixel-precision_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/shadows-computed-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/tabindex-focus_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-angle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-integer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-length_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-number_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/absolute-table-percent-lengths_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/anonymous-table-section-removed_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/caption-orthogonal-writing-mode-sizing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/col-width-span-expand_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/css-table-max-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/css-table-max-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/fixed-table-layout-width-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/hittest-tablecell-bottom-edge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/hittest-tablecell-right-edge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/html-table-width-max-width-constrained_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/large-shrink-wrapped-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/margins-perpendicular-containing-block_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-css-block-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-css-inline-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-html-block-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-html-inline-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/nested-tables-with-div-offset_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/padding-height-and-override-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/switch-table-layout-dynamic-cells_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/switch-table-layout-multiple-section_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/switch-table-layout_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-cell-offset-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-rowspan-cell-with-empty-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text-autosizing/vertical-writing-mode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-case-folding_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-russian_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-soft-hyphen_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-spaces_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/font-ligature-letter-spacing_t01: Pass, RuntimeError # Fails on 6.2. Please triage this failure -LayoutTests/fast/text/font-ligatures-linebreak-word_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/text/font-ligatures-linebreak_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/text/glyph-reordering_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -LayoutTests/fast/text/international/cjk-segmentation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/iso-8859-8_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/listbox-width-rtl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/rtl-text-wrapping_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/thai-offsetForPosition-inside-character_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/offsetForPosition-cluster-at-zero_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/remove-zero-length-run_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-ltr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-pixel_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-rtl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-vertical_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-webfont_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure -LayoutTests/fast/transforms/bounding-rect-zoom_t01: RuntimeError # Please triage this failure -LayoutTests/fast/transforms/hit-test-large-scale_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/anchor_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/file-http-base_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/file_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/host-lowercase-per-scheme_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/host_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/idna2003_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/idna2008_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/invalid-urls-utf8_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/ipv4_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/ipv6_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/path_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/port_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/query_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/relative-unix_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/relative-win_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/relative_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/safari-extension_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/segments-from-data-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/segments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/standard-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/positionForPoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/table-hit-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/vertical-font-vmtx-units-per-em_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-before-open-sync-request_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-sync-request_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Borrowed/namespace-nodes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_node_test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_node_test_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/xpath/ambiguous-operators_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/attr-namespace_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/ensure-null-namespace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/implicit-node-args_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime == ff && !$checked ] LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/node-name-case-sensitivity_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/node-name-case-sensitivity_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/xpath/py-dom-xpath/axes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/data_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/expressions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/paths_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/reverse-axes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xsl/default-html_t01: RuntimeError # Please triage this failure -LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: RuntimeError # Please triage this failure -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 -LibTest/core/double/roundToDouble_A01_t01: RuntimeError # Please triage this failure -LibTest/core/double/round_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/compareTo_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/operator_left_shift_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/operator_remainder_A01_t03: RuntimeError # Please triage this failure -LibTest/core/int/operator_truncating_division_A01_t02: RuntimeError # Please triage this failure -LibTest/core/int/remainder_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/remainder_A01_t03: RuntimeError # Please triage this failure -LibTest/core/int/toRadixString_A01_t01: RuntimeError # Please triage this failure -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t03: RuntimeError # Please triage this failure -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t06: RuntimeError # Please triage this failure -LibTest/html/Document/childNodes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Document/clone_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Document/clone_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Document/getElementsByTagName_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Document/securityPolicy_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/Element.tag_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/attributeChanged_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/borderEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/contentEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/dataset_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Element/enteredView_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/getAttributeNS_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/getAttributeNS_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Element/getBoundingClientRect_A01_t02: Pass, RuntimeError # Issue 53 -LibTest/html/Element/getClientRects_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/isContentEditable_A01_t01: Pass, RuntimeError # Issue 28187 -LibTest/html/Element/isContentEditable_A02_t01: Pass, RuntimeError # Issue 28187 -LibTest/html/Element/isTagSupported_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/isTagSupported_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/leftView_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/marginEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/mouseWheelEvent_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/Element/onMouseWheel_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/Element/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/paddingEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/querySelectorAll_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/replaceWith_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/tagName_A01_t03: RuntimeError # Please triage this failure -LibTest/html/Element/transitionEndEvent_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/getAllResponseHeaders_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/getResponseHeader_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/getString_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/onError_A01_t02: Skip # Times out. Please triage this failure -LibTest/html/HttpRequest/request_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/responseText_A01_t02: Skip # Times out. Please triage this failure -LibTest/html/HttpRequest/responseType_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/setRequestHeader_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/statusText_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/status_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequestUpload/onError_A01_t02: Skip # Times out. Please triage this failure -LibTest/html/HttpRequestUpload/onLoadEnd_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/HttpRequestUpload/onLoadStart_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/HttpRequestUpload/onLoad_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/IFrameElement/IFrameElement.created_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/attributeChanged_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/attributes_setter_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/blur_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/IFrameElement/borderEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/clone_A01_t02: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/contentWindow_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createFragment_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createFragment_A01_t02: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createFragment_A01_t03: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createShadowRoot_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/getClientRects_A01_t02: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/innerHtml_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/isContentEditable_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/isContentEditable_A01_t01: RuntimeError, Pass # Fails 19 out of 20. -LibTest/html/IFrameElement/leftView_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/marginEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/offsetTo_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/onMouseWheel_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/IFrameElement/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/outerHtml_setter_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/paddingEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/querySelector_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/setInnerHtml_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/tagName_A01_t03: RuntimeError # Please triage this failure -LibTest/html/Node/append_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Node/nodes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Node/nodes_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Node/parent_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Node/previousNode_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/animationFrame_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/Window/close_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/document_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/find_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/find_A03_t01: RuntimeError # Please triage this failure -LibTest/html/Window/find_A06_t01: RuntimeError # Please triage this failure -LibTest/html/Window/moveBy_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/moveTo_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/moveTo_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Window/postMessage_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/postMessage_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Window/requestFileSystem_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/requestFileSystem_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Window/requestFileSystem_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Window/resizeBy_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/Window/resizeTo_A01_t01: RuntimeError # Please triage this failure -LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Please triage this failure -LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/DOMEvents/approved/EventObject.after.dispatchEvenr_t01: RuntimeError # Please triage this failure -WebPlatformTest/DOMEvents/approved/EventObject.multiple.dispatchEvent_t01: RuntimeError # Please triage this failure -WebPlatformTest/DOMEvents/approved/ProcessingInstruction.DOMCharacterDataModified_t01: Skip # Times out. Please triage this failure -WebPlatformTest/DOMEvents/approved/addEventListener.optional.useCapture_t01: RuntimeError # Please triage this failure -WebPlatformTest/Utils/test/asyncTestFail_t01: RuntimeError # Please triage this failure -WebPlatformTest/Utils/test/asyncTestFail_t02: RuntimeError # Please triage this failure -WebPlatformTest/Utils/test/asyncTestTimeout_t01: Skip # Times out. Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A06_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A07_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A08_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t02: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/localName_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/namespace_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/EventTarget/dispatchEvent_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/EventTarget/dispatchEvent_A03_t01: Skip # Times out. Please triage this failure -WebPlatformTest/dom/events/type_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/DOMImplementation-createDocument_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/DOMImplementation-hasFeature_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-adoptNode_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-getElementsByTagName_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-importNode_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Element-childElementCount_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-appendChild_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-appendChild_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-insertBefore_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-isEqualNode_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-replaceChild_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/attributes_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/attributes_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A06_t03: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t03: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A08_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttribute_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-attributes_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-comparePoint_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-comparePoint_t03: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-detach_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-imports/link-import_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-imports/link-import_t02: RuntimeError # Please triage this failure -WebPlatformTest/html-imports/loading-import_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/definitions/template-contents-owner-test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/innerhtml-on-templates/innerhtml_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/creating-an-element-for-the-token/template-owner-document_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/node-document-changes_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-video_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/browsers/browsing-the-web/read-text/load-text-plain_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-getter_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-setter_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.getElementsByName-namespace_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t05: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t07: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/elements/global-attributes/dataset-delete_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/elements/global-attributes/dataset-get_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/elements/global-attributes/dataset-set_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/document-metadata/styling/LinkStyle_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/error-codes/error_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/cues_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/mode_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formaction_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setRangeText_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-button-element/button-validation_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-datalist-element/datalistelement_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-datalist-element/datalistoptions_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-form-element/form-autocomplete_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-form-element/form-elements-matches_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-form-element/form-elements-nameditem_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/color_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/date_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/datetime-local_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/datetime_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/datetime_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/email_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/hidden_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/input-textselection_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/month_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/password_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/range_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/text_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/time_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/time_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/type-change-state_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/url_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/valueMode_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/week_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-meter-element/meter_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-option-element/option-text-recurse_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-option-element/option-text-spaces_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/grouping-content/the-blockquote-element/grouping-blockquote_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/grouping-content/the-ol-element/ol.start-reflection_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/interactive-elements/the-details-element/toggleEvent_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-close_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-showModal_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/scripting-1/the-script-element/async_t11: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/scripting-1/the-script-element/script-text_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/checked_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/default_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/dir_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/enabled_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/focus_t01: Pass,RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/indeterminate_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/inrange-outofrange_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/tabular-data/the-table-element/table-insertRow_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/tabular-data/the-table-element/table-rows_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/syntax/serializing-html-fragments/outerHTML_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t01: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t02: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t03: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t04: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t05: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t06: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol_t00: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-008_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-009_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-010_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-012_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-013_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-010_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t03: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t04: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/inert-html-elements/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/composition/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/custom-pseudo-elements/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/nested-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/rendering-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/reprojection/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-006_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-017_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/shadow-root-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_constructor_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_constructor_t02: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_local_key_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_session_key_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_session_storagearea_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure -WebPlatformTest/webstorage/event_session_url_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-get_t01: RuntimeError # Roll 50 failure -LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement_t01: Pass, RuntimeError # Issue 29632 -LayoutTests/fast/dom/icon-size-property_t01: Pass, RuntimeError # Issue 29632 -LayoutTests/fast/events/event-fire-order_t01: Pass, RuntimeError # Issue 29632 - -[ $compiler == dart2js && $runtime == safarimobilesim ] -LayoutTests/fast/alignment/parse-align-items_t01: RuntimeError # Please triage this failure -LayoutTests/fast/alignment/parse-align-self_t01: RuntimeError # Please triage this failure -LayoutTests/fast/alignment/parse-justify-self_t01: RuntimeError # Please triage this failure -LayoutTests/fast/backgrounds/background-repeat-computed-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/backgrounds/repeat/parsing-background-repeat_t01: RuntimeError # Please triage this failure -LayoutTests/fast/borders/border-image-width-numbers-computed-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.fillText.gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.negative_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.veryLarge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.verySmall_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/alpha_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-alphaImageData-behavior_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-arc-negative-radius_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-arc-zero-lineto_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-before-css_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-bezier-same-endpoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blend-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blend-solid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-clipping_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-color-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-fill-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-global-alpha_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-gradient-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-image-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-gradient_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-pattern-over-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-blending-transforms_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-composite-canvas_t01: Skip # Times out on Windows 8. Please triage this failure -LayoutTests/fast/canvas/canvas-composite-stroke-alpha_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-composite-text-alpha_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-currentTransform_t01: RuntimeError # Feature is not implemented -LayoutTests/fast/canvas/canvas-drawImage-scaled-copy-to-self_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-ellipse-360-winding_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-ellipse-negative-radius_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-ellipse-zero-lineto_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-ellipse_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-empty-image-pattern_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-fillStyle-no-quirks-parsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-font-consistency_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-getImageData-invalid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-getImageData-large-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-getImageData-largeNonintegralDimensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-repaint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-imageSmoothingEnabled_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-invalid-fillstyle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-invalid-strokestyle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-large-dimensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-large-fills_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-lineDash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-lose-restore-googol-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-lose-restore-max-int-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-putImageData_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-quadratic-same-endpoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-resetTransform_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-scale-shadowBlur_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-scale-strokePath-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/canvas-setTransform_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/draw-custom-focus-ring_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/drawImage-with-broken-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/drawImage-with-negative-source-destination_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/drawImage-with-valid-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/drawImageFromRect_withToDataURLAsSource_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/fillText-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/getPutImageDataPairTest_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/pointInPath_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/array-bounds-clamping_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/attrib-location-length-limits_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/bad-arguments-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/buffer-bind-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/buffer-data-array-buffer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/canvas-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/canvas-zero-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/context-lost-restored_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/context-lost_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/css-webkit-canvas-repaint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/css-webkit-canvas_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/error-reporting_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/framebuffer-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/functions-returning-strings_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/get-active-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-enable-enum-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-enum-tests_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-get-calls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-getshadersource_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-getstring_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-object-get-calls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-pixelstorei_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-teximage_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-vertex-attrib_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/gl-vertexattribpointer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/glsl-conformance_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/index-validation-copies-indices_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/index-validation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/invalid-UTF-16_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/invalid-passed-params_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/is-object_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/null-object-behaviour_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/null-uniform-location_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/object-deletion-behaviour_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/point-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/program-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/renderbuffer-initialization_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/shader-precision-format_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgb565_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba4444_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba5551_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgb565_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-image-webgl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-input-validation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-sub-image-2d_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texImage2DImageDataTest_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texImageTest_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-active-bind_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-bindings-uneffected-on-resize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-color-profile_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-complete_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-npot_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/triangle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/uniform-location-length-limits_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/uniform-location_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/uninitialized-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-composite-modes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-exceptions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-specific_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id_t01: RuntimeError # Please triage this failure -LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-generated-content/malformed-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-element-events_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css-generated-content/pseudo-transition_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/display-grid-set-get_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/flex-and-minmax-content-resolution-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/flex-content-resolution-columns_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/flex-content-resolution-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-auto-flow-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-container-change-explicit-grid-recompute-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-border-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-empty-row-column_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-min-max-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-padding-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-padding-margin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-area-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-change-order-auto-flow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-display_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-horiz-bt_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-lr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-rl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-margin-resolution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-item-order-auto-flow-resolution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/grid-template-areas-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/justify-self-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-only_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-grid_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/percent-resolution-grid-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-intrinsic-dimensions/height-property-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css-intrinsic-dimensions/multicol_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/add-remove-stylesheets-at-once-minimal-recalc-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/background-position-serialize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/background-serialize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/border-image-style-length_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/button-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/checked-pseudo-selector_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/collapsed-whitespace-reattach-in-style-recalc_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/computed-offset-with-zoom_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/content/content-none_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/content/content-normal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/content/content-quotes-05_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/css-escaped-identifier_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/css-properties-case-insensitive_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/css3-nth-tokens-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/csstext-of-content-string_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/cursor-parsing-quirks_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/deprecated-flexbox-auto-min-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/display-inline-block-scrollbar_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/draggable-region-parser_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/dynamic-class-backdrop-pseudo_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/first-child-display-change-inverse_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/focus-display-block-inline_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-cache-bug_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-unicode-range-load_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-face-unicode-range-overlap-load_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/font-shorthand-from-longhands_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/fontface-properties_t01: RuntimeError # Uses FontFace class not defined for this browser -LayoutTests/fast/css/fontfaceset-download-error_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/fontfaceset-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/fontfaceset-loadingdone_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/computed-style-font_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-radius-shorthand_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/getComputedStyle/getComputedStyle-borderRadius-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/html-attr-case-sensitivity_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/id-or-class-before-stylesheet_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/inherit-initial-shorthand-values_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalid-predefined-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/detach-reattach-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/shadow-host-toggle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/targeted-class-any-pseudo_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/targeted-class-host-pseudo_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/invalidation/toggle-style-inside-shadow-root_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-1_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-3_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-4_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/link-alternate-stylesheet-5_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/media-query-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/media-rule-no-whitespace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/modify-ua-rules-from-javascript_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parse-color-int-or-percent-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-at-rule-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-expr-error-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-object-fit_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-object-position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-page-rule_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-selector-error-recovery_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/parsing-unexpected-eof_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/pseudo-any_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-001_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-002_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-003_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-004_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readonly-pseudoclass-opera-005_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/readwrite-contenteditable-recalc_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/shorthand-setProperty-important_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/sibling-selectors-dynamic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/sticky/parsing-position-sticky_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-nested_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-scoping-nodes-different-order_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-shadow-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-with-dom-operation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-scoped/style-scoped-with-important-rule_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/style-sharing-type-and-readonly_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/webkit-keyframes-errors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css/word-break-user-modify-allowed-values_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-underline-position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent-inherited_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/52776_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/DOMException/XPathException_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/DOMException/dispatch-event-exception_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-strict-mode-wtih-checkbox_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-user-select-none_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-with-first-letter-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/clone-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/createElementNS-namespace-err_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/title-property-creates-title-element_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/title-property-set-multiple-times_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Document/title-with-multiple-children_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/attribute-uppercase_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/getClientRects_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Element/setAttributeNS-namespace-err_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-autofocus_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-close-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-enabled_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-open_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-scrolled-viewport_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-show-modal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/inert-does-not-match-disabled-selector_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unfocusable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unselectable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/multiple-centered-dialogs_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/non-anchored-dialog-positioning_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/show-modal-focusing-steps_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-relative_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-static_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDocument/active-element-gets-unforcusable_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLDocument/clone-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDocument/set-focus-on-valid-element_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLDocument/title-get_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDocument/title-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLElement/set-inner-outer-optimization_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLElement/spellcheck_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLFormElement/move-option-between-documents_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLImageElement/image-alt-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLImageElement/parse-src_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLInputElement/input-image-alt-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/link-beforeload-recursive_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/prefetch-onerror_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/prefetch-onload_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/prefetch_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/HTMLLinkElement/resolve-url-on-insertion_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/async-inline-script_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLScriptElement/script-set-src_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/cloneNode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/content-outlives-template-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/contentWrappers_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/custom-element-wrapper-gc_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/cycles-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/cycles_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/inertContents_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/innerHTML-inert_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/innerHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/no-form-association_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/ownerDocumentXHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/ownerDocument_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLTemplateElement/xhtml-parsing-and-serialization_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-childList_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-options-attributes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/observe-options-character-data_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/MutationObserver/weak-callback-gc-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Node/initial-values_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/NodeIterator/NodeIterator-basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/bug-19527_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/mutation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-comparePoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-constructor_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-detached-exceptions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-exceptions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-expand_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-insertNode-splittext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-isPointInRange_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/range-on-detached-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Range/surroundContents-for-detached-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/caseID_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/dumpNodeList-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/dumpNodeList-almost-strict_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/dom/SelectorAPI/dumpNodeList_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/css-insert-import-rule-to-shadow-stylesheets_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/css-medialist-item_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/detached-shadow-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/StyleSheet/empty-shadow-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Text/next-element-sibling_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Text/previous-element-sibling_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/TreeWalker/TreeWalker-basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/atob-btoa_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/getMatchedCSSRules-nested-rules_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/getMatchedCSSRules-parent-stylesheets_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/window-resize-contents_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/window-resize_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/Window/window-scroll-arguments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-attribute-namespaces_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-doctype2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-double-xmlns_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/anchor-without-content_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/assertion-on-node-removal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/attribute-namespaces-get-set_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/characterdata-api-arguments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/client-width-height-quirks_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/comment-not-documentElement_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/createDocumentType-ownerDocument_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/createElementNS-namespace-errors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/attribute-changed-callback_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/constructor-calls-created-synchronously_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/created-callback_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-basic_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-namespace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-on-create-callback_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-svg-extends_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/document-register-type-extensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/element-names_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/element-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/element-upgrade_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/type-extension-undo-assert_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/dom/custom/type-extensions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/unresolved-pseudoclass_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/custom/upgrade-candidate-remove-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/dataset-xhtml_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/dataset_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/document-set-title-mutations_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/document-set-title-no-child-on-empty_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/document-set-title-no-reuse_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/domparser-parsefromstring-mimetype-support_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/elementFromPoint-scaled-scrolled_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/getElementsByClassName/014_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/getElementsByClassName/dumpNodeList_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/horizontal-scrollbar-in-rtl-doesnt-fire-onscroll_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/horizontal-scrollbar-in-rtl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/html-collections-named-getter-mandatory-arg_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/HTMLDialogElement/dialog-return-value_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/dom/implementation-api-args_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/importNode-unsupported-node-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/jsDevicePixelRatio_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/location-hash_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/dom/navigatorcontentutils/is-protocol-handler-registered_t01: Skip # API not supported. -LayoutTests/fast/dom/navigatorcontentutils/register-protocol-handler_t01: Skip # API not supported. -LayoutTests/fast/dom/navigatorcontentutils/unregister-protocol-handler_t01: Skip # API not supported. -LayoutTests/fast/dom/node-iterator-with-doctype-root_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/option-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/partial-layout-non-overlay-scrollbars_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/set-innerHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/access-document-of-detached-stylesheetlist-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/base-in-shadow-tree_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-includer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-element-outside-shadow-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-dynamic-attribute-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-overridden_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/content-reprojection-fallback-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/distribution-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/distribution-for-event-path_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/distribution-update-recalcs-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/elementfrompoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/elements-in-frameless-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/event-path_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/form-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/get-distributed-nodes-orphan_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-mutation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/getelementbyid-in-orphan_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/getelementbyid-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/host-wrapper-reclaimed_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/insertion-point-list-menu-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/insertion-point-shadow-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/insertion-point-video-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/link-in-shadow-tree_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/no-renderers-for-light-children_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/offsetWidth-host-style-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/olderShadowRoot_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/reinsert-insertion-point_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/remove-and-insert-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-aware-shadow-root_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-content-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-disable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-element-inactive_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-element_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-hierarchy-exception_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-removechild-and-blur-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-append_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-js-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-node-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-root-text-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadow-ul-li_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-dynamic-styling_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-for-input-spellcheck_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-for-input-type-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowdom-for-unknown-with-form_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowhost-keyframes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowroot-clonenode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowroot-host_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/shadowroot-keyframes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/sibling-rules-dynamic-changes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-insertion-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-of-distributed-node_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-sharing-sibling-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/style-sharing-styles-in-older-shadow-roots_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/suppress-mutation-events-in-shadow-characterdata_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/shadow/title-element-in-shadow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/vertical-scrollbar-when-dir-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-counter_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-quote_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/crash-generated-text_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/insertAdjacentElement_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/insertAdjacentHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dynamic/recursive-layout_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/add-event-without-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/clipboard-clearData_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/clipboard-dataTransferItemList_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/dispatch-event-being-dispatched_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/dispatch-event-no-document_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/document-elementFromPoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-creation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-on-created-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-on-xhr-document_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/event-trace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/fire-scroll-event_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/initkeyboardevent-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/invalid-003_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/invalid-004_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/mutation-during-replace-child-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/mutation-during-replace-child_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/scroll-event-does-not-bubble_t01: RuntimeError # Please triage this failure -LayoutTests/fast/events/scroll-event-phase_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/events/wheelevent-constructor_t01: RuntimeError # Safarimobilesim does not support WheelEvent -LayoutTests/fast/events/tabindex-removal-from-focused-element_t01: RuntimeError # Please triage this failure -LayoutTests/fast/exclusions/parsing/parsing-wrap-flow_t01: RuntimeError # Please triage this failure -LayoutTests/fast/exclusions/parsing/parsing-wrap-through_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-close-read_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-close-revoke_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-close_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-constructor_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-parts-slice-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/blob-slice-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-abort-in-last-progress_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-methods-illegal-arguments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/file-reader-readystate_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/url-null_t01: RuntimeError # Please triage this failure -LayoutTests/fast/files/xhr-response-blob_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/async-operations_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/directory-entry-to-uri_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-entry-to-uri_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-from-file-entry_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-metadata-after-write_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-abort-continue_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-abort-depth_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-abort_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-empty-blob_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-gc-blob_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-truncate-extend_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/file-writer-write-overlapped_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/filesystem-reference_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/filesystem-unserializable_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/filesystem-uri-origin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/input-access-entries_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-copy_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-get-entry_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-get-metadata_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-get-parent_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-move_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-read-directory_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-remove_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-restricted-chars_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-restricted-names_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/op-restricted-unicode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/read-directory-many_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/read-directory_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-readonly-file-object_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-readonly_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-required-arguments-getdirectory_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-required-arguments-getfile_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/simple-temporary_t01: RuntimeError # Please triage this failure -LayoutTests/fast/filesystem/snapshot-file-with-gc_t01: RuntimeError # Please triage this failure -LayoutTests/fast/flexbox/vertical-box-form-controls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/ValidityState-typeMismatch-email_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/autocomplete_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/autofocus-input-css-style-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/button-baseline-and-collapsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/button/button-disabled-blur_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/clone-input-with-dirty-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/color/color-setrangetext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/color/input-value-sanitization-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/control-detach-crash_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datalist/datalist_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datalist/input-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/input-date-validation-message_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/input-valueasdate-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/date/input-valueasnumber-date_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/forms/file/file-input-capture_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/focus-style-pending_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/forms/form-attribute_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-appearance-elementFromPoint_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-inputmode_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-select-webkit-user-select-none_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-type-change3_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-value-sanitization_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/interactive-validation-assertion-by-validate-twice_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/forms/interactive-validation-attach-assertion_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/forms/interactive-validation-select-crash_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/forms/listbox-selection-2_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/menulist-disabled-selected-option_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/menulist-selection-reset_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/menulist-submit-without-selection_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/multiple-selected-options-innerHTML_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/option-change-single-selected_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/option-strip-unicode-spaces_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/plaintext-mode-1_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/search-popup-crasher_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/select-clientheight-large-size_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/select-clientheight-with-multiple-attr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/selection-direction_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/selection-wrongtype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/setrangetext_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/shadow-tree-exposure_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-maxlength_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-paste-newline_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-selection-preservation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/forms/textarea-set-defaultvalue-after-value_t01: RuntimeError # Please triage this failure -LayoutTests/fast/html/hidden-attr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/html/imports/import-element-removed-flag_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/html/imports/import-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/html/select-dropdown-consistent-background-color_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/boundingBox-with-continuation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/continuation-inlines-inserted-in-reverse-after-block_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/inline-position-top-align_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/inline-relative-offset-boundingbox_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/inline-with-empty-inline-children_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/out-of-flow-objects-and-whitespace-after-empty-inline_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/parent-inline-element-padding-contributes-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/inline/positioned-element-padding-contributes-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/innerHTML/innerHTML-custom-tag_t01: RuntimeError # Please triage this failure -LayoutTests/fast/layers/normal-flow-hit-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/lists/list-style-position-inside_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/about-blank-hash-change_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/loader/about-blank-hash-kept_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/loader/hashchange-event-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/onhashchange-attribute-listeners_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/loader/scroll-position-restored-on-back_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/scroll-position-restored-on-reload-at-load-event_t01: RuntimeError # Please triage this failure -LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: RuntimeError # Please triage this failure -LayoutTests/fast/masking/parsing-clip-path-shape_t01: RuntimeError # Please triage this failure -LayoutTests/fast/masking/parsing-mask-source-type_t01: RuntimeError # Please triage this failure -LayoutTests/fast/masking/parsing-mask_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/matchmedium-query-api_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/media-query-list-syntax_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/media-query-list_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-append-delete_t01: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-js-media-except_t02: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-js-media-except_t03: RuntimeError # Please triage this failure -LayoutTests/fast/media/mq-parsing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/mediastream/RTCIceCandidate_t01: Skip # Please triage this failure -LayoutTests/fast/mediastream/RTCPeerConnection_t01: Skip # Issue 23475 -LayoutTests/fast/mediastream/constructors_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-short-trailing-empty-block_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-trailing-border_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/balance-trailing-border_t02: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/break-after-always-bottom-margin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/break-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/columns-shorthand-parsing_t02: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/cssom-view_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/float-truncation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-above-or-below_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-end-of-column_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-float_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance-maxheight_t02: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance_t07: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance_t08: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance_t09: Skip # Times out. Please triage this failure -LayoutTests/fast/multicol/newmulticol/balance_t10: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/vertical-lr/break-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/vertical-lr/float-truncation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/vertical-rl/break-properties_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/vertical-rl/float-truncation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/widows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/multicol/widows_t02: RuntimeError # Please triage this failure -LayoutTests/fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto_t01: RuntimeError # Please triage this failure -LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: RuntimeError # Please triage this failure -LayoutTests/fast/overflow/scrollbar-restored_t01: RuntimeError # Please triage this failure -LayoutTests/fast/parser/foster-parent-adopted_t02: RuntimeError # Please triage this failure -LayoutTests/fast/parser/fragment-parser-doctype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/parser/innerhtml-with-prefixed-elements_t01: RuntimeError # Please triage this failure -LayoutTests/fast/parser/pre-first-line-break_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/available-height-for-content_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/container-width-zero_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/preferred-widths_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/replaced/table-percent-height-text-controls_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/table-percent-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/replaced/table-percent-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/ruby/ruby-line-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/scrolling/scroll-element-into-view_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-image-threshold_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-lengths_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-margin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-outside-none_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-outside_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/parsing/parsing-shape-property-aliases_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t02: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-right_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-utterance-uses-voice_t01: RuntimeError # Please triage this failure -LayoutTests/fast/speechsynthesis/speech-synthesis-voices_t01: RuntimeError # Please triage this failure -LayoutTests/fast/storage/disallowed-storage_t01: RuntimeError # Please triage this failure -LayoutTests/fast/storage/storage-disallowed-in-data-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/boundingclientrect-subpixel-margin_t01: Skip # Issue 747 -LayoutTests/fast/sub-pixel/computedstylemargin_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/cssom-subpixel-precision_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/float-list-inside_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/inline-block-with-padding_t01: Skip # Issue 747 -LayoutTests/fast/sub-pixel/layout-boxes-with-zoom_t01: Pass, RuntimeError # Issue 747 -LayoutTests/fast/sub-pixel/shadows-computed-style_t01: RuntimeError # Please triage this failure -LayoutTests/fast/sub-pixel/size-of-span-with-different-positions_t01: Skip # Issue 747 -LayoutTests/fast/svg/getbbox_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/tabindex-focus_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-angle_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-integer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-length_t01: RuntimeError # Please triage this failure -LayoutTests/fast/svg/whitespace-number_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/absolute-table-percent-lengths_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/caption-orthogonal-writing-mode-sizing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/css-table-max-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/css-table-max-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/css-table-width-with-border-padding_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/fixed-table-layout-width-change_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/hittest-tablecell-right-edge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/html-table-width-max-width-constrained_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/incorrect-colgroup-span-values_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/large-shrink-wrapped-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/margins-perpendicular-containing-block_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-css-block-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-css-inline-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-html-block-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/min-width-html-inline-table_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/table/nested-tables-with-div-offset_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/padding-height-and-override-height_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/switch-table-layout-dynamic-cells_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/switch-table-layout-multiple-section_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/switch-table-layout_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-cell-offset-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-rowspan-cell-with-empty-cell_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-sections-border-spacing_t01: RuntimeError # Please triage this failure -LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-case-folding_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-russian_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-soft-hyphen_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/find-spaces_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/font-ligature-letter-spacing_t01: Pass, RuntimeError # Please triage this failure -LayoutTests/fast/text/font-ligatures-linebreak-word_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/font-ligatures-linebreak_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/glyph-reordering_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/cjk-segmentation_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/iso-8859-8_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/listbox-width-rtl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/international/thai-offsetForPosition-inside-character_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/ipa-tone-letters_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/line-breaks-after-hyphen-before-number_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/offsetForPosition-cluster-at-zero_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/remove-zero-length-run_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-ltr_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-pixel_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-rtl_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-vertical_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/sub-pixel/text-scaling-webfont_t01: RuntimeError # Please triage this failure -LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure -LayoutTests/fast/tokenizer/entities_t01: RuntimeError # Please triage this failure -LayoutTests/fast/tokenizer/entities_t02: RuntimeError # Please triage this failure -LayoutTests/fast/tokenizer/entities_t03: RuntimeError # Please triage this failure -LayoutTests/fast/transforms/bounding-rect-zoom_t01: RuntimeError # Please triage this failure -LayoutTests/fast/transforms/hit-test-large-scale_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/anchor_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/file-http-base_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/file_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/host-lowercase-per-scheme_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/host_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/idna2003_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/idna2008_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/invalid-urls-utf8_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/ipv4_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/ipv6_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/path_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/port_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/query_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/relative-unix_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/relative-win_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/relative_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/safari-extension_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/segments-from-data-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/segments_t01: RuntimeError # Please triage this failure -LayoutTests/fast/url/standard-url_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/auto-sizing-orthogonal-flows_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/table-hit-test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/writing-mode/vertical-font-vmtx-units-per-em_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-get_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-before-open-sync-request_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-sync-request_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Borrowed/namespace-nodes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_node_test_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_node_test_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/xpath/ambiguous-operators_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/attr-namespace_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/ensure-null-namespace_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/implicit-node-args_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/node-name-case-sensitivity_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/node-name-case-sensitivity_t02: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/position_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: RuntimeError # Dartium JSInterop failure -LayoutTests/fast/xpath/py-dom-xpath/axes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/data_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/expressions_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/py-dom-xpath/paths_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/reverse-axes_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xpath/xpath-template-element_t01: RuntimeError # Please triage this failure -LayoutTests/fast/xsl/default-html_t01: RuntimeError # Please triage this failure -LibTest/async/Future/doWhile_A05_t01: RuntimeError # Please triage this failure -LibTest/async/Future/forEach_A04_t02: RuntimeError # Please triage this failure -LibTest/async/Stream/timeout_A01_t01: Pass, RuntimeError # Please triage this failure -LibTest/async/Stream/timeout_A03_t01: Pass, RuntimeError # Please triage this failure -LibTest/async/Stream/timeout_A04_t01: Pass, RuntimeError # Please triage this failure -LibTest/core/List/List_A02_t01: RuntimeError # Please triage this failure -LibTest/core/List/List_A03_t01: RuntimeError # Please triage this failure -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 -LibTest/core/double/roundToDouble_A01_t01: RuntimeError # Please triage this failure -LibTest/core/double/round_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/compareTo_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/operator_left_shift_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/operator_remainder_A01_t03: RuntimeError # Please triage this failure -LibTest/core/int/operator_truncating_division_A01_t02: RuntimeError # Please triage this failure -LibTest/core/int/remainder_A01_t01: RuntimeError # Please triage this failure -LibTest/core/int/remainder_A01_t03: RuntimeError # Please triage this failure -LibTest/core/int/toRadixString_A01_t01: RuntimeError # Please triage this failure -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t03: RuntimeError # Please triage this failure -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t06: RuntimeError # Please triage this failure -LibTest/html/Document/childNodes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Document/clone_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Document/clone_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Document/getElementsByTagName_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Document/securityPolicy_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/Element.tag_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/attributeChanged_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/borderEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/contentEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/dataset_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Element/enteredView_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/getAttributeNS_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/getAttributeNS_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Element/getBoundingClientRect_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/getClientRects_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/isContentEditable_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/isContentEditable_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Element/isTagSupported_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/isTagSupported_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/leftView_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/marginEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/mouseWheelEvent_A01_t01: Skip # Safari mobile sim does not support WheelEvent -LibTest/html/Element/onMouseWheel_A01_t01: Skip # Safari mobile sim does not support WheelEvent -LibTest/html/Element/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/paddingEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Element/querySelectorAll_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/replaceWith_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Element/tagName_A01_t03: RuntimeError # Please triage this failure -LibTest/html/Element/transitionEndEvent_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/getAllResponseHeaders_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/getResponseHeader_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/getString_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/onError_A01_t02: Skip # Times out. Please triage this failure -LibTest/html/HttpRequest/request_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/responseText_A01_t02: Skip # Times out. Please triage this failure -LibTest/html/HttpRequest/responseType_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/responseType_A01_t02: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/setRequestHeader_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/statusText_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequest/status_A01_t01: RuntimeError # Please triage this failure -LibTest/html/HttpRequestUpload/onError_A01_t02: Skip # Times out. Please triage this failure -LibTest/html/HttpRequestUpload/onLoadEnd_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/HttpRequestUpload/onLoadStart_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/HttpRequestUpload/onLoad_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/IFrameElement/IFrameElement.created_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/attributeChanged_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/attributes_setter_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/blur_A01_t01: Skip # Times out. Please triage this failure -LibTest/html/IFrameElement/borderEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/clone_A01_t02: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/contentWindow_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createFragment_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createFragment_A01_t02: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createFragment_A01_t03: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/createShadowRoot_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/innerHtml_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/isContentEditable_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/leftView_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/marginEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/mouseWheelEvent_A01_t01: Skip # Safari mobile sim does not support WheelEvent -LibTest/html/IFrameElement/onMouseWheel_A01_t01: Skip # Safari mobile sim does not support WheelEvent -LibTest/html/IFrameElement/offsetTo_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/outerHtml_setter_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/paddingEdge_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/querySelector_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/setInnerHtml_A01_t01: RuntimeError # Please triage this failure -LibTest/html/IFrameElement/tagName_A01_t03: RuntimeError # Please triage this failure -LibTest/html/Node/append_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Node/nodes_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Node/nodes_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Node/parent_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Node/previousNode_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/close_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/document_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/find_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/find_A03_t01: RuntimeError # Please triage this failure -LibTest/html/Window/find_A06_t01: RuntimeError # Please triage this failure -LibTest/html/Window/moveBy_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/moveTo_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/moveTo_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Window/open_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/postMessage_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/postMessage_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Window/requestFileSystem_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/requestFileSystem_A01_t02: RuntimeError # Please triage this failure -LibTest/html/Window/requestFileSystem_A02_t01: RuntimeError # Please triage this failure -LibTest/html/Window/resizeBy_A01_t01: RuntimeError # Please triage this failure -LibTest/html/Window/resizeTo_A01_t01: RuntimeError # Please triage this failure -LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Please triage this failure -LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/DOMEvents/approved/EventObject.after.dispatchEvenr_t01: RuntimeError # Please triage this failure -WebPlatformTest/DOMEvents/approved/EventObject.multiple.dispatchEvent_t01: RuntimeError # Please triage this failure -WebPlatformTest/DOMEvents/approved/ProcessingInstruction.DOMCharacterDataModified_t01: Skip # Times out. Please triage this failure -WebPlatformTest/DOMEvents/approved/addEventListener.optional.useCapture_t01: RuntimeError # Please triage this failure -WebPlatformTest/Utils/test/asyncTestFail_t01: RuntimeError # Please triage this failure -WebPlatformTest/Utils/test/asyncTestFail_t02: RuntimeError # Please triage this failure -WebPlatformTest/Utils/test/asyncTestTimeout_t01: Skip # Times out. Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A06_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A07_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/concepts/type_A08_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElementNS_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/createElement_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t02: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/isAttribute_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/localName_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/custom-elements/instantiating/namespace_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/EventTarget/dispatchEvent_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/EventTarget/dispatchEvent_A03_t01: Skip # Times out. Please triage this failure -WebPlatformTest/dom/events/type_A01_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/DOMImplementation-createDocumentType_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/DOMImplementation-createDocument_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/DOMImplementation-hasFeature_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-adoptNode_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-createElementNS_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-getElementsByTagName_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Document-importNode_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Element-childElementCount_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-appendChild_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-appendChild_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-insertBefore_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-isEqualNode_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/Node-replaceChild_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/attributes_A04_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/attributes_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A05_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A06_t03: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t03: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A08_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/nodes/attributes/setAttribute_A03_t01: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-attributes_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-comparePoint_t02: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-comparePoint_t03: RuntimeError # Please triage this failure -WebPlatformTest/dom/ranges/Range-detach_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-imports/link-import_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-imports/link-import_t02: RuntimeError # Please triage this failure -WebPlatformTest/html-imports/loading-import_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/additions-to-the-steps-to-clone-a-node/template-clone-children_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/additions-to-the-steps-to-clone-a-node/templates-copy-document-owner_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/definitions/template-contents-owner-document-type_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/definitions/template-contents-owner-test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/definitions/template-contents_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/innerhtml-on-templates/innerhtml_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-foster-parenting/template-is-a-foster-parent-element_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-foster-parenting/template-is-not-a-foster-parent-element_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-body-token_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-frameset-token_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-head-token_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-html-token_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/start-tag-body_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-table-insertion-mode/end-tag-table_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/appending-to-a-template/template-child-nodes_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/parsing-html-templates/creating-an-element-for-the-token/template-owner-document_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/serializing-html-templates/outerhtml_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/content-attribute_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/node-document-changes_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/template-as-a-descendant_t01 : RuntimeError # In Safari mobile sim, setting innerHTML on a Frameset element does nothing. -WebPlatformTest/html-templates/template-element/template-content-node-document_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/template-content_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-video_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/browsers/browsing-the-web/read-text/load-text-plain_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-getter_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-setter_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.getElementsByName-namespace_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t05: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t07: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/elements/global-attributes/dataset-delete_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/elements/global-attributes/dataset-get_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/dom/elements/global-attributes/dataset-set_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/document-metadata/styling/LinkStyle_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/error-codes/error_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/cues_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/mode_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formaction_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setRangeText_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-button-element/button-validation_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-datalist-element/datalistelement_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-datalist-element/datalistoptions_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-fieldset-element/disabled_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-form-element/form-autocomplete_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-form-element/form-elements-matches_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-form-element/form-elements-nameditem_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/color_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/date_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/datetime-local_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/datetime_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/datetime_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/email_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/hidden_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/input-textselection_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/month_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/password_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/range_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/text_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/time_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/time_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/type-change-state_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/url_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/valueMode_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-input-element/week_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-meter-element/meter_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-option-element/option-text-recurse_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/forms/the-option-element/option-text-spaces_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/grouping-content/the-blockquote-element/grouping-blockquote_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/interactive-elements/the-details-element/toggleEvent_t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-close_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-showModal_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/scripting-1/the-script-element/async_t11: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/scripting-1/the-script-element/script-text_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/checked_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/default_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/dir_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/enabled_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/focus_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/indeterminate_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/inrange-outofrange_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/selectors/pseudo-classes/valid-invalid_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/tabular-data/the-table-element/table-insertRow_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/tabular-data/the-table-element/table-rows_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t02: RuntimeError # Please triage this failure -WebPlatformTest/html/syntax/serializing-html-fragments/outerHTML_t01: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t01: Skip # Times out. Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t02: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t03: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t04: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t05: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t06: RuntimeError # Please triage this failure -WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol_t00: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-008_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-009_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-010_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-012_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-013_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-010_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t03: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t04: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/inert-html-elements/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/composition/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/custom-pseudo-elements/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/nested-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/rendering-shadow-trees/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/reprojection/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-003_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-004_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-006_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-017_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-002_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/shadow-root-001_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: RuntimeError # Please triage this failure -WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_constructor_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_constructor_t02: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_local_key_t01: RuntimeError # Please triage this failure -WebPlatformTest/webstorage/event_session_key_t01: RuntimeError # Please triage this failure [ $compiler == dart2js && $runtime == ie11 ] Language/Expressions/Conditional/type_t04: Skip # Times out. Please triage this failure @@ -6910,7 +4104,7 @@ LayoutTests/fast/css/html-attr-case-sensitivity_t01: RuntimeError # Please triag LayoutTests/fast/css/id-or-class-before-stylesheet_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/image-set-setting_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/implicit-attach-marking_t01: Skip # Times out. Please triage this failure -LayoutTests/fast/css/important-js-override_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/important-js-override_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/inherit-initial-shorthand-values_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/inherited-properties-rare-text_t01: RuntimeError # Please triage this failure LayoutTests/fast/css/insertRule-font-face_t01: RuntimeError # Please triage this failure @@ -8197,7 +5391,7 @@ WebPlatformTest/html-templates/parsing-html-templates/creating-an-element-for-th WebPlatformTest/html-templates/serializing-html-templates/outerhtml_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/template-element/content-attribute_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/template-element/node-document-changes_t01: RuntimeError # Please triage this failure -WebPlatformTest/html-templates/template-element/template-as-a-descendant_t01 : RuntimeError # In IE, setting innerHTML on a Frameset element does nothing. +WebPlatformTest/html-templates/template-element/template-as-a-descendant_t01: RuntimeError # In IE, setting innerHTML on a Frameset element does nothing. WebPlatformTest/html-templates/template-element/template-content-node-document_t01: RuntimeError # Please triage this failure WebPlatformTest/html-templates/template-element/template-content_t01: RuntimeError # Please triage this failure WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: Skip # Times out. Please triage this failure @@ -8404,13 +5598,2814 @@ WebPlatformTest/webstorage/event_session_storagearea_t01: RuntimeError # Please WebPlatformTest/webstorage/event_session_url_t01: RuntimeError # Please triage this failure WebPlatformTest/webstorage/storage_builtins_t01: RuntimeError # Please triage this failure -[ $compiler == dart2js && $runtime == ie11 && $builder_tag == win8] -LibTest/typed_data/ByteData/offsetInBytes_A01_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: RuntimeError # Please triage this failure -LayoutTests/fast/dom/serialize-attribute_t01: RuntimeError # Please triage this failure +[ $compiler == dart2js && $runtime == jsshell ] +Language/Expressions/Await_Expressions/execution_t01: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Expressions/Await_Expressions/execution_t02: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Expressions/Await_Expressions/execution_t03: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Expressions/Await_Expressions/execution_t04: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Expressions/Await_Expressions/execution_t05: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Expressions/Await_Expressions/execution_t06: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/For/Asynchronous_For_in/execution_t04: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t01: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield/execution_async_t04: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t02: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t03: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t04: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t05: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t06: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t07: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t08: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t09: RuntimeError # Issue 7728, timer not supported in jsshell +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t10: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Future/Future.delayed_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Future/Future.delayed_A03_t01: Fail # Issue 7728, timer not supported in jsshell +LibTest/async/Future/doWhile_A05_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Future/forEach_A04_t02: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Future/timeout_A01_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Future/wait_A01_t07: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Stream/Stream.periodic_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Stream/Stream.periodic_A02_t01: Fail # Issue 7728, timer not supported in jsshell +LibTest/async/Stream/Stream.periodic_A03_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Stream/asBroadcastStream_A03_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Stream/asBroadcastStream_A04_t03: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Stream/first_A01_t01: Fail # co19-roll r546: Please triage this failure +LibTest/async/Stream/first_A02_t02: Fail # co19-roll r546: Please triage this failure +LibTest/async/Stream/timeout_A01_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Stream/timeout_A02_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Stream/timeout_A03_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Stream/timeout_A04_t01: RuntimeError # Please triage. May be unsupported timer issue 7728. +LibTest/async/Timer/Timer.periodic_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Timer/Timer.periodic_A02_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Timer/Timer_A01_t01: Fail # Issue 7728, timer not supported in jsshell +LibTest/async/Timer/cancel_A01_t01: Fail # Issue 7728, timer not supported in jsshell +LibTest/async/Timer/isActive_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Timer/isActive_A01_t02: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Zone/createPeriodicTimer_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/async/Zone/createTimer_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/List/sort_A01_t04: Skip # Must be a bug in jsshell, test sometimes times out. +LibTest/core/Map/Map_class_A01_t04: Pass, Slow # Issue 8096 +LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Fail # co19-roll r706: Please triage this failure. +LibTest/core/Stopwatch/elapsedInMs_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/elapsedInUs_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/elapsedTicks_A01_t01: RuntimeError # Please triage this failure +LibTest/core/Stopwatch/elapsedTicks_A01_t02: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/elapsedTicks_A01_t03: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/elapsed_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/elapsed_A01_t02: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/elapsed_A01_t03: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/start_A01_t01: RuntimeError # Please triage this failure +LibTest/core/Stopwatch/start_A01_t02: RuntimeError # Please triage this failure +LibTest/core/Stopwatch/start_A01_t03: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Stopwatch/stop_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/core/Uri/Uri_A06_t03: Pass, Slow +LibTest/isolate/Isolate/spawn_A03_t01: RuntimeError # Please triage this failure +LibTest/isolate/Isolate/spawn_A03_t03: RuntimeError # Please triage this failure +LibTest/isolate/Isolate/spawn_A03_t04: RuntimeError # Please triage this failure +LibTest/isolate/Isolate/spawn_A04_t02: RuntimeError # Please triage this failure +LibTest/isolate/Isolate/spawn_A04_t03: Fail # Please triage this failure +LibTest/isolate/Isolate/spawn_A04_t04: Fail # Issue 27558 +LibTest/isolate/Isolate/spawn_A04_t05: Fail # Please triage this failure +LibTest/isolate/Isolate/spawn_A06_t02: Fail # Please triage this failure +LibTest/isolate/Isolate/spawn_A06_t03: Fail # Please triage this failure +LibTest/isolate/Isolate/spawn_A06_t04: RuntimeError # Please triage this failure +LibTest/isolate/Isolate/spawn_A06_t05: RuntimeError # Please triage this failure +LibTest/isolate/Isolate/spawn_A06_t07: Fail # Please triage this failure +LibTest/isolate/RawReceivePort/close_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/isolate/ReceivePort/asBroadcastStream_A04_t03: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/isolate/ReceivePort/close_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/typed_data/Float32List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: Fail # co19-roll r587: Please triage this failure +LibTest/typed_data/Float64List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Int16List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Int16List/toList_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Int32List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Int32List/toList_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Issue 7728, timer not supported in jsshell +LibTest/typed_data/Int8List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint16List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint16List/toList_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint32List/toList_A01_t01: Skip # issue 16934, co19-roll r559: Please triage this failure +LibTest/typed_data/Uint8ClampedList/toList_A01_t01: Skip # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint8List/toList_A01_t01: Skip # co19-roll r559: Please triage this failure -[ $compiler == dart2js && $runtime == ie11 && $builder_tag == win7] -LayoutTests/fast/files/file-reader-result-twice_t01: Pass, RuntimeError # Issue 31430 +[ $compiler == dart2js && $runtime == jsshell && $checked ] +LibTest/core/Map/Map_class_A01_t04: Skip # Issue 18093, timeout. +LibTest/core/Uri/Uri_A06_t03: Skip # Issue 18093, timeout. +LibTest/core/Uri/encodeQueryComponent_A01_t02: Skip # Issue 18093, timeout. + +[ $compiler == dart2js && $runtime == jsshell && $fast_startup ] +LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: Fail # please triage + +[ $compiler == dart2js && $runtime == safari ] +LayoutTests/fast/alignment/parse-align-items_t01: RuntimeError # Please triage this failure +LayoutTests/fast/alignment/parse-align-self_t01: RuntimeError # Please triage this failure +LayoutTests/fast/alignment/parse-justify-self_t01: RuntimeError # Please triage this failure +LayoutTests/fast/animation/request-animation-frame-cancel2_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/animation/request-animation-frame-cancel_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/animation/request-animation-frame-timestamps-advance_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/animation/request-animation-frame-timestamps_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/animation/request-animation-frame-within-callback_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/backgrounds/background-repeat-computed-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/backgrounds/repeat/parsing-background-repeat_t01: RuntimeError # Please triage this failure +LayoutTests/fast/borders/border-image-width-numbers-computed-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.fillText.gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.negative_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.veryLarge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.verySmall_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/alpha_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-arc-negative-radius_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-as-image-incremental-repaint_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/canvas/canvas-blend-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blend-solid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-clipping_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-fill-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-global-alpha_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-transforms_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-currentTransform_t01: RuntimeError # Feature is not implemented +LayoutTests/fast/canvas/canvas-drawImage-scaled-copy-to-self_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-ellipse-zero-lineto_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-empty-image-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-fillStyle-no-quirks-parsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-font-consistency_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-getImageData-invalid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-getImageData-large-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-getImageData-largeNonintegralDimensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-large-dimensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-large-fills_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-lineDash-input-sequence_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-lose-restore-googol-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-lose-restore-max-int-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-putImageData_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-quadratic-same-endpoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-resetTransform_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-scale-shadowBlur_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-scale-strokePath-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-setTransform_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/draw-custom-focus-ring_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/drawImage-with-broken-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/drawImage-with-valid-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/getPutImageDataPairTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/setWidthResetAfterForcedRender_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Skip # Issue 29010 +LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Skip # Issue 28640 +LayoutTests/fast/canvas/webgl/context-lost_t01: Skip +LayoutTests/fast/canvas/webgl/glsl-conformance_t01: Skip # Times out 1 out of 20. +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: Skip # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: Skip # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: Skip +LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/uniform-location_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-generated-content/malformed-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-animation-before-onload_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-animation_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-element-events_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-transition_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/display-grid-set-get_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/flex-and-minmax-content-resolution-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/flex-content-resolution-columns_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/flex-content-resolution-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-auto-flow-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-container-change-explicit-grid-recompute-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-border-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-empty-row-column_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-min-max-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-padding-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-padding-margin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-area-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-change-order-auto-flow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-display_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-horiz-bt_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-lr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-rl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-resolution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-order-auto-flow-resolution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-template-areas-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/justify-self-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-only_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-grid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-resolution-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/MarqueeLayoutTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/aspect-ratio-inheritance_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/aspect-ratio-parsing-tests_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/background-serialize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/border-image-style-length_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/checked-pseudo-selector_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/computed-offset-with-zoom_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/content/content-none_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/content/content-normal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/content/content-quotes-01_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +LayoutTests/fast/css/content/content-quotes-05_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +LayoutTests/fast/css/counters/counter-cssText_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/css-escaped-identifier_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/css3-nth-tokens-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/cssText-shorthand_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/csstext-of-content-string_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/deprecated-flexbox-auto-min-size_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/css/draggable-region-parser_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/dynamic-class-backdrop-pseudo_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/first-child-display-change-inverse_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/focus-display-block-inline_t01: Pass, RuntimeError # Fails 5 out of 10. +LayoutTests/fast/css/focus-display-block-inline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-cache-bug_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-unicode-range-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-unicode-range-monospace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-unicode-range-overlap-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-property-priority_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/css/font-shorthand-from-longhands_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/fontface-properties_t01: RuntimeError # Uses FontFace class, not defined for this browser. +LayoutTests/fast/css/fontfaceset-download-error_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/fontfaceset-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/fontfaceset-loadingdone_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/computed-style-border-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/computed-style-cross-fade_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/computed-style-font_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/counterIncrement-without-counter_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getPropertyValue-clip_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getPropertyValue-columns_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/html-attr-case-sensitivity_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/id-or-class-before-stylesheet_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/important-js-override_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/inherit-initial-shorthand-values_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/inherited-properties-rare-text_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/css/invalid-not-with-simple-selector-sequence_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/css/invalid-predefined-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/detach-reattach-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/shadow-host-toggle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/targeted-class-host-pseudo_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/toggle-style-inside-shadow-root_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-1_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-3_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-4_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-5_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/media-query-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/media-rule-no-whitespace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parse-color-int-or-percent-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-at-rule-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-css-nonascii_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-css-nth-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-font-variant-ligatures_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/css/parsing-object-position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-page-rule_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-selector-error-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-unexpected-eof_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/pseudo-any_t01: Pass, RuntimeError # Fails 4 out of 10. +LayoutTests/fast/css/pseudo-any_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-001_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-002_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-003_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-004_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-005_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/selector-text-escape_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/css/shorthand-setProperty-important_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/sticky/parsing-position-sticky_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/string-quote-binary_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-nested_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-scoping-nodes-different-order_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-shadow-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-with-dom-operation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-with-important-rule_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/transform-origin-parsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/unicode-bidi-computed-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/webkit-keyframes-errors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-underline-position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent-inherited_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/52776_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMException/XPathException_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMException/dispatch-event-exception_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-strict-mode-wtih-checkbox_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-user-select-none_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-with-first-letter-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/createElementNS-namespace-err_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/getClientRects_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/offsetTop-table-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/setAttributeNS-namespace-err_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-autofocus_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-close-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-enabled_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-open_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-return-value_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-scrolled-viewport_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-show-modal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/inert-does-not-match-disabled-selector_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unfocusable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unselectable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/multiple-centered-dialogs_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/non-anchored-dialog-positioning_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/show-modal-focusing-steps_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-relative_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-static_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDocument/active-element-gets-unforcusable_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLDocument/set-focus-on-valid-element_t01: Skip +LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLElement/set-inner-outer-optimization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLElement/spellcheck_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLFormElement/move-option-between-documents_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLImageElement/image-alt-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLImageElement/parse-src_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLInputElement/input-image-alt-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/prefetch-onerror_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/prefetch-onload_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/prefetch_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/resolve-url-on-insertion_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement_t01: Pass, RuntimeError # Issue 29632 +LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/async-inline-script_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/script-set-src_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/custom-element-wrapper-gc_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/cycles-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/ownerDocumentXHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-childList_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-options-attributes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-options-character-data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/weak-callback-gc-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Node/initial-values_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/NodeIterator/NodeIterator-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/bug-19527_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/mutation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-comparePoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-constructor_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-created-during-remove-children_t01: RuntimeError +LayoutTests/fast/dom/Range/range-detached-exceptions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-exceptions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-expand_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-insertNode-splittext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-isPointInRange_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-on-detached-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/remove-twice-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/surroundContents-for-detached-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/dumpNodeList-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/dumpNodeList_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/css-insert-import-rule-to-shadow-stylesheets_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/css-medialist-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/detached-shadow-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/empty-shadow-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/TreeWalker/TreeWalker-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/atob-btoa_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/getMatchedCSSRules-parent-stylesheets_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/window-resize-contents_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/window-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/window-scroll-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/XMLSerializer-double-xmlns_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/anchor-without-content_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/attribute-namespaces-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/background-shorthand-csstext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/characterdata-api-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/client-width-height-quirks_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/css-selectorText_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/dom/custom/attribute-changed-callback_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/constructor-calls-created-synchronously_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/created-callback_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-namespace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-on-create-callback_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-svg-extends_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-type-extensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/element-names_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/element-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/element-upgrade_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/type-extensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/unresolved-pseudoclass_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/upgrade-candidate-remove-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/dataset-xhtml_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/dataset_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/document-set-title-mutations_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/document-set-title-no-reuse_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/domparser-parsefromstring-mimetype-support_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/fragment-activation-focuses-target_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/getElementsByClassName/dumpNodeList_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/horizontal-scrollbar-in-rtl-doesnt-fire-onscroll_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/horizontal-scrollbar-in-rtl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/html-collections-named-getter-mandatory-arg_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/icon-size-property_t01: Pass, RuntimeError # Issue 29632 +LayoutTests/fast/dom/implementation-api-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/importNode-unsupported-node-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/location-hash_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/mutation-event-remove-inserted-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/navigatorcontentutils/is-protocol-handler-registered_t01: Skip # API not supported. +LayoutTests/fast/dom/navigatorcontentutils/register-protocol-handler_t01: Skip # API not supported. +LayoutTests/fast/dom/navigatorcontentutils/unregister-protocol-handler_t01: Skip # API not supported. +LayoutTests/fast/dom/object-plugin-hides-properties_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/dom/option-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/partial-layout-non-overlay-scrollbars_t01: Pass, RuntimeError # Issue 53 +LayoutTests/fast/dom/partial-layout-overlay-scrollbars_t01: Pass, RuntimeError # Fails 8 out of 10. +LayoutTests/fast/dom/set-innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/access-document-of-detached-stylesheetlist-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/base-in-shadow-tree_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-includer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-outside-shadow-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-dynamic-attribute-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-overridden_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-reprojection-fallback-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/distribution-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/distribution-for-event-path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/distribution-update-recalcs-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/elementfrompoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/elements-in-frameless-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/event-path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/form-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/get-distributed-nodes-orphan_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-mutation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/getelementbyid-in-orphan_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/getelementbyid-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-wrapper-reclaimed_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/insertion-point-list-menu-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/insertion-point-shadow-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/insertion-point-video-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/link-in-shadow-tree_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/no-renderers-for-light-children_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/offsetWidth-host-style-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/olderShadowRoot_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/reinsert-insertion-point_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/remove-and-insert-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-aware-shadow-root_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-content-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-disable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-element-inactive_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-element_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-hierarchy-exception_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-removechild-and-blur-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-append_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-js-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-node-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-text-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-ul-li_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-dynamic-styling_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-for-input-spellcheck_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-for-input-type-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-for-unknown-with-form_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowhost-keyframes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowroot-clonenode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowroot-host_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowroot-keyframes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/sibling-rules-dynamic-changes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-insertion-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-of-distributed-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-sharing-sibling-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-sharing-styles-in-older-shadow-roots_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/suppress-mutation-events-in-shadow-characterdata_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/title-element-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-counter_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-quote_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/insertAdjacentElement_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/insertAdjacentHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/recursive-layout_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/add-event-without-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/clipboard-clearData_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/clipboard-dataTransferItemList_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/dispatch-event-being-dispatched_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/document-elementFromPoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-creation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-fire-order_t01: Pass, RuntimeError # Issue 29632 +LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-on-created-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-on-xhr-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-trace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/initkeyboardevent-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/invalid-003_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/invalid-004_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/mutation-during-replace-child-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/mutation-during-replace-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/overflowchanged-event-raf-timing_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/scoped/editing-commands_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/scroll-event-does-not-bubble_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/tabindex-removal-from-focused-element_t01: RuntimeError # Please triage this failure +LayoutTests/fast/exclusions/parsing/parsing-wrap-flow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/exclusions/parsing/parsing-wrap-through_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-close-read_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-close-revoke_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-close_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-constructor_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-parts-slice-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-slice-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-abort-in-last-progress_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-done-reading-abort_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-methods-illegal-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-readystate_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/url-null_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/xhr-response-blob_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/async-operations_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/directory-entry-to-uri_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-entry-to-uri_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-from-file-entry_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-metadata-after-write_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-abort-continue_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-abort-depth_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-abort_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-empty-blob_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-gc-blob_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-truncate-extend_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-write-overlapped_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/filesystem-reference_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/filesystem-unserializable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/filesystem-uri-origin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/input-access-entries_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-copy_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-get-entry_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-get-metadata_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-get-parent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-move_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-read-directory_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-remove_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-restricted-chars_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-restricted-names_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-restricted-unicode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/read-directory-many_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/read-directory_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-readonly-file-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-readonly_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-required-arguments-getdirectory_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-required-arguments-getfile_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-temporary_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/snapshot-file-with-gc_t01: RuntimeError # Please triage this failure +LayoutTests/fast/flexbox/repaint-scrollbar_t01: Pass, RuntimeError # Fails 2 out of 10. +LayoutTests/fast/flexbox/repaint-scrollbar_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/ValidityState-customError_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/ValidityState-typeMismatch-email_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/autocomplete_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/autofocus-input-css-style-change_t01: Pass, RuntimeError # Fails 7 out of 10. +LayoutTests/fast/forms/autofocus-input-css-style-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/button-baseline-and-collapsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/button/button-disabled-blur_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/clone-input-with-dirty-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/color/color-setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/color/input-value-sanitization-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datalist/datalist-child-validation_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/forms/datalist/datalist_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datalist/input-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: Pass, RuntimeError # Fails 6 out of 10. +LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/ValidityState-stepMismatch-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/ValidityState-typeMismatch-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/date-input-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/date-pseudo-classes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/date-setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/input-date-validation-message_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/input-valueasdate-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/input-valueasnumber-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/datetimelocal-pseudo-classes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/datetimelocal-setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/forms/file/file-input-capture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/form-attribute_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-appearance-elementFromPoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-inputmode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-type-change3_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-value-sanitization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/interactive-validation-assertion-by-validate-twice_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/forms/interactive-validation-attach-assertion_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/forms/interactive-validation-select-crash_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/forms/menulist-disabled-selected-option_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +LayoutTests/fast/forms/menulist-selection-reset_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/menulist-submit-without-selection_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +LayoutTests/fast/forms/multiple-selected-options-innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/option-change-single-selected_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/option-strip-unicode-spaces_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/parser-associated-form-removal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/plaintext-mode-1_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/search-popup-crasher_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +LayoutTests/fast/forms/select-max-length_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/forms/select-set-length-with-mutation-remove_t01: RuntimeError +LayoutTests/fast/forms/select-set-length-with-mutation-reparent_t01: RuntimeError +LayoutTests/fast/forms/selection-wrongtype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-maxlength_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-paste-newline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-selection-preservation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/html/hidden-attr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/html/imports/import-element-removed-flag_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/html/imports/import-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/html/select-dropdown-consistent-background-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/boundingBox-with-continuation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/continuation-inlines-inserted-in-reverse-after-block_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/inline-position-top-align_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/inline-with-empty-inline-children_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/out-of-flow-objects-and-whitespace-after-empty-inline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/parent-inline-element-padding-contributes-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/positioned-element-padding-contributes-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/innerHTML/innerHTML-svg-write_t01: RuntimeError # Issue 25941 +LayoutTests/fast/innerHTML/innerHTML-uri-resolution_t01: Pass, RuntimeError # Issue 29634 +LayoutTests/fast/innerHTML/javascript-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/about-blank-hash-change_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/loader/about-blank-hash-kept_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/loader/hashchange-event-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/onhashchange-attribute-listeners_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/loader/scroll-position-restored-on-back_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/loader/scroll-position-restored-on-reload-at-load-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: RuntimeError # Please triage this failure +LayoutTests/fast/masking/parsing-clip-path-shape_t01: RuntimeError # Please triage this failure +LayoutTests/fast/masking/parsing-mask_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/matchmedium-query-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/media-query-list-syntax_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/media-query-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-append-delete_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-js-media-except_t02: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-js-media-except_t03: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-parsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/mediastream/RTCIceCandidate_t01: Skip # Please triage this failure +LayoutTests/fast/mediastream/RTCPeerConnection_t01: Skip # Issue 23475 +LayoutTests/fast/mediastream/constructors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-short-trailing-empty-block_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-trailing-border_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-trailing-border_t02: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-unbreakable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/break-after-always-bottom-margin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/break-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/columns-shorthand-parsing_t02: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/cssom-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/float-truncation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-above-or-below_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-end-of-column_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-float_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance-images_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/orphans-relayout_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/vertical-lr/float-truncation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/vertical-rl/float-truncation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: RuntimeError # Please triage this failure +LayoutTests/fast/overflow/scrollbar-restored_t01: RuntimeError # Fails 10 out of 10. +LayoutTests/fast/parser/foster-parent-adopted_t02: RuntimeError # Please triage this failure +LayoutTests/fast/parser/fragment-parser-doctype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/parser/innerhtml-with-prefixed-elements_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/available-height-for-content_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/container-width-zero_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/preferred-widths_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/replaced/table-percent-height-text-controls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/table-percent-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/table-percent-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/ruby/ruby-line-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/scrolling/scroll-element-into-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-lengths_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-margin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-outside_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t02: Pass, RuntimeError # Fails on 6.2. Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-right_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-utterance-uses-voice_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-voices_t01: RuntimeError # Please triage this failure +LayoutTests/fast/storage/disallowed-storage_t01: RuntimeError # Please triage this failure +LayoutTests/fast/storage/storage-disallowed-in-data-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/cssom-subpixel-precision_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/shadows-computed-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/tabindex-focus_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-angle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-integer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-length_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-number_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/absolute-table-percent-lengths_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/anonymous-table-section-removed_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/caption-orthogonal-writing-mode-sizing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/col-width-span-expand_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/css-table-max-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/css-table-max-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/fixed-table-layout-width-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/hittest-tablecell-bottom-edge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/hittest-tablecell-right-edge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/html-table-width-max-width-constrained_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/large-shrink-wrapped-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/margins-perpendicular-containing-block_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-css-block-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-css-inline-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-html-block-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-html-inline-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/nested-tables-with-div-offset_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/padding-height-and-override-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/switch-table-layout-dynamic-cells_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/switch-table-layout-multiple-section_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/switch-table-layout_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-cell-offset-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-rowspan-cell-with-empty-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text-autosizing/vertical-writing-mode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-case-folding_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-russian_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-soft-hyphen_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-spaces_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/font-ligature-letter-spacing_t01: Pass, RuntimeError # Fails on 6.2. Please triage this failure +LayoutTests/fast/text/font-ligatures-linebreak-word_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/text/font-ligatures-linebreak_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/text/glyph-reordering_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +LayoutTests/fast/text/international/cjk-segmentation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/iso-8859-8_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/listbox-width-rtl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/rtl-text-wrapping_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/thai-offsetForPosition-inside-character_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/offsetForPosition-cluster-at-zero_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/remove-zero-length-run_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-ltr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-pixel_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-rtl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-vertical_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-webfont_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure +LayoutTests/fast/transforms/bounding-rect-zoom_t01: RuntimeError # Please triage this failure +LayoutTests/fast/transforms/hit-test-large-scale_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/anchor_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/file-http-base_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/file_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/host-lowercase-per-scheme_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/host_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/idna2003_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/idna2008_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/invalid-urls-utf8_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/ipv4_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/ipv6_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/port_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/query_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/relative-unix_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/relative-win_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/relative_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/safari-extension_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/segments-from-data-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/segments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/standard-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/positionForPoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/table-hit-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/vertical-font-vmtx-units-per-em_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-get_t01: RuntimeError # Roll 50 failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-before-open-sync-request_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-sync-request_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Borrowed/namespace-nodes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_node_test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_node_test_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/xpath/ambiguous-operators_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/attr-namespace_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/ensure-null-namespace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/implicit-node-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/node-name-case-sensitivity_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/node-name-case-sensitivity_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/xpath/py-dom-xpath/axes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/expressions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/paths_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/reverse-axes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xsl/default-html_t01: RuntimeError # Please triage this failure +LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: RuntimeError # Please triage this failure +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 +LibTest/core/double/roundToDouble_A01_t01: RuntimeError # Please triage this failure +LibTest/core/double/round_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/compareTo_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/operator_left_shift_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/operator_remainder_A01_t03: RuntimeError # Please triage this failure +LibTest/core/int/operator_truncating_division_A01_t02: RuntimeError # Please triage this failure +LibTest/core/int/remainder_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/remainder_A01_t03: RuntimeError # Please triage this failure +LibTest/core/int/toRadixString_A01_t01: RuntimeError # Please triage this failure +LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t03: RuntimeError # Please triage this failure +LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t06: RuntimeError # Please triage this failure +LibTest/html/Document/childNodes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Document/clone_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Document/clone_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Document/getElementsByTagName_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Document/securityPolicy_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/Element.tag_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/attributeChanged_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/borderEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/contentEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/dataset_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Element/enteredView_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/getAttributeNS_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/getAttributeNS_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Element/getBoundingClientRect_A01_t02: Pass, RuntimeError # Issue 53 +LibTest/html/Element/getClientRects_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/isContentEditable_A01_t01: Pass, RuntimeError # Issue 28187 +LibTest/html/Element/isContentEditable_A02_t01: Pass, RuntimeError # Issue 28187 +LibTest/html/Element/isTagSupported_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/isTagSupported_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/leftView_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/marginEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/mouseWheelEvent_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/Element/onMouseWheel_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/Element/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/paddingEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/querySelectorAll_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/replaceWith_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/tagName_A01_t03: RuntimeError # Please triage this failure +LibTest/html/Element/transitionEndEvent_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/getAllResponseHeaders_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/getResponseHeader_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/getString_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/onError_A01_t02: Skip # Times out. Please triage this failure +LibTest/html/HttpRequest/request_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/responseText_A01_t02: Skip # Times out. Please triage this failure +LibTest/html/HttpRequest/responseType_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/setRequestHeader_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/statusText_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/status_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequestUpload/onError_A01_t02: Skip # Times out. Please triage this failure +LibTest/html/HttpRequestUpload/onLoadEnd_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/HttpRequestUpload/onLoadStart_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/HttpRequestUpload/onLoad_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/IFrameElement/IFrameElement.created_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/attributeChanged_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/attributes_setter_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/blur_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/IFrameElement/borderEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/clone_A01_t02: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/contentWindow_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createFragment_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createFragment_A01_t02: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createFragment_A01_t03: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createShadowRoot_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/getClientRects_A01_t02: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/innerHtml_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/isContentEditable_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/isContentEditable_A01_t01: RuntimeError, Pass # Fails 19 out of 20. +LibTest/html/IFrameElement/leftView_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/marginEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/offsetTo_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/onMouseWheel_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/IFrameElement/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/outerHtml_setter_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/paddingEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/querySelector_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/setInnerHtml_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/tagName_A01_t03: RuntimeError # Please triage this failure +LibTest/html/Node/append_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Node/nodes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Node/nodes_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Node/parent_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Node/previousNode_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/animationFrame_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/Window/close_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/document_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/find_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/find_A03_t01: RuntimeError # Please triage this failure +LibTest/html/Window/find_A06_t01: RuntimeError # Please triage this failure +LibTest/html/Window/moveBy_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/moveTo_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/moveTo_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Window/postMessage_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/postMessage_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Window/requestFileSystem_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/requestFileSystem_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Window/requestFileSystem_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Window/resizeBy_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/Window/resizeTo_A01_t01: RuntimeError # Please triage this failure +LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Please triage this failure +LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/DOMEvents/approved/EventObject.after.dispatchEvenr_t01: RuntimeError # Please triage this failure +WebPlatformTest/DOMEvents/approved/EventObject.multiple.dispatchEvent_t01: RuntimeError # Please triage this failure +WebPlatformTest/DOMEvents/approved/ProcessingInstruction.DOMCharacterDataModified_t01: Skip # Times out. Please triage this failure +WebPlatformTest/DOMEvents/approved/addEventListener.optional.useCapture_t01: RuntimeError # Please triage this failure +WebPlatformTest/Utils/test/asyncTestFail_t01: RuntimeError # Please triage this failure +WebPlatformTest/Utils/test/asyncTestFail_t02: RuntimeError # Please triage this failure +WebPlatformTest/Utils/test/asyncTestTimeout_t01: Skip # Times out. Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A06_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A07_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A08_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t02: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/localName_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/namespace_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/EventTarget/dispatchEvent_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/EventTarget/dispatchEvent_A03_t01: Skip # Times out. Please triage this failure +WebPlatformTest/dom/events/type_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/DOMImplementation-createDocument_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/DOMImplementation-hasFeature_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-adoptNode_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-getElementsByTagName_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-importNode_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Element-childElementCount_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-appendChild_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-appendChild_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-insertBefore_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-isEqualNode_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-replaceChild_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/attributes_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/attributes_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A06_t03: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t03: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A08_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttribute_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-attributes_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-comparePoint_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-comparePoint_t03: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-detach_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-imports/link-import_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-imports/link-import_t02: RuntimeError # Please triage this failure +WebPlatformTest/html-imports/loading-import_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/definitions/template-contents-owner-test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/innerhtml-on-templates/innerhtml_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/creating-an-element-for-the-token/template-owner-document_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/template-element/node-document-changes_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-video_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/browsers/browsing-the-web/read-text/load-text-plain_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-getter_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-setter_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.getElementsByName-namespace_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t05: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t07: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/elements/global-attributes/dataset-delete_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/elements/global-attributes/dataset-get_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/elements/global-attributes/dataset-set_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/document-metadata/styling/LinkStyle_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/error-codes/error_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/cues_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/mode_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formaction_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setRangeText_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-button-element/button-validation_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-datalist-element/datalistelement_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-datalist-element/datalistoptions_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-form-element/form-autocomplete_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-form-element/form-elements-matches_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-form-element/form-elements-nameditem_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/color_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/date_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/datetime-local_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/datetime_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/datetime_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/email_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/hidden_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/input-textselection_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/month_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/password_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/range_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/text_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/time_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/time_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/type-change-state_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/url_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/valueMode_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/week_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-meter-element/meter_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-option-element/option-text-recurse_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-option-element/option-text-spaces_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/grouping-content/the-blockquote-element/grouping-blockquote_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/grouping-content/the-ol-element/ol.start-reflection_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/interactive-elements/the-details-element/toggleEvent_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-close_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-showModal_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/scripting-1/the-script-element/async_t11: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/scripting-1/the-script-element/script-text_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/checked_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/default_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/dir_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/enabled_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/focus_t01: Pass, RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/indeterminate_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/inrange-outofrange_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-table-element/table-insertRow_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-table-element/table-rows_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/syntax/serializing-html-fragments/outerHTML_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t01: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t02: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t03: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t04: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t05: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t06: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol_t00: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-008_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-009_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-010_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-012_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-013_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-010_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t03: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t04: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/inert-html-elements/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/composition/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/custom-pseudo-elements/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/nested-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/rendering-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/reprojection/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-006_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-017_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/shadow-root-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_constructor_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_constructor_t02: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_local_key_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_session_key_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_session_storagearea_t01: Pass, RuntimeError # Fails on 7.1. Please triage this failure +WebPlatformTest/webstorage/event_session_url_t01: Skip # Times out. Please triage this failure + +[ $compiler == dart2js && $runtime == safarimobilesim ] +LayoutTests/fast/alignment/parse-align-items_t01: RuntimeError # Please triage this failure +LayoutTests/fast/alignment/parse-align-self_t01: RuntimeError # Please triage this failure +LayoutTests/fast/alignment/parse-justify-self_t01: RuntimeError # Please triage this failure +LayoutTests/fast/backgrounds/background-repeat-computed-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/backgrounds/repeat/parsing-background-repeat_t01: RuntimeError # Please triage this failure +LayoutTests/fast/borders/border-image-width-numbers-computed-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.fillText.gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.negative_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.veryLarge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.verySmall_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/alpha_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-alphaImageData-behavior_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-arc-negative-radius_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-arc-zero-lineto_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-before-css_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-bezier-same-endpoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blend-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blend-solid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-clipping_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-color-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-fill-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-global-alpha_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-gradient-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-image-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-gradient_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-pattern-over-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-blending-transforms_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-composite-canvas_t01: Skip # Times out on Windows 8. Please triage this failure +LayoutTests/fast/canvas/canvas-composite-stroke-alpha_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-composite-text-alpha_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-currentTransform_t01: RuntimeError # Feature is not implemented +LayoutTests/fast/canvas/canvas-drawImage-scaled-copy-to-self_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-ellipse-360-winding_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-ellipse-negative-radius_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-ellipse-zero-lineto_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-ellipse_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-empty-image-pattern_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-fillStyle-no-quirks-parsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-font-consistency_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-getImageData-invalid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-getImageData-large-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-getImageData-largeNonintegralDimensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-repaint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-imageSmoothingEnabled_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-invalid-fillstyle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-invalid-strokestyle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-large-dimensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-large-fills_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-lineDash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-lose-restore-googol-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-lose-restore-max-int-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-putImageData_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-quadratic-same-endpoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-resetTransform_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-scale-shadowBlur_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-scale-strokePath-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/canvas-setTransform_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/draw-custom-focus-ring_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/drawImage-with-broken-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/drawImage-with-negative-source-destination_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/drawImage-with-valid-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/drawImageFromRect_withToDataURLAsSource_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/fillText-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/getPutImageDataPairTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/pointInPath_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/array-bounds-clamping_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/attrib-location-length-limits_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/bad-arguments-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/buffer-bind-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/buffer-data-array-buffer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/canvas-zero-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias-t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-lost-restored_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/context-lost_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/css-webkit-canvas-repaint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/css-webkit-canvas_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/drawingbuffer-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/error-reporting_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/framebuffer-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/functions-returning-strings_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/get-active-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-enable-enum-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-enum-tests_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-get-calls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-getshadersource_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-getstring_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-object-get-calls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-pixelstorei_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-teximage_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-vertex-attrib_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/gl-vertexattribpointer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/glsl-conformance_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-copies-indices_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/index-validation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/invalid-UTF-16_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/invalid-passed-params_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/is-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/null-object-behaviour_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/null-uniform-location_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/object-deletion-behaviour_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/point-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/program-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/read-pixels-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/renderbuffer-initialization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/shader-precision-format_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgb565_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-canvas_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgb565_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-image-webgl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-input-validation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-2d_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/tex-sub-image-cube-maps_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texImage2DImageDataTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texImageTest_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-active-bind_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-bindings-uneffected-on-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-color-profile_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-complete_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-npot_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/triangle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/uniform-location-length-limits_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/uniform-location_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/uninitialized-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-composite-modes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-exceptions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-specific_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-unprefixed-context-id_t01: RuntimeError # Please triage this failure +LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-generated-content/malformed-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-element-events_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css-generated-content/pseudo-transition_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/display-grid-set-get_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/flex-and-minmax-content-resolution-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/flex-content-resolution-columns_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/flex-content-resolution-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-auto-flow-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-container-change-explicit-grid-recompute-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-border-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-empty-row-column_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-min-max-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-padding-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-padding-margin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-area-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-change-order-auto-flow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-display_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-horiz-bt_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-lr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-rl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-margin-resolution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-item-order-auto-flow-resolution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/grid-template-areas-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/justify-self-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-only_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-grid_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/percent-resolution-grid-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-intrinsic-dimensions/height-property-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css-intrinsic-dimensions/multicol_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/add-remove-stylesheets-at-once-minimal-recalc-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/background-position-serialize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/background-serialize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/border-image-style-length_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/button-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/checked-pseudo-selector_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/collapsed-whitespace-reattach-in-style-recalc_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/computed-offset-with-zoom_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/content/content-none_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/content/content-normal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/content/content-quotes-05_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/css-escaped-identifier_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/css-properties-case-insensitive_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/css3-nth-tokens-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/csstext-of-content-string_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/cursor-parsing-quirks_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/deprecated-flexbox-auto-min-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/display-inline-block-scrollbar_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/draggable-region-parser_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/dynamic-class-backdrop-pseudo_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/first-child-display-change-inverse_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/focus-display-block-inline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-cache-bug_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-unicode-range-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-face-unicode-range-overlap-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/font-shorthand-from-longhands_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/fontface-properties_t01: RuntimeError # Uses FontFace class not defined for this browser +LayoutTests/fast/css/fontfaceset-download-error_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/fontfaceset-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/fontfaceset-loadingdone_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/computed-style-font_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/getComputedStyle-border-radius-shorthand_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/getComputedStyle/getComputedStyle-borderRadius-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/html-attr-case-sensitivity_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/id-or-class-before-stylesheet_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/inherit-initial-shorthand-values_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalid-predefined-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/detach-reattach-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/shadow-host-toggle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/targeted-class-any-pseudo_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/targeted-class-host-pseudo_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/invalidation/toggle-style-inside-shadow-root_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-1_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-3_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-4_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/link-alternate-stylesheet-5_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/media-query-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/media-rule-no-whitespace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/modify-ua-rules-from-javascript_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parse-color-int-or-percent-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-at-rule-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-expr-error-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-object-fit_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-object-position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-page-rule_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-selector-error-recovery_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/parsing-unexpected-eof_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/pseudo-any_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-001_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-002_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-003_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-004_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readonly-pseudoclass-opera-005_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/readwrite-contenteditable-recalc_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/shorthand-setProperty-important_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/sibling-selectors-dynamic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/sticky/parsing-position-sticky_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-nested_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-scoping-nodes-different-order_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-shadow-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-with-dom-operation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-scoped/style-scoped-with-important-rule_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/style-sharing-type-and-readonly_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/webkit-keyframes-errors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css/word-break-user-modify-allowed-values_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last-inherited_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-align-last/getComputedStyle/getComputedStyle-text-align-last_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-line_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-decoration-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-decoration/getComputedStyle/getComputedStyle-text-underline-position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent-inherited_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-indent/getComputedStyle/getComputedStyle-text-indent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/css3-text/css3-text-justify/getComputedStyle/getComputedStyle-text-justify_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/52776_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Attr/direction-attribute-set-and-cleared_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMException/XPathException_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMException/dispatch-event-exception_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-strict-mode-wtih-checkbox_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-user-select-none_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-with-first-letter-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/clone-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/createElementNS-namespace-err_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/title-property-creates-title-element_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/title-property-set-multiple-times_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Document/title-with-multiple-children_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/attribute-uppercase_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/getClientRects_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Element/setAttributeNS-namespace-err_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-autofocus_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-close-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-enabled_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-open_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-return-value_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-scrolled-viewport_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/dialog-show-modal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/inert-does-not-match-disabled-selector_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unfocusable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/inert-node-is-unselectable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/multiple-centered-dialogs_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/non-anchored-dialog-positioning_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/show-modal-focusing-steps_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/synthetic-click-inert_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-relative_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDialogElement/top-layer-position-static_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDocument/active-element-gets-unforcusable_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLDocument/clone-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDocument/set-focus-on-valid-element_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLDocument/title-get_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLDocument/title-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLElement/set-inner-outer-optimization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLElement/spellcheck_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLFormElement/move-option-between-documents_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLImageElement/image-alt-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLImageElement/parse-src_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLInputElement/input-image-alt-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/link-beforeload-recursive_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/prefetch-onerror_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/prefetch-onload_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/prefetch_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/HTMLLinkElement/resolve-url-on-insertion_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/async-inline-script_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLScriptElement/script-set-src_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLSelectElement/selected-index-preserved-when-option-text-changes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/cloneNode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/content-outlives-template-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/contentWrappers_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/custom-element-wrapper-gc_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/cycles-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/cycles_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/inertContents_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/innerHTML-inert_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/no-form-association_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/ownerDocumentXHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/ownerDocument_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/HTMLTemplateElement/xhtml-parsing-and-serialization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-childList_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-options-attributes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/observe-options-character-data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/MutationObserver/weak-callback-gc-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Node/initial-values_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/NodeIterator/NodeIterator-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/bug-19527_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/mutation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-comparePoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-constructor_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-detached-exceptions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-exceptions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-expand_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-insertNode-splittext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-isPointInRange_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/range-on-detached-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Range/surroundContents-for-detached-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/caseID_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/dumpNodeList-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/dumpNodeList-almost-strict_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/dom/SelectorAPI/dumpNodeList_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/css-insert-import-rule-to-shadow-stylesheets_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/css-medialist-item_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/detached-shadow-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/StyleSheet/empty-shadow-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Text/next-element-sibling_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Text/previous-element-sibling_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/TreeWalker/TreeWalker-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/atob-btoa_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/getMatchedCSSRules-nested-rules_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/getMatchedCSSRules-parent-stylesheets_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/window-resize-contents_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/window-resize_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/Window/window-scroll-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/XMLSerializer-attribute-entities_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/XMLSerializer-attribute-namespaces_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/XMLSerializer-doctype2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/XMLSerializer-double-xmlns_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/anchor-without-content_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/assertion-on-node-removal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/attribute-namespaces-get-set_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/characterdata-api-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/client-width-height-quirks_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/comment-not-documentElement_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/createDocumentType-ownerDocument_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/createElementNS-namespace-errors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/attribute-changed-callback_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/constructor-calls-created-synchronously_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/created-callback_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-basic_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-namespace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-on-create-callback_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-svg-extends_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/document-register-type-extensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/element-names_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/element-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/element-upgrade_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/lifecycle-created-createElement-recursion_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/type-extension-undo-assert_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/dom/custom/type-extensions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/unresolved-pseudoclass_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/custom/upgrade-candidate-remove-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/dataset-xhtml_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/dataset_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/document-set-title-mutations_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/document-set-title-no-child-on-empty_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/document-set-title-no-reuse_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/domparser-parsefromstring-mimetype-support_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/elementFromPoint-scaled-scrolled_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/getElementsByClassName/014_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/getElementsByClassName/dumpNodeList_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/horizontal-scrollbar-in-rtl-doesnt-fire-onscroll_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/horizontal-scrollbar-in-rtl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/html-collections-named-getter-mandatory-arg_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/implementation-api-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/importNode-unsupported-node-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/jsDevicePixelRatio_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/location-hash_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/dom/navigatorcontentutils/is-protocol-handler-registered_t01: Skip # API not supported. +LayoutTests/fast/dom/navigatorcontentutils/register-protocol-handler_t01: Skip # API not supported. +LayoutTests/fast/dom/navigatorcontentutils/unregister-protocol-handler_t01: Skip # API not supported. +LayoutTests/fast/dom/node-iterator-with-doctype-root_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/option-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/partial-layout-non-overlay-scrollbars_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/set-innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/access-document-of-detached-stylesheetlist-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/base-in-shadow-tree_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-includer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-element-outside-shadow-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-dynamic-attribute-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-overridden_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/content-reprojection-fallback-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/distribution-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/distribution-for-event-path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/distribution-update-recalcs-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/elementfrompoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/elements-in-frameless-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/event-path-not-in-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/event-path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/form-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/get-distributed-nodes-orphan_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/get-element-by-id-in-shadow-mutation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/getComputedStyle-composed-parent-dirty_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/getelementbyid-in-orphan_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/getelementbyid-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-context-pseudo-class-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-pseudo-class-css-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/host-wrapper-reclaimed_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/insertion-point-list-menu-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/insertion-point-shadow-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/insertion-point-video-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/link-in-shadow-tree_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/no-renderers-for-light-children_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/offsetWidth-host-style-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/olderShadowRoot_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/reinsert-insertion-point_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/remove-and-insert-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/remove-styles-in-shadow-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-aware-shadow-root_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-content-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-disable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-element-inactive_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-element_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-hierarchy-exception_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-removechild-and-blur-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-append_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-js-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-node-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-root-text-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadow-ul-li_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-dynamic-styling_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-for-input-spellcheck_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-for-input-type-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowdom-for-unknown-with-form_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowhost-keyframes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowroot-clonenode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowroot-host_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/shadowroot-keyframes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/sibling-rules-dynamic-changes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/stale-distribution-after-shadow-removal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-insertion-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-of-distributed-node_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-sharing-sibling-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/style-sharing-styles-in-older-shadow-roots_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/suppress-mutation-events-in-shadow-characterdata_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/shadow/title-element-in-shadow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/vertical-scrollbar-when-dir-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dom/xmlserializer-serialize-to-string-exception_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-counter_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-quote_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/crash-generated-text_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/insertAdjacentElement_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/insertAdjacentHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/dynamic/recursive-layout_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/add-event-without-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/clipboard-clearData_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/clipboard-dataTransferItemList_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/dispatch-event-being-dispatched_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/dispatch-event-no-document_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/document-elementFromPoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-creation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-on-created-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-on-xhr-document_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/event-trace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/fire-scroll-event_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/initkeyboardevent-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/invalid-003_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/invalid-004_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/mutation-during-replace-child-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/mutation-during-replace-child_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/scroll-event-does-not-bubble_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/scroll-event-phase_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/events/tabindex-removal-from-focused-element_t01: RuntimeError # Please triage this failure +LayoutTests/fast/events/wheelevent-constructor_t01: RuntimeError # Safarimobilesim does not support WheelEvent +LayoutTests/fast/exclusions/parsing/parsing-wrap-flow_t01: RuntimeError # Please triage this failure +LayoutTests/fast/exclusions/parsing/parsing-wrap-through_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-close-read_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-close-revoke_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-close_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-constructor_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-parts-slice-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/blob-slice-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-abort-in-last-progress_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-methods-illegal-arguments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/file-reader-readystate_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/url-null_t01: RuntimeError # Please triage this failure +LayoutTests/fast/files/xhr-response-blob_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/async-operations_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/directory-entry-to-uri_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-entry-to-uri_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-from-file-entry_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-metadata-after-write_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-abort-continue_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-abort-depth_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-abort_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-empty-blob_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-gc-blob_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-truncate-extend_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/file-writer-write-overlapped_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/filesystem-reference_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/filesystem-unserializable_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/filesystem-uri-origin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/input-access-entries_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-copy_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-get-entry_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-get-metadata_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-get-parent_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-move_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-read-directory_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-remove_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-restricted-chars_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-restricted-names_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/op-restricted-unicode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/read-directory-many_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/read-directory_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-readonly-file-object_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-readonly_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-required-arguments-getdirectory_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-required-arguments-getfile_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/simple-temporary_t01: RuntimeError # Please triage this failure +LayoutTests/fast/filesystem/snapshot-file-with-gc_t01: RuntimeError # Please triage this failure +LayoutTests/fast/flexbox/vertical-box-form-controls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/ValidityState-typeMismatch-email_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/autocomplete_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/autofocus-input-css-style-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/button-baseline-and-collapsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/button/button-disabled-blur_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/clone-input-with-dirty-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/color/color-setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/color/input-value-sanitization-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/control-detach-crash_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datalist/datalist_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datalist/input-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date-multiple-fields/date-multiple-fields-onblur-setvalue-onfocusremoved_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/input-date-validation-message_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/input-valueasdate-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/date/input-valueasnumber-date_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal-multiple-fields/datetimelocal-multiple-fields-change-layout-by-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/forms/file/file-input-capture_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/focus-style-pending_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/forms/form-attribute_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-appearance-elementFromPoint_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-inputmode_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-select-webkit-user-select-none_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-type-change3_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-value-sanitization_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/interactive-validation-assertion-by-validate-twice_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/forms/interactive-validation-attach-assertion_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/forms/interactive-validation-select-crash_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/forms/listbox-selection-2_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/menulist-disabled-selected-option_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/menulist-selection-reset_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/menulist-submit-without-selection_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/multiple-selected-options-innerHTML_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/option-change-single-selected_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/option-strip-unicode-spaces_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/plaintext-mode-1_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/search-popup-crasher_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/select-clientheight-large-size_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/select-clientheight-with-multiple-attr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/selection-direction_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/selection-wrongtype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/setrangetext_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/shadow-tree-exposure_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-maxlength_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-paste-newline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-selection-preservation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/forms/textarea-set-defaultvalue-after-value_t01: RuntimeError # Please triage this failure +LayoutTests/fast/html/hidden-attr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/html/imports/import-element-removed-flag_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/html/imports/import-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/html/select-dropdown-consistent-background-color_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/boundingBox-with-continuation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/continuation-inlines-inserted-in-reverse-after-block_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/inline-position-top-align_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/inline-relative-offset-boundingbox_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/inline-with-empty-inline-children_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/out-of-flow-objects-and-whitespace-after-empty-inline_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/parent-inline-element-padding-contributes-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/inline/positioned-element-padding-contributes-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/innerHTML/innerHTML-custom-tag_t01: RuntimeError # Please triage this failure +LayoutTests/fast/layers/normal-flow-hit-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/lists/list-style-position-inside_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/about-blank-hash-change_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/loader/about-blank-hash-kept_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/loader/hashchange-event-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/onhashchange-attribute-listeners_t01: Skip # Times out. Please triage this failure +LayoutTests/fast/loader/scroll-position-restored-on-back_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/scroll-position-restored-on-reload-at-load-event_t01: RuntimeError # Please triage this failure +LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: RuntimeError # Please triage this failure +LayoutTests/fast/masking/parsing-clip-path-shape_t01: RuntimeError # Please triage this failure +LayoutTests/fast/masking/parsing-mask-source-type_t01: RuntimeError # Please triage this failure +LayoutTests/fast/masking/parsing-mask_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/matchmedium-query-api_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/media-query-list-syntax_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/media-query-list_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-append-delete_t01: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-js-media-except_t02: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-js-media-except_t03: RuntimeError # Please triage this failure +LayoutTests/fast/media/mq-parsing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/mediastream/RTCIceCandidate_t01: Skip # Please triage this failure +LayoutTests/fast/mediastream/RTCPeerConnection_t01: Skip # Issue 23475 +LayoutTests/fast/mediastream/constructors_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-short-trailing-empty-block_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-trailing-border_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/balance-trailing-border_t02: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/break-after-always-bottom-margin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/break-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/columns-shorthand-parsing_t02: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/cssom-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/float-truncation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-above-or-below_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-end-of-column-with-line-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-end-of-column_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-float_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/hit-test-gap-between-pages-flipped_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance-maxheight_t02: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance_t07: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance_t08: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance_t09: Skip # Times out. Please triage this failure +LayoutTests/fast/multicol/newmulticol/balance_t10: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/vertical-lr/break-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/vertical-lr/float-truncation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/vertical-rl/break-properties_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/vertical-rl/float-truncation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/widows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/multicol/widows_t02: RuntimeError # Please triage this failure +LayoutTests/fast/overflow/child-100percent-height-inside-fixed-container-with-overflow-auto_t01: RuntimeError # Please triage this failure +LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: RuntimeError # Please triage this failure +LayoutTests/fast/overflow/scrollbar-restored_t01: RuntimeError # Please triage this failure +LayoutTests/fast/parser/foster-parent-adopted_t02: RuntimeError # Please triage this failure +LayoutTests/fast/parser/fragment-parser-doctype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/parser/innerhtml-with-prefixed-elements_t01: RuntimeError # Please triage this failure +LayoutTests/fast/parser/pre-first-line-break_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/available-height-for-content_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/container-width-zero_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/preferred-widths_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/replaced/table-percent-height-text-controls_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/table-percent-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/replaced/table-percent-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/ruby/ruby-line-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/scrolling/scroll-element-into-view_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-image-threshold_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-lengths_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-margin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-outside-none_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-outside_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/parsing/parsing-shape-property-aliases_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-diamond-margin-polygon_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-left_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-ellipse-margin-right_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t02: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-left_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-inset-rounded-different-writing-modes-right_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/shapes/shape-outside-floats/shape-outside-rounded-boxes_t02: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-utterance-uses-voice_t01: RuntimeError # Please triage this failure +LayoutTests/fast/speechsynthesis/speech-synthesis-voices_t01: RuntimeError # Please triage this failure +LayoutTests/fast/storage/disallowed-storage_t01: RuntimeError # Please triage this failure +LayoutTests/fast/storage/storage-disallowed-in-data-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/boundingclientrect-subpixel-margin_t01: Skip # Issue 747 +LayoutTests/fast/sub-pixel/computedstylemargin_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/cssom-subpixel-precision_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/float-list-inside_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/inline-block-with-padding_t01: Skip # Issue 747 +LayoutTests/fast/sub-pixel/layout-boxes-with-zoom_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/sub-pixel/shadows-computed-style_t01: RuntimeError # Please triage this failure +LayoutTests/fast/sub-pixel/size-of-span-with-different-positions_t01: Skip # Issue 747 +LayoutTests/fast/svg/getbbox_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/tabindex-focus_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-angle_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-integer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-length_t01: RuntimeError # Please triage this failure +LayoutTests/fast/svg/whitespace-number_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/absolute-table-percent-lengths_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/caption-orthogonal-writing-mode-sizing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/css-table-max-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/css-table-max-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/css-table-width-with-border-padding_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/fixed-table-layout-width-change_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/hittest-tablecell-right-edge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/html-table-width-max-width-constrained_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/incorrect-colgroup-span-values_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/large-shrink-wrapped-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/margins-perpendicular-containing-block_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-css-block-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-css-inline-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-html-block-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/min-width-html-inline-table_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/table/nested-tables-with-div-offset_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/padding-height-and-override-height_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/switch-table-layout-dynamic-cells_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/switch-table-layout-multiple-section_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/switch-table-layout_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-cell-offset-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-rowspan-cell-with-empty-cell_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-sections-border-spacing_t01: RuntimeError # Please triage this failure +LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-case-folding_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-russian_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-soft-hyphen_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/find-spaces_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/font-ligature-letter-spacing_t01: Pass, RuntimeError # Please triage this failure +LayoutTests/fast/text/font-ligatures-linebreak-word_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/font-ligatures-linebreak_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/glyph-reordering_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/cjk-segmentation_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/iso-8859-8_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/listbox-width-rtl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/international/thai-offsetForPosition-inside-character_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/ipa-tone-letters_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/line-break-after-question-mark_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/line-breaks-after-hyphen-before-number_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/offsetForPosition-cluster-at-zero_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/remove-zero-length-run_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-ltr_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-pixel_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-rtl_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-vertical_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/sub-pixel/text-scaling-webfont_t01: RuntimeError # Please triage this failure +LayoutTests/fast/text/text-combine-shrink-to-fit_t01: RuntimeError # Please triage this failure +LayoutTests/fast/tokenizer/entities_t01: RuntimeError # Please triage this failure +LayoutTests/fast/tokenizer/entities_t02: RuntimeError # Please triage this failure +LayoutTests/fast/tokenizer/entities_t03: RuntimeError # Please triage this failure +LayoutTests/fast/transforms/bounding-rect-zoom_t01: RuntimeError # Please triage this failure +LayoutTests/fast/transforms/hit-test-large-scale_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/anchor_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/file-http-base_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/file_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/host-lowercase-per-scheme_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/host_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/idna2003_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/idna2008_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/invalid-urls-utf8_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/ipv4_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/ipv6_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/path_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/port_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/query_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/relative-unix_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/relative-win_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/relative_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/safari-extension_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/segments-from-data-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/segments_t01: RuntimeError # Please triage this failure +LayoutTests/fast/url/standard-url_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/auto-sizing-orthogonal-flows_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/table-hit-test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/writing-mode/vertical-font-vmtx-units-per-em_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-get_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-before-open-sync-request_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-sync-request_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Borrowed/namespace-nodes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_core_functions_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_node_test_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_node_test_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/4XPath/Core/test_parser_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/xpath/ambiguous-operators_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/attr-namespace_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/ensure-null-namespace_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/implicit-node-args_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/invalid-resolver_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/node-name-case-sensitivity_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/node-name-case-sensitivity_t02: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/position_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/abbreviations_t01: RuntimeError # Dartium JSInterop failure +LayoutTests/fast/xpath/py-dom-xpath/axes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/data_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/expressions_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/py-dom-xpath/paths_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/reverse-axes_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xpath/xpath-template-element_t01: RuntimeError # Please triage this failure +LayoutTests/fast/xsl/default-html_t01: RuntimeError # Please triage this failure +LibTest/async/Future/doWhile_A05_t01: RuntimeError # Please triage this failure +LibTest/async/Future/forEach_A04_t02: RuntimeError # Please triage this failure +LibTest/async/Stream/timeout_A01_t01: Pass, RuntimeError # Please triage this failure +LibTest/async/Stream/timeout_A03_t01: Pass, RuntimeError # Please triage this failure +LibTest/async/Stream/timeout_A04_t01: Pass, RuntimeError # Please triage this failure +LibTest/core/List/List_A02_t01: RuntimeError # Please triage this failure +LibTest/core/List/List_A03_t01: RuntimeError # Please triage this failure +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 +LibTest/core/double/roundToDouble_A01_t01: RuntimeError # Please triage this failure +LibTest/core/double/round_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/compareTo_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/operator_left_shift_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/operator_remainder_A01_t03: RuntimeError # Please triage this failure +LibTest/core/int/operator_truncating_division_A01_t02: RuntimeError # Please triage this failure +LibTest/core/int/remainder_A01_t01: RuntimeError # Please triage this failure +LibTest/core/int/remainder_A01_t03: RuntimeError # Please triage this failure +LibTest/core/int/toRadixString_A01_t01: RuntimeError # Please triage this failure +LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t03: RuntimeError # Please triage this failure +LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t06: RuntimeError # Please triage this failure +LibTest/html/Document/childNodes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Document/clone_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Document/clone_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Document/getElementsByTagName_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Document/securityPolicy_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/Element.tag_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/attributeChanged_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/borderEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/contentEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/dataset_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Element/enteredView_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/getAttributeNS_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/getAttributeNS_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Element/getBoundingClientRect_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/getClientRects_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/isContentEditable_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/isContentEditable_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Element/isTagSupported_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/isTagSupported_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/leftView_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/marginEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/mouseWheelEvent_A01_t01: Skip # Safari mobile sim does not support WheelEvent +LibTest/html/Element/onMouseWheel_A01_t01: Skip # Safari mobile sim does not support WheelEvent +LibTest/html/Element/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/paddingEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Element/querySelectorAll_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/replaceWith_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Element/tagName_A01_t03: RuntimeError # Please triage this failure +LibTest/html/Element/transitionEndEvent_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/getAllResponseHeaders_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/getResponseHeader_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/getString_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/onError_A01_t02: Skip # Times out. Please triage this failure +LibTest/html/HttpRequest/request_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/responseText_A01_t02: Skip # Times out. Please triage this failure +LibTest/html/HttpRequest/responseType_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/responseType_A01_t02: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/setRequestHeader_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/statusText_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequest/status_A01_t01: RuntimeError # Please triage this failure +LibTest/html/HttpRequestUpload/onError_A01_t02: Skip # Times out. Please triage this failure +LibTest/html/HttpRequestUpload/onLoadEnd_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/HttpRequestUpload/onLoadStart_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/HttpRequestUpload/onLoad_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/IFrameElement/IFrameElement.created_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/attributeChanged_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/attributes_setter_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/blur_A01_t01: Skip # Times out. Please triage this failure +LibTest/html/IFrameElement/borderEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/clone_A01_t02: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/contentWindow_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createFragment_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createFragment_A01_t02: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createFragment_A01_t03: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/createShadowRoot_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/getNamespacedAttributes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/innerHtml_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/isContentEditable_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/leftView_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/marginEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/mouseWheelEvent_A01_t01: Skip # Safari mobile sim does not support WheelEvent +LibTest/html/IFrameElement/offsetTo_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/onMouseWheel_A01_t01: Skip # Safari mobile sim does not support WheelEvent +LibTest/html/IFrameElement/onTransitionEnd_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/outerHtml_setter_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/paddingEdge_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/querySelector_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/setInnerHtml_A01_t01: RuntimeError # Please triage this failure +LibTest/html/IFrameElement/tagName_A01_t03: RuntimeError # Please triage this failure +LibTest/html/Node/append_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Node/nodes_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Node/nodes_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Node/parent_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Node/previousNode_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/close_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/document_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/find_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/find_A03_t01: RuntimeError # Please triage this failure +LibTest/html/Window/find_A06_t01: RuntimeError # Please triage this failure +LibTest/html/Window/moveBy_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/moveTo_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/moveTo_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Window/open_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/postMessage_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/postMessage_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Window/requestFileSystem_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/requestFileSystem_A01_t02: RuntimeError # Please triage this failure +LibTest/html/Window/requestFileSystem_A02_t01: RuntimeError # Please triage this failure +LibTest/html/Window/resizeBy_A01_t01: RuntimeError # Please triage this failure +LibTest/html/Window/resizeTo_A01_t01: RuntimeError # Please triage this failure +LibTest/typed_data/Float32x4List/Float32x4List.view_A06_t01: RuntimeError # Please triage this failure +LibTest/typed_data/Int32x4/operator_OR_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/DOMEvents/approved/EventObject.after.dispatchEvenr_t01: RuntimeError # Please triage this failure +WebPlatformTest/DOMEvents/approved/EventObject.multiple.dispatchEvent_t01: RuntimeError # Please triage this failure +WebPlatformTest/DOMEvents/approved/ProcessingInstruction.DOMCharacterDataModified_t01: Skip # Times out. Please triage this failure +WebPlatformTest/DOMEvents/approved/addEventListener.optional.useCapture_t01: RuntimeError # Please triage this failure +WebPlatformTest/Utils/test/asyncTestFail_t01: RuntimeError # Please triage this failure +WebPlatformTest/Utils/test/asyncTestFail_t02: RuntimeError # Please triage this failure +WebPlatformTest/Utils/test/asyncTestTimeout_t01: Skip # Times out. Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A06_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A07_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/concepts/type_A08_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElementNS_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/createElement_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t02: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/isAttribute_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/localName_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/custom-elements/instantiating/namespace_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/EventTarget/dispatchEvent_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/EventTarget/dispatchEvent_A03_t01: Skip # Times out. Please triage this failure +WebPlatformTest/dom/events/type_A01_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/DOMImplementation-createDocumentType_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/DOMImplementation-createDocument_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/DOMImplementation-hasFeature_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-adoptNode_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-createElementNS_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-getElementsByTagName_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Document-importNode_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Element-childElementCount_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-appendChild_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-appendChild_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-insertBefore_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-isEqualNode_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/Node-replaceChild_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/attributes_A04_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/attributes_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A05_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A06_t03: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A07_t03: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A08_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttributeNS_A09_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttribute_A02_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/nodes/attributes/setAttribute_A03_t01: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-attributes_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-comparePoint_t02: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-comparePoint_t03: RuntimeError # Please triage this failure +WebPlatformTest/dom/ranges/Range-detach_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-imports/link-import_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-imports/link-import_t02: RuntimeError # Please triage this failure +WebPlatformTest/html-imports/loading-import_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/additions-to-the-steps-to-clone-a-node/template-clone-children_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/additions-to-the-steps-to-clone-a-node/templates-copy-document-owner_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/definitions/template-contents-owner-document-type_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/definitions/template-contents-owner-test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/definitions/template-contents_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/innerhtml-on-templates/innerhtml_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-foster-parenting/template-is-a-foster-parent-element_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-foster-parenting/template-is-not-a-foster-parent-element_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-body-token_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-frameset-token_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-head-token_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/ignore-html-token_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-body-insertion-mode/start-tag-body_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/additions-to-the-in-table-insertion-mode/end-tag-table_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/appending-to-a-template/template-child-nodes_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/parsing-html-templates/creating-an-element-for-the-token/template-owner-document_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/serializing-html-templates/outerhtml_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/template-element/content-attribute_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/template-element/node-document-changes_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/template-element/template-as-a-descendant_t01: RuntimeError # In Safari mobile sim, setting innerHTML on a Frameset element does nothing. +WebPlatformTest/html-templates/template-element/template-content-node-document_t01: RuntimeError # Please triage this failure +WebPlatformTest/html-templates/template-element/template-content_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-video_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/browsers/browsing-the-web/read-text/load-text-plain_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-getter_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.body-setter_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.getElementsByName-namespace_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t05: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/document.title_t07: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/documents/dom-tree-accessors/nameditem_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/elements/global-attributes/dataset-delete_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/elements/global-attributes/dataset-get_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/dom/elements/global-attributes/dataset-set_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/document-metadata/styling/LinkStyle_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/error-codes/error_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/HTMLElement/HTMLTrackElement/src_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/cues_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/mode_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formAction_document_address_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/attributes-common-to-form-controls/formaction_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/textfieldselection/selection_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setRangeText_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-button-element/button-validation_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-datalist-element/datalistelement_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-datalist-element/datalistoptions_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-fieldset-element/disabled_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-form-element/form-autocomplete_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-form-element/form-elements-matches_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-form-element/form-elements-nameditem_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/color_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/date_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/datetime-local_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/datetime_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/datetime_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/email_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/hidden_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/input-textselection_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/month_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/password_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/range_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/text_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/time_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/time_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/type-change-state_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/url_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/valueMode_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-input-element/week_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-meter-element/meter_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-option-element/option-text-recurse_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/forms/the-option-element/option-text-spaces_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/grouping-content/the-blockquote-element/grouping-blockquote_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/interactive-elements/the-details-element/toggleEvent_t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-close_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/interactive-elements/the-dialog-element/dialog-showModal_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/scripting-1/the-script-element/async_t11: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/scripting-1/the-script-element/script-text_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/checked_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/default_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/dir_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/enabled_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/focus_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/indeterminate_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/inrange-outofrange_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/selectors/pseudo-classes/valid-invalid_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-table-element/table-insertRow_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-table-element/table-rows_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/semantics/tabular-data/the-tr-element/rowIndex_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t02: RuntimeError # Please triage this failure +WebPlatformTest/html/syntax/serializing-html-fragments/outerHTML_t01: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t01: Skip # Times out. Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t02: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t03: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t04: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t05: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol/t06: RuntimeError # Please triage this failure +WebPlatformTest/html/webappapis/system-state-and-capabilities/the-navigator-object/protocol_t00: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-008_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-009_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-010_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-011_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-012_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-attributes/test-013_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/shadowroot-object/shadowroot-methods/test-010_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t03: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t04: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/html-forms/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/html-elements-in-shadow-trees/inert-html-elements/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/composition/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/custom-pseudo-elements/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/hosting-multiple-shadow-trees/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/distribution-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/nested-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/rendering-shadow-trees/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/reprojection/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-003_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-004_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-006_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/satisfying-matching-criteria/test-017_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/dom-tree-accessors-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-002_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/shadow-root-001_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-005_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: RuntimeError # Please triage this failure +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-011_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_constructor_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_constructor_t02: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_local_key_t01: RuntimeError # Please triage this failure +WebPlatformTest/webstorage/event_session_key_t01: RuntimeError # Please triage this failure + +[ $compiler == dart2js && $browser ] +LayoutTests/fast/css-generated-content/bug91547_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dom/HTMLButtonElement/change-type_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors_t01: RuntimeError # Issue 747 +LayoutTests/fast/dom/StyleSheet/discarded-sheet-owner-null_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dom/css-cached-import-rule_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dom/cssTarget-crash_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dom/empty-hash-and-search_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dom/shadow/form-in-shadow_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/dynamic/insertAdjacentHTML_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/filesystem/file-after-reload-crash_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/date/date-interactive-validation-required_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/datetimelocal/datetimelocal-interactive-validation-required_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/form-submission-create-crash_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/formmethod-attribute-button-html_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/formmethod-attribute-input-2_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/formmethod-attribute-input-html_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/missing-action_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/submit-form-with-dirname-attribute-with-ancestor-dir-attribute_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/submit-form-with-dirname-attribute-with-nonhtml-ancestor_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/submit-form-with-dirname-attribute_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/submit-nil-value-field-assert_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/forms/textarea-submit-crash_t01: Skip # Test reloads itself. Issue 18558. +LayoutTests/fast/html/adjacent-html-context-element_t01: RuntimeError # Issue 747 +LayoutTests/fast/lists/list-style-position-inside_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/media/mq-parsing_t01: Pass, RuntimeError # Issue 747, False passes on Firefox, but trying to keep these grouped with the issue. +LayoutTests/fast/mediastream/RTCPeerConnection-AddRemoveStream_t01: Skip # Passes on Safari, Issue 23475 +LayoutTests/fast/mediastream/getusermedia_t01: Skip # Please triage this failure. +LayoutTests/fast/multicol/balance-unbreakable_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/column-width-zero_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance-images_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance-maxheight_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t02: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t04: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t05: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t06: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t07: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t08: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t09: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/newmulticol/balance_t10: Pass, RuntimeError # Issue 747, I don't understand how, but sometimes passes. +LayoutTests/fast/multicol/orphans-relayout_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/multicol/widows_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/overflow/overflow-rtl-vertical-origin_t01: Pass, RuntimeError # Issue 747, False passes on Firefox, but trying to keep these grouped with the issue. +LayoutTests/fast/overflow/replaced-child-100percent-height-inside-fixed-container-with-overflow-auto_t01: Pass, RuntimeError # Issue 747, False pass on Safari +LayoutTests/fast/parser/parse-wbr_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor-vertical-lr_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor_t01: Pass # Issue 747, False pass +LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor-vertical-lr_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass +LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass +LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass. +LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height_t01: RuntimeError, Pass # Issue 747, Spurious intermittent pass +LayoutTests/fast/ruby/parse-rp_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/sub-pixel/replaced-element-baseline_t01: Pass, RuntimeError # Issue 747, Fails on Safari, false pass on others +LayoutTests/fast/table/anonymous-table-section-removed_t01: Skip # Issue 747 +LayoutTests/fast/table/col-width-span-expand_t01: Skip # Issue 747 +LayoutTests/fast/table/fixed-table-layout-width-change_t01: Pass, RuntimeError # Issue 747, False passes on Firefox +LayoutTests/fast/table/hittest-tablecell-bottom-edge_t01: Skip # Issue 747 +LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge_t01: Skip # Issue 747 +LayoutTests/fast/table/html-table-width-max-width-constrained_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/table/margins-flipped-text-direction_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/table/min-max-width-preferred-size_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/table/table-width-exceeding-max-width_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/text/font-fallback-synthetic-italics_t01: RuntimeError # Issue 747 +LayoutTests/fast/text/font-fallback-synthetic-italics_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/text/font-ligatures-linebreak-word_t01: Skip # Issue 747 +LayoutTests/fast/text/font-ligatures-linebreak_t01: Skip # Issue 747 +LayoutTests/fast/text/glyph-reordering_t01: Pass, RuntimeError # Issue 747, This is a false pass. The font gets sanitized, so whether it works or not probably depends on default sizes. +LayoutTests/fast/text/international/rtl-text-wrapping_t01: Pass # Issue 747, This is a false pass. All the content gets sanitized, so there's nothing to assert fail on. If the code did anything it would fail. +LayoutTests/fast/text/ipa-tone-letters_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/text/line-break-after-empty-inline-hebrew_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/text/regional-indicator-symobls_t01: Pass, Fail # Issue 747 +LayoutTests/fast/transforms/bounding-rect-zoom_t01: RuntimeError, Pass # Issue 747, Erratic, but only passes because divs have been entirely removed. +LayoutTests/fast/transforms/scrollIntoView-transformed_t01: Pass, RuntimeError # Issue 747, False passes on Firefox. +LayoutTests/fast/transforms/transform-hit-test-flipped_t01: Pass, RuntimeError # Issue 747, Passes on Firefox, but is clearly not testing what it's trying to test. +LayoutTests/fast/writing-mode/percentage-margins-absolute-replaced_t01: Pass, RuntimeError # Issue 747 +LayoutTests/fast/writing-mode/positionForPoint_t01: Pass, RuntimeError # Issue 747 +LibTest/html/IFrameElement/appendHtml_A01_t01: Pass, RuntimeError # Issue 23462 +LibTest/html/IFrameElement/appendHtml_A01_t02: Pass, RuntimeError # Issue 23462 +WebPlatformTest/html/semantics/document-metadata/styling/LinkStyle_t01: Pass, RuntimeError # Issue 747 +WebPlatformTest/html/semantics/forms/the-form-element/form-nameditem_t01: RuntimeError # Issue 747 +WebPlatformTest/html/semantics/grouping-content/the-ol-element/ol.start-reflection_t02: Skip # Issue 747 +WebPlatformTest/html/semantics/scripting-1/the-script-element/async_t11: Skip # Issue 747 +WebPlatformTest/html/semantics/selectors/pseudo-classes/disabled_t01: Pass, RuntimeError # Issue 747, Spurious pass +WebPlatformTest/html/semantics/selectors/pseudo-classes/link_t01: Pass, RuntimeError # Issue 747 +WebPlatformTest/html/syntax/parsing/Document.getElementsByTagName-foreign_t01: RuntimeError, Pass # Issue 747 + +[ $compiler == dart2js && $browser && $fast_startup ] +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-001_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/attributes/test-004_t02: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-element-interface/methods/elements-001_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-004_t02: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-content-html-element/test-006_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-003_t02: Fail # custom elements not supported +WebPlatformTest/shadow-dom/elements-and-dom-objects/the-shadow-html-element/test-005_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: Fail # custom elements not supported +WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/html-elements-and-their-shadow-trees/test-003_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/custom-pseudo-elements/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/distributed-pseudo-element/test-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/lower-boundary-encapsulation/test-004_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/ownerdocument-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-001_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/selectors-api-002_t01: Fail # please triage +WebPlatformTest/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-009_t01: Fail # please triage + +[ $compiler == dart2js && $checked ] +Language/Errors_and_Warnings/static_warning_t02: RuntimeError # Please triage this failure +Language/Errors_and_Warnings/static_warning_t03: RuntimeError # Please triage this failure +Language/Errors_and_Warnings/static_warning_t04: RuntimeError # Please triage this failure +Language/Errors_and_Warnings/static_warning_t05: RuntimeError # Please triage this failure +Language/Errors_and_Warnings/static_warning_t06: RuntimeError # Please triage this failure +Language/Expressions/Assignment/Compound_Assignment/null_aware_static_warning_super_t01/01: Fail # Please triage this failure +Language/Expressions/Assignment/Compound_Assignment/null_aware_static_warning_variable_t01/01: Fail # Please triage this failure +Language/Expressions/Assignment/super_assignment_dynamic_error_t01: RuntimeError # Please triage this failure +Language/Expressions/Assignment/super_assignment_static_warning_t04/01: Fail # Please triage this failure +Language/Expressions/Function_Expressions/static_type_dynamic_async_t03: RuntimeError # Please triage this failure +Language/Expressions/Function_Expressions/static_type_dynamic_asyncs_t03: RuntimeError # Please triage this failure +Language/Expressions/Function_Expressions/static_type_dynamic_syncs_t03: RuntimeError # Please triage this failure +Language/Expressions/Function_Expressions/static_type_form_3_async_t03: RuntimeError # Please triage this failure +Language/Expressions/Function_Expressions/static_type_form_3_asyncs_t03: RuntimeError # Please triage this failure +Language/Expressions/Function_Expressions/static_type_form_3_syncs_t03: RuntimeError # Please triage this failure +Language/Expressions/If_null_Expressions/static_type_t01: RuntimeError # Please triage this failure +Language/Expressions/If_null_Expressions/static_type_t02: RuntimeError # Please triage this failure +Language/Functions/async_return_type_t01: RuntimeError # Please triage this failure +Language/Functions/generator_return_type_t01: RuntimeError # Please triage this failure +Language/Functions/generator_return_type_t02: RuntimeError # Please triage this failure +Language/Statements/Assert/execution_t03: RuntimeError # Please triage this failure +Language/Statements/Assert/execution_t11: RuntimeError # Please triage this failure +Language/Statements/Return/runtime_type_t04: RuntimeError # Issue 26584 +Language/Statements/Switch/execution_t01: Fail # Missing type check in switch expression +Language/Statements/Switch/type_t01: RuntimeError # Issue 16089 +Language/Types/Dynamic_Type_System/malbounded_type_error_t01: RuntimeError # Issue 21088 +Language/Types/Parameterized_Types/malbounded_t06: RuntimeError # Issue 21088 +Language/Types/Static_Types/malformed_type_t01: RuntimeError # Issue 21089 +LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Skip # Timesout. Please triage this failure. +LibTest/core/Map/Map_class_A01_t04: Slow, Pass # Please triage this failure +LibTest/core/Uri/Uri_A06_t03: Slow, Pass # Please triage this failure +LibTest/math/Point/operator_mult_A02_t01: RuntimeError # Issue 1533 + +[ $compiler == dart2js && !$checked && $enable_asserts ] +Language/Statements/Assert/execution_t01: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/execution_t02: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/execution_t03: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/execution_t04: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/execution_t05: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/execution_t06: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/execution_t11: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/production_mode_t01: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/type_t02: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/type_t03: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/type_t04: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/type_t05: SkipByDesign # Unspec'd feature. +Language/Statements/Assert/type_t06: SkipByDesign # Unspec'd feature. + +[ $compiler == dart2js && $fast_startup ] +Language/Classes/Instance_Methods/Operators/unary_minus: Fail # mirrors not supported +Language/Expressions/Null/instance_of_class_null_t01: Fail # mirrors not supported +Language/Metadata/before_class_t01: Fail # mirrors not supported +Language/Metadata/before_ctor_t01: Fail # mirrors not supported +Language/Metadata/before_ctor_t02: Fail # mirrors not supported +Language/Metadata/before_export_t01: Fail # mirrors not supported +Language/Metadata/before_factory_t01: Fail # mirrors not supported +Language/Metadata/before_function_t01: Fail # mirrors not supported +Language/Metadata/before_function_t02: Fail # mirrors not supported +Language/Metadata/before_function_t03: Fail # mirrors not supported +Language/Metadata/before_function_t04: Fail # mirrors not supported +Language/Metadata/before_function_t05: Fail # mirrors not supported +Language/Metadata/before_function_t06: Fail # mirrors not supported +Language/Metadata/before_function_t07: Fail # mirrors not supported +Language/Metadata/before_import_t01: Fail # mirrors not supported +Language/Metadata/before_library_t01: Fail # mirrors not supported +Language/Metadata/before_param_t01: Fail # mirrors not supported +Language/Metadata/before_param_t02: Fail # mirrors not supported +Language/Metadata/before_param_t03: Fail # mirrors not supported +Language/Metadata/before_param_t04: Fail # mirrors not supported +Language/Metadata/before_param_t05: Fail # mirrors not supported +Language/Metadata/before_param_t06: Fail # mirrors not supported +Language/Metadata/before_param_t07: Fail # mirrors not supported +Language/Metadata/before_param_t08: Fail # mirrors not supported +Language/Metadata/before_param_t09: Fail # mirrors not supported +Language/Metadata/before_type_param_t01: Fail # mirrors not supported +Language/Metadata/before_typedef_t01: Fail # mirrors not supported +Language/Metadata/before_variable_t01: Fail # mirrors not supported +Language/Metadata/before_variable_t02: Fail # mirrors not supported +Language/Metadata/compilation_t01: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t02: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t03: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t04: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t05: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t06: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t07: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t08: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t09: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t10: Pass # mirrors not supported, fails for the wrong reason +Language/Metadata/compilation_t11: Pass # mirrors not supported, fails for the wrong reason +WebPlatformTest/shadow-dom/testcommon: Fail # mirrors not supported [ $compiler == dart2js && $host_checked ] Language/Types/Function_Types/call_t01: Crash # Issue 28894 + +[ $compiler == dart2js && $jscl ] +LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Fail, Pass # issue 3333 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError, OK # This is not rejected by V8. Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError # Issue 22200 +LibTest/core/int/compareTo_A01_t01: RuntimeError, OK # Requires big int. +LibTest/core/int/hashCode_A01_t01: RuntimeError, OK # co19 testing missing assertion. +LibTest/core/int/isEven_A01_t01: RuntimeError, OK # Not in API. +LibTest/core/int/isOdd_A01_t01: RuntimeError, OK # Not in API. +LibTest/core/int/operator_left_shift_A01_t01: RuntimeError, OK # Requires big int. +LibTest/core/int/operator_remainder_A01_t03: RuntimeError, OK # Leg only has double. +LibTest/core/int/operator_truncating_division_A01_t02: RuntimeError, OK # Leg only has double. +LibTest/core/int/remainder_A01_t01: RuntimeError, OK # Requires big int. +LibTest/core/int/remainder_A01_t03: RuntimeError, OK # Leg only has double. +LibTest/core/int/toDouble_A01_t01: RuntimeError, OK # Requires big int. +LibTest/core/int/toRadixString_A01_t01: RuntimeError, OK # Bad test: uses Expect.fail, Expect.throws, assumes case of result, and uses unsupported radixes. + +[ $compiler == dart2js && $minified ] +LibTest/typed_data/Float32List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float32x4List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Float64List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Int16List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Int32List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Int8List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint16List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint32List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint8ClampedList/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure +LibTest/typed_data/Uint8List/runtimeType_A01_t01: Fail # co19-roll r559: Please triage this failure + diff --git a/tests/co19/co19-kernel.status b/tests/co19/co19-kernel.status index 3c26710edf2..d610d6b5c14 100644 --- a/tests/co19/co19-kernel.status +++ b/tests/co19/co19-kernel.status @@ -2,6 +2,58 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. +# dartk: JIT failures +[ $compiler == dartk ] +Language/Expressions/Instance_Creation/Const/canonicalized_t05: RuntimeError +Language/Expressions/Object_Identity/string_t01: RuntimeError +Language/Expressions/Strings/adjacent_strings_t02: RuntimeError +Language/Metadata/before_type_param_t01: RuntimeError +LibTest/isolate/Isolate/spawnUri_A01_t03: Pass, Timeout + +# dartk: precompilation failures +[ $compiler == dartkp ] +Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t02: Pass +Language/Expressions/Constants/bitwise_operators_t05: Crash +Language/Expressions/Constants/depending_on_itself_t01: MissingCompileTimeError +Language/Expressions/Constants/depending_on_itself_t02: MissingCompileTimeError +Language/Expressions/Constants/logical_expression_t04: Crash +Language/Overview/Scoping/hiding_declaration_t11: Crash +Language/Overview/Scoping/hiding_declaration_t11: Pass +Language/Overview/Scoping/hiding_declaration_t12: Crash +Language/Overview/Scoping/hiding_declaration_t12: Pass + +# dartk: JIT failures (debug) +[ $compiler == dartk && $mode == debug ] +LibTest/isolate/Isolate/spawnUri_A01_t04: Pass, Slow, Timeout + +# dartk: precompilation failures (debug) +[ $compiler == dartkp && $mode == debug ] +Language/Functions/External_Functions/not_connected_to_a_body_t01: Crash +Language/Statements/For/Asynchronous_For_in/execution_t04: Crash + +[ $mode == debug && ($compiler == dartk || $compiler == dartkp) ] +Language/Classes/Constructors/Generative_Constructors/execution_t04: Crash +Language/Classes/Instance_Variables/constant_t01: Crash + +# dartk: checked mode failures +[ $checked && ($compiler == dartk || $compiler == dartkp) ] +Language/Classes/Constructors/Factories/arguments_type_t01: RuntimeError +Language/Classes/Constructors/Factories/function_type_t02: Fail # dartbug.com/30527 +Language/Expressions/Constants/exception_t04: Pass +Language/Expressions/Function_Expressions/static_type_dynamic_async_t03: RuntimeError # dartbgug.com/30667 +Language/Expressions/Function_Expressions/static_type_dynamic_asyncs_t03: RuntimeError # dartbgug.com/30667 +Language/Expressions/Function_Expressions/static_type_dynamic_syncs_t03: RuntimeError # dartbug.com/30667 +Language/Expressions/Function_Expressions/static_type_form_3_async_t03: RuntimeError # dartbgug.com/30667 +Language/Expressions/Function_Expressions/static_type_form_3_asyncs_t03: RuntimeError # dartbgug.com/30667 +Language/Expressions/Function_Expressions/static_type_form_3_syncs_t03: RuntimeError # dartbgug.com/30667 +Language/Generics/malformed_t02: RuntimeError +Language/Statements/Return/runtime_type_t04: RuntimeError +Language/Statements/Switch/execution_t01: RuntimeError +Language/Statements/Switch/type_t01: RuntimeError +Language/Types/Dynamic_Type_System/malbounded_type_error_t01: RuntimeError +Language/Types/Parameterized_Types/malbounded_t06: RuntimeError +Language/Types/Static_Types/malformed_type_t04: RuntimeError + [ $compiler == dartk || $compiler == dartkp ] Language/Classes/Constructors/Constant_Constructors/initializer_not_a_constant_t03: MissingCompileTimeError Language/Classes/Constructors/Factories/const_modifier_t01: MissingCompileTimeError @@ -72,23 +124,25 @@ Language/Functions/Formal_Parameters/Optional_Formals/default_value_t02: Missing Language/Functions/Formal_Parameters/Required_Formals/syntax_t06: MissingCompileTimeError Language/Functions/Formal_Parameters/Required_Formals/syntax_t07: MissingCompileTimeError Language/Libraries_and_Scripts/Exports/reexport_t01: MissingCompileTimeError +Language/Libraries_and_Scripts/Imports/deferred_import_t01: CompileTimeError # Deferred loading kernel issue 28335. +Language/Libraries_and_Scripts/Imports/deferred_import_t02: CompileTimeError # Deferred loading kernel issue 28335. Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t02: CompileTimeError Language/Libraries_and_Scripts/Imports/invalid_uri_t01: MissingCompileTimeError Language/Libraries_and_Scripts/Imports/same_name_t10: RuntimeError Language/Libraries_and_Scripts/Imports/static_type_t01: Skip # No support for deferred libraries. -Language/Metadata/before_export_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_import_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_library_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t02: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t03: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t04: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t05: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t06: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t07: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t08: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_param_t09: RuntimeError # Issue 28434: Kernel IR misses these annotations. -Language/Metadata/before_typedef_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_export_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_import_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_library_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t02: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t03: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t04: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t05: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t06: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t07: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t08: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_param_t09: RuntimeError # Issue 28434: Kernel IR misses these annotations. +Language/Metadata/before_typedef_t01: RuntimeError # Issue 28434: Kernel IR misses these annotations. Language/Mixins/Mixin_Application/deferred_t01: MissingCompileTimeError Language/Mixins/Mixin_Application/syntax_t16: CompileTimeError # Issue 25765 Language/Mixins/declaring_constructor_t05: MissingCompileTimeError # Issue 24767 @@ -119,60 +173,3 @@ Language/Variables/final_or_static_initialization_t03: MissingCompileTimeError LibTest/async/DeferredLibrary/DeferredLibrary_A01_t01: Skip # No support for deferred libraries. LibTest/isolate/Isolate/spawnUri_A01_t06: Skip -[ ($compiler == dartk || $compiler == dartkp) && $mode == debug ] -Language/Classes/Constructors/Generative_Constructors/execution_t04: Crash -Language/Classes/Instance_Variables/constant_t01: Crash - -# dartk: JIT failures -[ $compiler == dartk ] -Language/Expressions/Instance_Creation/Const/canonicalized_t05: RuntimeError -Language/Expressions/Object_Identity/string_t01: RuntimeError -Language/Expressions/Strings/adjacent_strings_t02: RuntimeError -Language/Metadata/before_type_param_t01: RuntimeError -LibTest/isolate/Isolate/spawnUri_A01_t03: Pass, Timeout - -# dartk: JIT failures (debug) -[ $compiler == dartk && $mode == debug ] -LibTest/isolate/Isolate/spawnUri_A01_t04: Pass, Slow, Timeout - -# dartk: precompilation failures -[ $compiler == dartkp ] -Language/Overview/Scoping/hiding_declaration_t11: Crash -Language/Overview/Scoping/hiding_declaration_t12: Crash -Language/Expressions/Constants/depending_on_itself_t01: MissingCompileTimeError -Language/Expressions/Constants/depending_on_itself_t02: MissingCompileTimeError -Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t02: Pass -Language/Expressions/Constants/bitwise_operators_t05: Crash -Language/Expressions/Constants/logical_expression_t04: Crash -Language/Overview/Scoping/hiding_declaration_t11: Pass -Language/Overview/Scoping/hiding_declaration_t12: Pass - - -# dartk: precompilation failures (debug) -[ $compiler == dartkp && $mode == debug ] -Language/Functions/External_Functions/not_connected_to_a_body_t01: Crash -Language/Statements/For/Asynchronous_For_in/execution_t04: Crash - -# dartk: checked mode failures -[ $checked && ($compiler == dartk || $compiler == dartkp) ] -Language/Classes/Constructors/Factories/arguments_type_t01: RuntimeError -Language/Classes/Constructors/Factories/function_type_t02: Fail # dartbug.com/30527 -Language/Expressions/Constants/exception_t04: Pass -Language/Expressions/Function_Expressions/static_type_dynamic_asyncs_t03: RuntimeError # dartbgug.com/30667 -Language/Expressions/Function_Expressions/static_type_dynamic_async_t03: RuntimeError # dartbgug.com/30667 -Language/Expressions/Function_Expressions/static_type_dynamic_syncs_t03: RuntimeError # dartbug.com/30667 -Language/Expressions/Function_Expressions/static_type_form_3_asyncs_t03: RuntimeError # dartbgug.com/30667 -Language/Expressions/Function_Expressions/static_type_form_3_async_t03: RuntimeError # dartbgug.com/30667 -Language/Expressions/Function_Expressions/static_type_form_3_syncs_t03: RuntimeError # dartbgug.com/30667 -Language/Generics/malformed_t02: RuntimeError -Language/Statements/Return/runtime_type_t04: RuntimeError -Language/Statements/Switch/execution_t01: RuntimeError -Language/Statements/Switch/type_t01: RuntimeError -Language/Types/Dynamic_Type_System/malbounded_type_error_t01: RuntimeError -Language/Types/Parameterized_Types/malbounded_t06: RuntimeError -Language/Types/Static_Types/malformed_type_t04: RuntimeError - -# Deferred loading kernel issue 28335. -[ $compiler == dartk || $compiler == dartkp ] -Language/Libraries_and_Scripts/Imports/deferred_import_t01: CompileTimeError # Deferred loading kernel issue 28335. -Language/Libraries_and_Scripts/Imports/deferred_import_t02: CompileTimeError # Deferred loading kernel issue 28335. diff --git a/tests/co19/co19-runtime.status b/tests/co19/co19-runtime.status index fb18e006ec5..92571b0d585 100644 --- a/tests/co19/co19-runtime.status +++ b/tests/co19/co19-runtime.status @@ -2,236 +2,23 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $runtime == vm ] -LibTest/isolate/Isolate/spawnUri_A01_t06: Pass, Fail # Issue 28269, These tests are timing dependent and should be non-flaky once the fix for https://github.com/dart-lang/co19/issues/86 is merged into master. (They are skipped on $runtime == pre_compiled below.) -LibTest/isolate/Isolate/spawnUri_A01_t07: Pass, Fail # Issue 28269, These tests are timing dependent and should be non-flaky once the fix for https://github.com/dart-lang/co19/issues/86 is merged into master. (They are skipped on $runtime == pre_compiled below.) -LibTest/isolate/Isolate/spawn_A04_t01: Pass, Fail # Issue 28269, These tests are timing dependent and should be non-flaky once the fix for https://github.com/dart-lang/co19/issues/86 is merged into master. (They are skipped on $runtime == pre_compiled below.) - -[ $runtime == vm && $checked ] -LibTest/typed_data/Float64List/firstWhere_A02_t01: Fail # These tests fail in checked mode because they are incorrect. -LibTest/typed_data/Float64List/reduce_A01_t01: Fail # These tests fail in checked mode because they are incorrect. -LibTest/typed_data/Float64List/add_A01_t01: Fail # These tests fail in checked mode because they are incorrect. -LibTest/typed_data/Float32List/reduce_A01_t01: Fail # These tests fail in checked mode because they are incorrect. - -[$runtime == vm && $compiler == none && $system == fuchsia] -*: Skip # Tests not included in the image. - -[ ($runtime == vm || $runtime == dart_precompiled) && ($compiler != dartk && $compiler != dartkp) ] -Language/Classes/Constructors/Generative_Constructors/initializing_formals_execution_t02: CompileTimeError # Issue 114 - -[ $runtime == dart_precompiled ] -Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t02: CompileTimeError # Issue 114 - -[ $runtime == vm || $runtime == flutter || $runtime == dart_precompiled ] -LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: RuntimeError # Issue 1296 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError, Fail # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError, Fail # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError, Fail # Issue 22200 -LibTest/core/RegExp/Pattern_semantics/splitQueryString_A02_t01: RuntimeError # Issue 1296 - -LibTest/core/int/toRadixString_A01_t01: Fail # co19 issue 492 - -Language/Libraries_and_Scripts/Exports/reexport_t02: MissingCompileTimeError, fail # Dart issue 12916 - -Language/Libraries_and_Scripts/Scripts/top_level_main_t01: skip # Issue 29895 - -Language/Statements/Assert/execution_t02: skip # co19 issue 734 -Language/Statements/Assert/execution_t03: skip # co19 issue 734 -Language/Statements/Assert/type_t02: skip # co19 issue 734 -Language/Statements/Assert/type_t05: skip # co19 issue 734 - -LibTest/isolate/Isolate/spawnUri_A02_t02: Skip # Issue 15974 -LibTest/isolate/Isolate/spawnUri_A02_t03: Skip # Issue 15974 -LibTest/isolate/Isolate/spawn_A03_t02: Skip # Issue 15974 -LibTest/isolate/Isolate/spawn_A04_t01: Skip # Issue 15974 -LibTest/isolate/Isolate/spawn_A04_t04: Skip # Issue 15974 -LibTest/isolate/Isolate/spawn_A06_t03: Skip # Issue 15974 -LibTest/isolate/Isolate/spawn_A06_t05: Skip # Issue 15974 -LibTest/isolate/Isolate/spawn_A04_t03: Skip # Flaky, Issue 15974 - -LibTest/core/Symbol/Symbol_A01_t03: RuntimeError # Issue 13596 -LibTest/core/Symbol/Symbol_A01_t05: RuntimeError # Issue 13596 - -[ $runtime == vm || $runtime == flutter || $runtime == dart_precompiled ] -LibTest/typed_data/Float32x4/reciprocalSqrt_A01_t01: Pass, Fail # co19 issue 599 -LibTest/typed_data/Float32x4/reciprocal_A01_t01: Pass, Fail # co19 issue 599 - -[ ($runtime == vm || $runtime == dart_precompiled ) && $mode == debug ] -LibTest/core/List/List_class_A01_t02: Pass, Slow - -[ ($runtime == vm || $runtime == dart_precompiled) && ($arch != x64 && $arch != simarm64 && $arch != arm64 && $arch != simdbc64 && $arch != simdbc) ] -LibTest/core/int/operator_left_shift_A01_t02: Fail # co19 issue 129 - -[ ($compiler == none || $compiler == precompiler) && ($runtime == vm || $runtime == dart_precompiled) && $arch == arm64 ] -LibTest/core/List/List_class_A01_t02: Skip # co19 issue 673, These tests take too much memory (300 MB) for our 1 GB test machine co19 issue 673. http://code.google.com/p/co19/issues/detail?id=673 -LibTest/collection/ListMixin/ListMixin_class_A01_t02: Skip # co19 issue 673, These tests take too much memory (300 MB) for our 1 GB test machine co19 issue 673. http://code.google.com/p/co19/issues/detail?id=673 -LibTest/collection/ListBase/ListBase_class_A01_t02: Skip # co19 issue 673, These tests take too much memory (300 MB) for our 1 GB test machine co19 issue 673. http://code.google.com/p/co19/issues/detail?id=673 - -[ ($runtime == vm || $runtime == dart_precompiled) && ($arch == simarm || $arch == simarmv6 || $arch == simarmv5te || $arch == simarm64 || $arch == simdbc || $arch == simdbc64) ] -LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Skip # Timeout -LibTest/collection/IterableBase/IterableBase_class_A01_t02: Skip # Timeout -LibTest/collection/IterableMixin/IterableMixin_class_A02_t01: Skip # Timeout -LibTest/collection/ListBase/ListBase_class_A01_t01: Skip # Timeout -LibTest/collection/ListBase/ListBase_class_A01_t02: Skip # Timeout -LibTest/collection/ListMixin/ListMixin_class_A01_t01: Skip # Timeout -LibTest/collection/ListMixin/ListMixin_class_A01_t02: Skip # Timeout -LibTest/core/Uri/Uri_A06_t03: Skip # Timeout - -[ $system == windows ] -LibTest/collection/ListMixin/ListMixin_class_A01_t02: Pass, Slow -LibTest/collection/ListBase/ListBase_class_A01_t02: Pass, Slow - -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter] -LibTest/isolate/Isolate/spawn_A02_t01: Skip # co19 issue 667 -LibTest/html/*: SkipByDesign # dart:html not supported on VM. -LayoutTests/fast/*: SkipByDesign # DOM not supported on VM. -WebPlatformTest/*: SkipByDesign # dart:html not supported on VM. -Language/Expressions/Function_Invocation/async_generator_invokation_t08: Fail # Issue 25967 -Language/Expressions/Function_Invocation/async_generator_invokation_t10: Fail # Issue 25967 -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t08: RuntimeError # Issue 25748 -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t09: RuntimeError # Issue 25748 -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t10: RuntimeError # Issue 25748 -Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_sync_t05: RuntimeError # Issue 25662,25634 -Language/Expressions/Assignment/super_assignment_failed_t05: RuntimeError # Issue 25671 - -[ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $builder_tag == asan ] -Language/Types/Interface_Types/subtype_t27: Skip # Issue 21174. - -# -# flutter runs with --error-on-bad-type so the following two tests end up -# with errors and pass -# -[ $runtime == flutter ] -Language/Expressions/Identifier_Reference/built_in_not_dynamic_t14: Pass -Language/Expressions/Identifier_Reference/built_in_not_dynamic_t19: Pass -Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t01: Pass -Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t03: Pass -Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t05: Pass - -[ ($runtime == vm || $runtime == dart_precompiled || $runtime == flutter) && $compiler != dartk && $compiler != dartkp ] -Language/Expressions/Method_Invocation/Ordinary_Invocation/object_method_invocation_t01: MissingCompileTimeError # Issue 25496 -Language/Expressions/Method_Invocation/Ordinary_Invocation/object_method_invocation_t02: MissingCompileTimeError # Issue 25496 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t01: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t02: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t03: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t04: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t05: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t06: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t07: MissingCompileTimeError # Issue 24332 -Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t08: MissingCompileTimeError # Issue 24332 -Language/Mixins/Mixin_Application/syntax_t16: CompileTimeError # Issue 25765 -Language/Mixins/declaring_constructor_t05: MissingCompileTimeError # Issue 24767 -Language/Mixins/declaring_constructor_t06: MissingCompileTimeError # Issue 24767 -Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t01: MissingCompileTimeError # Issue 25495 -Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t03: MissingCompileTimeError # Issue 25495 -Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t05: MissingCompileTimeError # Issue 25495 - -Language/Libraries_and_Scripts/Exports/invalid_uri_t02: Fail -Language/Libraries_and_Scripts/Exports/reexport_t01: fail # Dart issue 12916 -Language/Libraries_and_Scripts/Imports/invalid_uri_t02: Fail -Language/Libraries_and_Scripts/Parts/syntax_t06: Fail -Language/Statements/Labels/syntax_t03: fail # Dart issue 2238 -Language/Statements/Switch/syntax_t02: fail # Dart issue 12908 - -[ $runtime == dart_precompiled ] -Language/Metadata/*: SkipByDesign # Uses dart:mirrors -Language/Expressions/Null/instance_of_class_null_t01: Skip # Uses dart:mirrors - -[ $compiler == precompiler || $compiler == app_jit || $mode == product || $runtime == flutter] -Language/Libraries_and_Scripts/Imports/deferred_import_t01: Skip # Eager loading -Language/Libraries_and_Scripts/Imports/deferred_import_t02: Skip # Eager loading -Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t01: Skip # Eager loading -Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t02: Skip # Eager loading - -[ $runtime == dart_precompiled ] -LibTest/isolate/Isolate/spawnUri*: SkipByDesign # Isolate.spawnUri - [ $compiler == precompiler ] LibTest/collection/ListBase/ListBase_class_A01_t02: Pass, Timeout LibTest/collection/ListMixin/ListMixin_class_A01_t02: Pass, Timeout LibTest/core/Map/Map_class_A01_t04: Pass, Timeout LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout -[ $compiler == precompiler || $compiler == app_jit ] -Language/Mixins/Mixin_Application/error_t01: Pass -Language/Mixins/Mixin_Application/error_t02: Pass -Language/Mixins/declaring_constructor_t01: Pass +[ $runtime == dart_precompiled ] +Language/Classes/Constructors/Generative_Constructors/execution_of_an_initializer_t02: CompileTimeError # Issue 114 +Language/Expressions/Null/instance_of_class_null_t01: Skip # Uses dart:mirrors +Language/Metadata/*: SkipByDesign # Uses dart:mirrors +LibTest/isolate/Isolate/spawnUri*: SkipByDesign # Isolate.spawnUri -[ ($arch == simdbc || $arch == simdbc64) && $mode == debug ] -LibTest/collection/ListMixin/ListMixin_class_A01_t02: Timeout # TODO(vegorov) These tests are very slow on unoptimized SIMDBC -LibTest/collection/ListBase/ListBase_class_A01_t02: Timeout # TODO(vegorov) These tests are very slow on unoptimized SIMDBC - -[ $compiler == precompiler && $runtime == dart_precompiled && $system == android ] -*: Skip # Issue 27294 - -LibTest/math/log_A01_t01: RuntimeError # Precision of Math.log (Issue #18998) -Language/Expressions/Object_Identity/double_t02: RuntimeError # Issue #26374 - -[ $compiler == precompiler && $runtime == dart_precompiled && $arch == simarm ] -LibTest/typed_data/Float32x4/operator_division_A01_t02: RuntimeError # Issue #26675 - -[ $hot_reload || $hot_reload_rollback || $runtime == flutter ] -Language/Expressions/Assignment/prefix_object_t02: Skip # Requires deferred libraries -Language/Expressions/Constants/constant_constructor_t03: Skip # Requires deferred libraries -Language/Expressions/Constants/identifier_denotes_a_constant_t06: Skip # Requires deferred libraries -Language/Expressions/Constants/identifier_denotes_a_constant_t07: Skip # Requires deferred libraries -Language/Expressions/Constants/static_constant_t06: Skip # Requires deferred libraries -Language/Expressions/Constants/static_constant_t07: Skip # Requires deferred libraries -Language/Expressions/Constants/top_level_function_t04: Skip # Requires deferred libraries -Language/Expressions/Constants/top_level_function_t05: Skip # Requires deferred libraries -Language/Expressions/Instance_Creation/Const/deferred_type_t01: Skip # Requires deferred libraries -Language/Expressions/Instance_Creation/Const/deferred_type_t02: Skip # Requires deferred libraries -Language/Expressions/Instance_Creation/New/evaluation_t19: Skip # Requires deferred libraries -Language/Expressions/Instance_Creation/New/evaluation_t20: Skip # Requires deferred libraries -Language/Expressions/Type_Cast/evaluation_t10: Skip # Requires deferred libraries -Language/Expressions/Type_Test/evaluation_t10: Skip # Requires deferred libraries -Language/Libraries_and_Scripts/Imports/deferred_import_t01: Skip # Requires deferred libraries -Language/Libraries_and_Scripts/Imports/deferred_import_t02: Skip # Requires deferred libraries -Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t01: Skip # Requires deferred libraries -Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t02: Skip # Requires deferred libraries -Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t03: Skip # Requires deferred libraries -Language/Libraries_and_Scripts/Imports/static_type_t01: Skip # Requires deferred libraries -Language/Types/Dynamic_Type_System/deferred_type_error_t01: Skip # Requires deferred libraries -Language/Types/Static_Types/deferred_type_t01: Skip # Requires deferred libraries -LibTest/async/DeferredLibrary/DeferredLibrary_A01_t01: Skip # Requires deferred libraries -LibTest/collection/IterableBase/IterableBase_class_A01_t02: Pass, Timeout -LibTest/collection/IterableMixin/IterableMixin_class_A02_t01: Pass, Timeout -LibTest/collection/ListBase/ListBase_class_A01_t01: Pass, Timeout -LibTest/collection/ListBase/ListBase_class_A01_t02: Pass, Timeout -LibTest/collection/ListMixin/ListMixin_class_A01_t01: Pass, Timeout -LibTest/collection/ListMixin/ListMixin_class_A01_t02: Pass, Timeout -LibTest/core/List/List_class_A01_t01: Pass, Timeout -LibTest/core/List/List_class_A01_t02: Pass, Timeout -LibTest/core/Map/Map_class_A01_t04: Pass, Timeout -LibTest/core/Uri/Uri_A06_t03: Pass, Timeout -LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout -LibTest/isolate/Isolate/spawn_A01_t04: Pass, Timeout -LibTest/isolate/ReceivePort/take_A01_t02: Skip # Issue 27773 -LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Pass, Slow - -[ $runtime == vm && $mode == release && $system == linux && ($arch == x64 || $arch == ia32)] -LibTest/isolate/Isolate/spawn_A04_t05: Pass, Slow - -[ $runtime == vm && $mode == release && $system == linux && $arch == ia32] -service/dev_fs_spawn_test: Pass, Fail # Issue 28411 - -# flutter uses --error_on_bad_type, --error_on_bad_override and -# --await_is_keyword so that tests failing with a Compilation Error is fine. +# +# flutter runs with --error-on-bad-type so the following two tests end up +# with errors and pass +# [ $runtime == flutter ] -LibTest/isolate/Isolate/spawnUri* : Skip # spawnUri is not supported by flutter -LibTest/collection/SplayTreeSet/SplayTreeSet.from_A02_t04: Pass, Timeout -LibTest/collection/LinkedList/addFirst_A01_t01: Pass, Timeout # Flutter Issue 9109 -LibTest/typed_data/Int32List/buffer_A01_t02: Pass, Timeout # Flutter Issue 9109 -LibTest/collection/DoubleLinkedQueueEntry/append_A01_t01: Pass, Timeout # Flutter Issue 9109 - -LibTest/async/Future/doWhile_A05_t01: Pass, RuntimeError # Flutter Issue 9109 -LibTest/async/Future/forEach_A04_t02: Pass, RuntimeError # Flutter Issue 9109 -LibTest/async/StreamController/StreamController.broadcast_A04_t01: Pass, RuntimeError # Flutter Issue 9109 -LibTest/async/Stream/timeout_A01_t01: Pass, RuntimeError # Flutter Issue 9109 -LibTest/async/Stream/timeout_A03_t01: Pass, RuntimeError # Flutter Issue 9109 -LibTest/async/Stream/timeout_A04_t01: Pass, RuntimeError # Flutter Issue 9109 -LibTest/isolate/ReceivePort/sendPort_A01_t01: Pass, Timeout # Flutter Issue 9109 - Language/Classes/Abstract_Instance_Members/override_more_required_parameters_t01: CompileTimeError Language/Classes/Abstract_Instance_Members/override_no_named_parameters_t01: CompileTimeError Language/Classes/Abstract_Instance_Members/override_not_a_subtype_t01: CompileTimeError @@ -258,9 +45,12 @@ Language/Classes/Setters/override_t02: CompileTimeError Language/Errors_and_Warnings/static_warning_t01: CompileTimeError Language/Expressions/Assignment/expression_assignment_failed_t06: CompileTimeError Language/Expressions/Assignment/super_assignment_failed_t05: CompileTimeError -Language/Expressions/Instance_Creation/malformed_or_malbounded_t01: CompileTimeError -Language/Expressions/Instance_Creation/malformed_or_malbounded_t03: CompileTimeError -Language/Expressions/Instance_Creation/malformed_or_malbounded_t07: CompileTimeError +Language/Expressions/Await_Expressions/syntax_t07: CompileTimeError +Language/Expressions/Await_Expressions/syntax_t08: CompileTimeError +Language/Expressions/Await_Expressions/syntax_t09: CompileTimeError +Language/Expressions/Identifier_Reference/async_and_generator_t01: CompileTimeError +Language/Expressions/Identifier_Reference/built_in_not_dynamic_t14: Pass +Language/Expressions/Identifier_Reference/built_in_not_dynamic_t19: Pass Language/Expressions/Instance_Creation/New/evaluation_t03: CompileTimeError Language/Expressions/Instance_Creation/New/evaluation_t16: CompileTimeError Language/Expressions/Instance_Creation/New/evaluation_t17: CompileTimeError @@ -274,6 +64,9 @@ Language/Expressions/Instance_Creation/New/type_t01: CompileTimeError Language/Expressions/Instance_Creation/New/type_t02: CompileTimeError Language/Expressions/Instance_Creation/New/type_t03: CompileTimeError Language/Expressions/Instance_Creation/New/type_t05: CompileTimeError +Language/Expressions/Instance_Creation/malformed_or_malbounded_t01: CompileTimeError +Language/Expressions/Instance_Creation/malformed_or_malbounded_t03: CompileTimeError +Language/Expressions/Instance_Creation/malformed_or_malbounded_t07: CompileTimeError Language/Expressions/Null/instance_of_class_null_t01: CompileTimeError Language/Expressions/Type_Cast/evaluation_t04: CompileTimeError Language/Expressions/Type_Cast/evaluation_t05: CompileTimeError @@ -323,8 +116,8 @@ Language/Metadata/before_param_t06: CompileTimeError Language/Metadata/before_param_t07: CompileTimeError Language/Metadata/before_param_t08: CompileTimeError Language/Metadata/before_param_t09: CompileTimeError -Language/Metadata/before_typedef_t01: CompileTimeError Language/Metadata/before_type_param_t01: CompileTimeError +Language/Metadata/before_typedef_t01: CompileTimeError Language/Metadata/before_variable_t01: CompileTimeError Language/Metadata/before_variable_t02: CompileTimeError Language/Mixins/Mixin_Application/syntax_t21: CompileTimeError @@ -337,6 +130,9 @@ Language/Overview/Scoping/hiding_declaration_t28: CompileTimeError Language/Statements/Try/malformed_type_t01: CompileTimeError Language/Statements/Try/malformed_type_t02: CompileTimeError Language/Statements/Try/malformed_type_t03: CompileTimeError +Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t01: Pass +Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t03: Pass +Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t05: Pass Language/Types/Dynamic_Type_System/malbounded_type_error_t01: CompileTimeError Language/Types/Parameterized_Types/Actual_Type_of_Declaration/actual_type_t02: CompileTimeError Language/Types/Parameterized_Types/Actual_Type_of_Declaration/actual_type_t03: CompileTimeError @@ -358,13 +154,196 @@ Language/Types/Static_Types/malformed_type_t03: CompileTimeError Language/Types/Static_Types/malformed_type_t04: CompileTimeError Language/Types/Static_Types/malformed_type_t05: CompileTimeError Language/Types/Static_Types/malformed_type_t06: CompileTimeError -Language/Expressions/Await_Expressions/syntax_t07: CompileTimeError -Language/Expressions/Await_Expressions/syntax_t08: CompileTimeError -Language/Expressions/Await_Expressions/syntax_t09: CompileTimeError -Language/Expressions/Identifier_Reference/async_and_generator_t01: CompileTimeError +LibTest/async/Future/doWhile_A05_t01: Pass, RuntimeError # Flutter Issue 9109 +LibTest/async/Future/forEach_A04_t02: Pass, RuntimeError # Flutter Issue 9109 +LibTest/async/Stream/timeout_A01_t01: Pass, RuntimeError # Flutter Issue 9109 +LibTest/async/Stream/timeout_A03_t01: Pass, RuntimeError # Flutter Issue 9109 +LibTest/async/Stream/timeout_A04_t01: Pass, RuntimeError # Flutter Issue 9109 +LibTest/async/StreamController/StreamController.broadcast_A04_t01: Pass, RuntimeError # Flutter Issue 9109 +LibTest/collection/DoubleLinkedQueueEntry/append_A01_t01: Pass, Timeout # Flutter Issue 9109 +LibTest/collection/LinkedList/addFirst_A01_t01: Pass, Timeout # Flutter Issue 9109 +LibTest/collection/SplayTreeSet/SplayTreeSet.from_A02_t04: Pass, Timeout +LibTest/isolate/Isolate/spawnUri*: Skip # spawnUri is not supported by flutter +LibTest/isolate/ReceivePort/sendPort_A01_t01: Pass, Timeout # Flutter Issue 9109 +LibTest/typed_data/Int32List/buffer_A01_t02: Pass, Timeout # Flutter Issue 9109 + +[ $runtime == vm ] +LibTest/isolate/Isolate/spawnUri_A01_t06: Pass, Fail # Issue 28269, These tests are timing dependent and should be non-flaky once the fix for https://github.com/dart-lang/co19/issues/86 is merged into master. (They are skipped on $runtime == pre_compiled below.) +LibTest/isolate/Isolate/spawnUri_A01_t07: Pass, Fail # Issue 28269, These tests are timing dependent and should be non-flaky once the fix for https://github.com/dart-lang/co19/issues/86 is merged into master. (They are skipped on $runtime == pre_compiled below.) +LibTest/isolate/Isolate/spawn_A04_t01: Pass, Fail # Issue 28269, These tests are timing dependent and should be non-flaky once the fix for https://github.com/dart-lang/co19/issues/86 is merged into master. (They are skipped on $runtime == pre_compiled below.) + +[ $system == windows ] +LibTest/collection/ListBase/ListBase_class_A01_t02: Pass, Slow +LibTest/collection/ListMixin/ListMixin_class_A01_t02: Pass, Slow + +[ $arch == arm64 && ($compiler == none || $compiler == precompiler) && ($runtime == dart_precompiled || $runtime == vm) ] +LibTest/collection/ListBase/ListBase_class_A01_t02: Skip # co19 issue 673, These tests take too much memory (300 MB) for our 1 GB test machine co19 issue 673. http://code.google.com/p/co19/issues/detail?id=673 +LibTest/collection/ListMixin/ListMixin_class_A01_t02: Skip # co19 issue 673, These tests take too much memory (300 MB) for our 1 GB test machine co19 issue 673. http://code.google.com/p/co19/issues/detail?id=673 +LibTest/core/List/List_class_A01_t02: Skip # co19 issue 673, These tests take too much memory (300 MB) for our 1 GB test machine co19 issue 673. http://code.google.com/p/co19/issues/detail?id=673 + +[ $arch != arm64 && $arch != simarm64 && $arch != simdbc && $arch != simdbc64 && $arch != x64 && ($runtime == dart_precompiled || $runtime == vm) ] +LibTest/core/int/operator_left_shift_A01_t02: Fail # co19 issue 129 + +[ $arch == ia32 && $mode == release && $runtime == vm && $system == linux ] +service/dev_fs_spawn_test: Pass, Fail # Issue 28411 + +[ $arch == simarm && $compiler == precompiler && $runtime == dart_precompiled ] +LibTest/typed_data/Float32x4/operator_division_A01_t02: RuntimeError # Issue #26675 + +[ $builder_tag == asan && $mode == debug && ($runtime == dart_precompiled || $runtime == vm) ] +Language/Types/Interface_Types/subtype_t27: Skip # Issue 21174. + +[ $compiler != dartk && $compiler != dartkp && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +Language/Expressions/Method_Invocation/Ordinary_Invocation/object_method_invocation_t01: MissingCompileTimeError # Issue 25496 +Language/Expressions/Method_Invocation/Ordinary_Invocation/object_method_invocation_t02: MissingCompileTimeError # Issue 25496 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t01: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t02: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t03: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t04: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t05: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t06: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t07: MissingCompileTimeError # Issue 24332 +Language/Expressions/Property_Extraction/Getter_Access_and_Method_Extraction/class_object_member_t08: MissingCompileTimeError # Issue 24332 +Language/Libraries_and_Scripts/Exports/invalid_uri_t02: Fail +Language/Libraries_and_Scripts/Exports/reexport_t01: Fail # Dart issue 12916 +Language/Libraries_and_Scripts/Imports/invalid_uri_t02: Fail +Language/Libraries_and_Scripts/Parts/syntax_t06: Fail +Language/Mixins/Mixin_Application/syntax_t16: CompileTimeError # Issue 25765 +Language/Mixins/declaring_constructor_t05: MissingCompileTimeError # Issue 24767 +Language/Mixins/declaring_constructor_t06: MissingCompileTimeError # Issue 24767 +Language/Statements/Labels/syntax_t03: Fail # Dart issue 2238 +Language/Statements/Switch/syntax_t02: Fail # Dart issue 12908 +Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t01: MissingCompileTimeError # Issue 25495 +Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t03: MissingCompileTimeError # Issue 25495 +Language/Statements/Yield_and_Yield_Each/Yield_Each/location_t05: MissingCompileTimeError # Issue 25495 + +[ $compiler != dartk && $compiler != dartkp && ($runtime == dart_precompiled || $runtime == vm) ] +Language/Classes/Constructors/Generative_Constructors/initializing_formals_execution_t02: CompileTimeError # Issue 114 + +[ $compiler == none && $runtime == vm && $system == fuchsia ] +*: Skip # Tests not included in the image. + +[ $compiler == precompiler && $runtime == dart_precompiled && $system == android ] +*: Skip # Issue 27294 +Language/Expressions/Object_Identity/double_t02: RuntimeError # Issue #26374 +LibTest/math/log_A01_t01: RuntimeError # Precision of Math.log (Issue #18998) + +[ $mode == debug && ($arch == simdbc || $arch == simdbc64) ] +LibTest/collection/ListBase/ListBase_class_A01_t02: Timeout # TODO(vegorov) These tests are very slow on unoptimized SIMDBC +LibTest/collection/ListMixin/ListMixin_class_A01_t02: Timeout # TODO(vegorov) These tests are very slow on unoptimized SIMDBC + +[ $mode == debug && ($runtime == dart_precompiled || $runtime == vm) ] +LibTest/core/List/List_class_A01_t02: Pass, Slow + +[ $mode == release && $runtime == vm && $system == linux && ($arch == ia32 || $arch == x64) ] +LibTest/isolate/Isolate/spawn_A04_t05: Pass, Slow # Obfuscated mode expectations [ $runtime == dart_precompiled && $minified ] -Language/Enums/declaration_equivalent_t01: Skip # Enum.toString is obfuscated. -Language/Expressions/Property_Extraction/Super_Getter_Access_and_Method_Closurization/no_such_method_t01: Skip # Uses new Symbol() instead of const Symbol() -LibTest/core/Symbol/Symbol_A01_t01: Skip # Uses new Symbol() +Language/Enums/declaration_equivalent_t01: Skip # Enum.toString is obfuscated. +Language/Expressions/Property_Extraction/Super_Getter_Access_and_Method_Closurization/no_such_method_t01: Skip # Uses new Symbol() instead of const Symbol() +LibTest/core/Symbol/Symbol_A01_t01: Skip # Uses new Symbol() + +[ $runtime == vm && $checked ] +LibTest/typed_data/Float32List/reduce_A01_t01: Fail # These tests fail in checked mode because they are incorrect. +LibTest/typed_data/Float64List/add_A01_t01: Fail # These tests fail in checked mode because they are incorrect. +LibTest/typed_data/Float64List/firstWhere_A02_t01: Fail # These tests fail in checked mode because they are incorrect. +LibTest/typed_data/Float64List/reduce_A01_t01: Fail # These tests fail in checked mode because they are incorrect. + +[ ($arch == simarm || $arch == simarm64 || $arch == simarmv5te || $arch == simarmv6 || $arch == simdbc || $arch == simdbc64) && ($runtime == dart_precompiled || $runtime == vm) ] +LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Skip # Timeout +LibTest/collection/IterableBase/IterableBase_class_A01_t02: Skip # Timeout +LibTest/collection/IterableMixin/IterableMixin_class_A02_t01: Skip # Timeout +LibTest/collection/ListBase/ListBase_class_A01_t01: Skip # Timeout +LibTest/collection/ListBase/ListBase_class_A01_t02: Skip # Timeout +LibTest/collection/ListMixin/ListMixin_class_A01_t01: Skip # Timeout +LibTest/collection/ListMixin/ListMixin_class_A01_t02: Skip # Timeout +LibTest/core/Uri/Uri_A06_t03: Skip # Timeout + +[ $compiler == app_jit || $compiler == precompiler ] +Language/Mixins/Mixin_Application/error_t01: Pass +Language/Mixins/Mixin_Application/error_t02: Pass +Language/Mixins/declaring_constructor_t01: Pass + +[ $compiler == app_jit || $compiler == precompiler || $mode == product || $runtime == flutter ] +Language/Libraries_and_Scripts/Imports/deferred_import_t01: Skip # Eager loading +Language/Libraries_and_Scripts/Imports/deferred_import_t02: Skip # Eager loading +Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t01: Skip # Eager loading +Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t02: Skip # Eager loading + +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +Language/Expressions/Assignment/super_assignment_failed_t05: RuntimeError # Issue 25671 +Language/Expressions/Function_Invocation/async_generator_invokation_t08: Fail # Issue 25967 +Language/Expressions/Function_Invocation/async_generator_invokation_t10: Fail # Issue 25967 +Language/Libraries_and_Scripts/Exports/reexport_t02: MissingCompileTimeError, Fail # Dart issue 12916 +Language/Libraries_and_Scripts/Scripts/top_level_main_t01: Skip # Issue 29895 +Language/Statements/Assert/execution_t02: Skip # co19 issue 734 +Language/Statements/Assert/execution_t03: Skip # co19 issue 734 +Language/Statements/Assert/type_t02: Skip # co19 issue 734 +Language/Statements/Assert/type_t05: Skip # co19 issue 734 +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t08: RuntimeError # Issue 25748 +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t09: RuntimeError # Issue 25748 +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_async_t10: RuntimeError # Issue 25748 +Language/Statements/Yield_and_Yield_Each/Yield_Each/execution_sync_t05: RuntimeError # Issue 25662,25634 +LayoutTests/fast/*: SkipByDesign # DOM not supported on VM. +LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: RuntimeError # Issue 1296 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t01: RuntimeError, Fail # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: RuntimeError, Fail # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: RuntimeError, Fail # Issue 22200 +LibTest/core/RegExp/Pattern_semantics/splitQueryString_A02_t01: RuntimeError # Issue 1296 +LibTest/core/Symbol/Symbol_A01_t03: RuntimeError # Issue 13596 +LibTest/core/Symbol/Symbol_A01_t05: RuntimeError # Issue 13596 +LibTest/core/int/toRadixString_A01_t01: Fail # co19 issue 492 +LibTest/html/*: SkipByDesign # dart:html not supported on VM. +LibTest/isolate/Isolate/spawnUri_A02_t02: Skip # Issue 15974 +LibTest/isolate/Isolate/spawnUri_A02_t03: Skip # Issue 15974 +LibTest/isolate/Isolate/spawn_A02_t01: Skip # co19 issue 667 +LibTest/isolate/Isolate/spawn_A03_t02: Skip # Issue 15974 +LibTest/isolate/Isolate/spawn_A04_t01: Skip # Issue 15974 +LibTest/isolate/Isolate/spawn_A04_t03: Skip # Flaky, Issue 15974 +LibTest/isolate/Isolate/spawn_A04_t04: Skip # Issue 15974 +LibTest/isolate/Isolate/spawn_A06_t03: Skip # Issue 15974 +LibTest/isolate/Isolate/spawn_A06_t05: Skip # Issue 15974 +LibTest/typed_data/Float32x4/reciprocalSqrt_A01_t01: Pass, Fail # co19 issue 599 +LibTest/typed_data/Float32x4/reciprocal_A01_t01: Pass, Fail # co19 issue 599 +WebPlatformTest/*: SkipByDesign # dart:html not supported on VM. + +[ $runtime == flutter || $hot_reload || $hot_reload_rollback ] +Language/Expressions/Assignment/prefix_object_t02: Skip # Requires deferred libraries +Language/Expressions/Constants/constant_constructor_t03: Skip # Requires deferred libraries +Language/Expressions/Constants/identifier_denotes_a_constant_t06: Skip # Requires deferred libraries +Language/Expressions/Constants/identifier_denotes_a_constant_t07: Skip # Requires deferred libraries +Language/Expressions/Constants/static_constant_t06: Skip # Requires deferred libraries +Language/Expressions/Constants/static_constant_t07: Skip # Requires deferred libraries +Language/Expressions/Constants/top_level_function_t04: Skip # Requires deferred libraries +Language/Expressions/Constants/top_level_function_t05: Skip # Requires deferred libraries +Language/Expressions/Instance_Creation/Const/deferred_type_t01: Skip # Requires deferred libraries +Language/Expressions/Instance_Creation/Const/deferred_type_t02: Skip # Requires deferred libraries +Language/Expressions/Instance_Creation/New/evaluation_t19: Skip # Requires deferred libraries +Language/Expressions/Instance_Creation/New/evaluation_t20: Skip # Requires deferred libraries +Language/Expressions/Type_Cast/evaluation_t10: Skip # Requires deferred libraries +Language/Expressions/Type_Test/evaluation_t10: Skip # Requires deferred libraries +Language/Libraries_and_Scripts/Imports/deferred_import_t01: Skip # Requires deferred libraries +Language/Libraries_and_Scripts/Imports/deferred_import_t02: Skip # Requires deferred libraries +Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t01: Skip # Requires deferred libraries +Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t02: Skip # Requires deferred libraries +Language/Libraries_and_Scripts/Imports/invalid_uri_deferred_t03: Skip # Requires deferred libraries +Language/Libraries_and_Scripts/Imports/static_type_t01: Skip # Requires deferred libraries +Language/Types/Dynamic_Type_System/deferred_type_error_t01: Skip # Requires deferred libraries +Language/Types/Static_Types/deferred_type_t01: Skip # Requires deferred libraries +LibTest/async/DeferredLibrary/DeferredLibrary_A01_t01: Skip # Requires deferred libraries +LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Pass, Slow +LibTest/collection/IterableBase/IterableBase_class_A01_t02: Pass, Timeout +LibTest/collection/IterableMixin/IterableMixin_class_A02_t01: Pass, Timeout +LibTest/collection/ListBase/ListBase_class_A01_t01: Pass, Timeout +LibTest/collection/ListBase/ListBase_class_A01_t02: Pass, Timeout +LibTest/collection/ListMixin/ListMixin_class_A01_t01: Pass, Timeout +LibTest/collection/ListMixin/ListMixin_class_A01_t02: Pass, Timeout +LibTest/core/List/List_class_A01_t01: Pass, Timeout +LibTest/core/List/List_class_A01_t02: Pass, Timeout +LibTest/core/Map/Map_class_A01_t04: Pass, Timeout +LibTest/core/Uri/Uri_A06_t03: Pass, Timeout +LibTest/core/Uri/encodeQueryComponent_A01_t02: Pass, Timeout +LibTest/isolate/Isolate/spawn_A01_t04: Pass, Timeout +LibTest/isolate/ReceivePort/take_A01_t02: Skip # Issue 27773 + diff --git a/tests/compiler/dart2js/dart2js.status b/tests/compiler/dart2js/dart2js.status index b67800e588c..d189e0dc7ce 100644 --- a/tests/compiler/dart2js/dart2js.status +++ b/tests/compiler/dart2js/dart2js.status @@ -1,82 +1,77 @@ -# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - -packages/*: Skip # Skip packages folder - -analyze_test: Slow, Pass - +# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file analyze_dart_test: Slow, Pass - +analyze_test: Slow, Pass +async_await_syntax_test: Pass # DON'T CHANGE THIS LINE -- Don't mark these tests as failing. Instead, fix the errors/warnings that they report or update the whitelist in the test-files to temporarily allow digression. +backend_dart/opt_cyclic_redundant_phi_test: Fail # Issue 20159 +boolified_operator_test: Fail # Issue 8001 +check_elements_invariants_test: Skip # Times out even with Slow marker. Slow due to inlining in the CPS backend compile_with_empty_libraries_test: Fail # Issue 24223 - +equivalence/id_equivalence_test: Pass, Slow +gvn_dynamic_field_get_test: Fail # Issue 18519 inference/inference_test: Slow, Pass inference/swarm_test: Slow, Pass - inlining/inlining_test: Slow, Pass - kernel/*: Slow, Pass - -subtype_test: Slow, Pass - -boolified_operator_test: Fail # Issue 8001 - +logical_expression_test: Fail # Issue 17027 +mirrors/library_exports_hidden_test: Fail +mirrors/library_exports_shown_test: Fail +mirrors/library_imports_hidden_test: Fail +mirrors/library_imports_prefixed_show_hide_test: Fail +mirrors/library_imports_prefixed_test: Fail +mirrors/library_imports_shown_test: Fail +packages/*: Skip # Skip packages folder +patch_test/bug: RuntimeError # Issue 21132 +quarantined/http_test: Pass, Slow serialization/analysis1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/analysis3_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/analysis4_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/analysis5_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. -serialization/compilation_1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/compilation0_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/compilation1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. -serialization/compilation4_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/compilation3_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. +serialization/compilation4_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/compilation5_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. +serialization/compilation_1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/library_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. -serialization/model_1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/model1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/model3_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/model4_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/model5_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. +serialization/model_1_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. serialization/native_data_test: Skip # Skip most serialization tests. These are very slow and are no longer a priority. - -async_await_syntax_test: Pass # DON'T CHANGE THIS LINE -- Don't mark these tests as failing. Instead, fix the errors/warnings that they report or update the whitelist in the test-files to temporarily allow digression. - simple_function_subtype_test: Fail # simple_function_subtype_test is temporarily(?) disabled due to new method for building function type tests. - -simple_inferrer_const_closure_test: Fail # Issue 16507 simple_inferrer_const_closure2_test: Fail # Issue 16507 +simple_inferrer_const_closure_test: Fail # Issue 16507 simple_inferrer_global_field_closure_test: Fail # Issue 16507 - -logical_expression_test: Fail # Issue 17027 - -gvn_dynamic_field_get_test: Fail # Issue 18519 - -backend_dart/opt_cyclic_redundant_phi_test: Fail # Issue 20159 - -mirrors/library_exports_hidden_test: Fail -mirrors/library_exports_shown_test: Fail -mirrors/library_imports_hidden_test: Fail -mirrors/library_imports_prefixed_test: Fail -mirrors/library_imports_prefixed_show_hide_test: Fail -mirrors/library_imports_shown_test: Fail - -patch_test/bug: RuntimeError # Issue 21132 - -quarantined/http_test: Pass, Slow - -sourcemaps/source_mapping_operators_test: Pass, Slow sourcemaps/source_mapping_invokes_test: Pass, Slow +sourcemaps/source_mapping_operators_test: Pass, Slow sourcemaps/source_mapping_test: Pass, Slow - -check_elements_invariants_test: Skip # Times out even with Slow marker. Slow due to inlining in the CPS backend - +subtype_test: Slow, Pass uri_retention_test: Fail # Issue 26504 -equivalence/id_equivalence_test: Pass, Slow -[ ! $checked ] -exit_code_test: Skip # This tests requires checked mode. -serialization*: Slow, Pass -jsinterop/declaration_test: Slow, Pass +[ $mode == debug ] +analyze_api_test: Pass, Slow # DON'T CHANGE THIS LINE -- Don't mark these tests as failing. Instead, fix the errors/warnings that they report or update the whitelist in the test-files to temporarily allow digression. +analyze_dart2js_test: Pass, Slow # DON'T CHANGE THIS LINE -- Don't mark these tests as failing. Instead, fix the errors/warnings that they report or update the whitelist in the test-files to temporarily allow digression. +analyze_unused_dart2js_test: Pass, Slow +check_elements_invariants_test: Skip # Slow and only needs to be run in one configuration +check_members_test: Pass, Slow +dart2js_batch_test: Pass, Slow +deferred_load_graph_segmentation_test: Pass, Slow +deferred_load_mapping_test: Pass, Slow +deferred_mirrors_test: Pass, Slow +duplicate_library_test: Pass, Slow +exit_code_test: Pass, Slow +import_mirrors_test: Pass, Slow +in_user_code_test: Pass, Slow +message_kind_test: Pass, Slow +mirror_final_field_inferrer2_test: Crash, Pass, Slow # Issue 15581 +show_package_warnings_test: Pass, Slow +source_map_pub_build_validity_test: Pass, Slow + +[ $system == linux ] +dart2js_batch2_test: Pass, RuntimeError # Issue 29021 [ $checked ] analyze_dart2js_helpers_test: Pass, Slow @@ -89,41 +84,22 @@ exit_code_test: Pass, Slow import_mirrors_test: Slow, Pass interop_anonymous_unreachable_test: Pass, Slow jsinterop/declaration_test: Slow, Pass -mirror_final_field_inferrer2_test: Pass, Slow -source_map_pub_build_validity_test: Pass, Slow -serialization*: Slow, Pass -uri_retention_test: Pass, Slow -value_range_test: Pass, Slow jsinterop/world_test: Pass, Slow -sourcemaps/stacktrace_test: Pass, Slow kernel/visitor_test: Pass, Slow +mirror_final_field_inferrer2_test: Pass, Slow output_type_test: Pass, Slow preserve_uris_test: Pass, Slow - -[ $mode == debug ] -check_elements_invariants_test: Skip # Slow and only needs to be run in one configuration - -mirror_final_field_inferrer2_test: Crash, Pass, Slow # Issue 15581 - -analyze_unused_dart2js_test: Pass, Slow -check_members_test: Pass, Slow -dart2js_batch_test: Pass, Slow -deferred_load_graph_segmentation_test: Pass, Slow -deferred_load_mapping_test: Pass, Slow -deferred_mirrors_test: Pass, Slow -duplicate_library_test: Pass, Slow -exit_code_test: Pass, Slow -import_mirrors_test: Pass, Slow -in_user_code_test: Pass, Slow -message_kind_test: Pass, Slow -show_package_warnings_test: Pass, Slow +serialization*: Slow, Pass source_map_pub_build_validity_test: Pass, Slow +sourcemaps/stacktrace_test: Pass, Slow +uri_retention_test: Pass, Slow +value_range_test: Pass, Slow -analyze_api_test: Pass, Slow # DON'T CHANGE THIS LINE -- Don't mark these tests as failing. Instead, fix the errors/warnings that they report or update the whitelist in the test-files to temporarily allow digression. -analyze_dart2js_test: Pass, Slow # DON'T CHANGE THIS LINE -- Don't mark these tests as failing. Instead, fix the errors/warnings that they report or update the whitelist in the test-files to temporarily allow digression. +[ !$checked ] +exit_code_test: Skip # This tests requires checked mode. +jsinterop/declaration_test: Slow, Pass +serialization*: Slow, Pass -[ $jscl || $runtime == ff || $runtime == firefox || $runtime == chrome || $runtime == safari ] +[ $runtime == chrome || $runtime == ff || $runtime == firefox || $runtime == safari || $jscl ] *: Skip # dart2js uses #import('dart:io'); and it is not self-hosted (yet). -[ $system == linux ] -dart2js_batch2_test: Pass, RuntimeError # Issue 29021 diff --git a/tests/compiler/dart2js_extra/dart2js_extra.status b/tests/compiler/dart2js_extra/dart2js_extra.status index ce9ec02304c..e6eedf804cb 100644 --- a/tests/compiler/dart2js_extra/dart2js_extra.status +++ b/tests/compiler/dart2js_extra/dart2js_extra.status @@ -2,147 +2,154 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $compiler == dart2js ] -class_test: Fail -statements_test: Fail -typed_locals_test: Fail -no_such_method_test: Fail # Wrong Invocation.memberName. -constant_javascript_semantics4_test: Fail, OK -mirrors_used_closure_test: Fail # Issue 17939 -dummy_compiler_test: Slow, Pass -recursive_import_test: Slow, Pass - -[ $compiler == dart2js && $browser ] -dummy_compiler_test: Skip -recursive_import_test: Skip - -[ $compiler == dart2js && $runtime == d8 && $host_checked ] -dummy_compiler_test: Skip # Issue 30773 -recursive_import_test: Skip # Issue 30773 - -[ $compiler == dart2analyzer && $builder_tag == strong ] -dummy_compiler_test: Skip # Issue 28649 -recursive_import_test: Skip # Issue 28649 - -[ $hot_reload || $hot_reload_rollback ] -recursive_import_test: Skip # Running dart2js under frequent reloads is slow. -dummy_compiler_test: Skip # Running dart2js under frequent reloads is slow. - [ $builder_tag == asan ] recursive_import_test: Skip # Issue 27441 -[ ($compiler == dartk || $compiler == dartkp) && $mode == debug ] +[ $compiler == dart2js ] +class_test: Fail +constant_javascript_semantics4_test: Fail, OK dummy_compiler_test: Slow, Pass +mirror_printer_test: Pass, Slow # Issue 25940, 16473 +mirrors_used_closure_test: Fail # Issue 17939 +no_such_method_test: Fail # Wrong Invocation.memberName. recursive_import_test: Slow, Pass +statements_test: Fail +typed_locals_test: Fail -[ $compiler == dart2js && $checked ] -variable_type_test/03: Fail, OK -variable_type_test/01: Fail, OK +[ $runtime == jsshell ] +deferred/load_in_correct_order_test: SkipByDesign # jsshell preamble does not support this test. +timer_test: Fail # Issue 7728. -[ $compiler == dart2js && $fast_startup ] -21666_test: Fail # mirrors not supported -23056_test: Fail # mirrors not supported -closure_type_reflection2_test: Fail # mirrors not supported -closure_type_reflection_test: Fail # mirrors not supported -deferred/deferred_mirrors1_lib: Fail # mirrors not supported -deferred/deferred_mirrors1_test: Fail # mirrors not supported -deferred/deferred_mirrors2_lazy: Fail # mirrors not supported -deferred/deferred_mirrors2_lib3: Fail # mirrors not supported -deferred/deferred_mirrors2_test: Fail # mirrors not supported -deferred/reflect_multiple_annotations_test: CompileTimeError # mirrors not supported -deferred/reflect_multiple_default_arg_test: CompileTimeError # mirrors not supported -inference_nsm_mirrors_test: Fail # mirrors not supported -invalid_annotation2_test/none: Fail # mirrors not supported -invalid_annotation2_test/01: Pass # mirrors not supported, passes for the wrong reason -mirror_enqueuer_regression_test: Fail # mirrors not supported -mirror_invalid_field_access2_test: Fail # mirrors not supported -mirror_invalid_field_access3_test: Fail # mirrors not supported -mirror_invalid_field_access4_test: Fail # mirrors not supported -mirror_invalid_field_access_test: Fail # mirrors not supported -mirror_invalid_invoke2_test: Fail # mirrors not supported -mirror_invalid_invoke3_test: Fail # mirrors not supported -mirror_invalid_invoke_test: Fail # mirrors not supported -mirror_printer_test: Fail # mirrors not supported -mirror_test: Fail # mirrors not supported -mirror_type_inference_field2_test: Fail # mirrors not supported -mirror_type_inference_field_test: Fail # mirrors not supported -mirror_type_inference_function_test: Fail # mirrors not supported -mirrors_declarations_filtering_test: Fail # mirrors not supported -mirrors_used_closure_test: Fail # mirrors not supported -mirrors_used_metatargets_test: Fail # mirrors not supported -mirrors_used_native_test: Fail # mirrors not supported -mirrors_used_warning2_test: Fail # mirrors not supported -mirrors_used_warning_test: Fail # mirrors not supported -no_such_method_mirrors_test: Fail # mirrors not supported -reflect_native_types_test: Fail # mirrors not supported +[ $runtime == none ] +timer_negative_test: Fail, OK # A negative runtime test. -[ $compiler == dart2js && ($runtime == d8 || $runtime == chrome || $runtime == drt) ] -bound_closure_interceptor_type_test: Fail, Pass # v8 issue 3084. https://code.google.com/p/v8/issues/detail?id=3084 +[ $builder_tag == strong && $compiler == dart2analyzer ] +dummy_compiler_test: Skip # Issue 28649 +recursive_import_test: Skip # Issue 28649 [ $compiler == dart2js && $mode == debug ] operator_test: Skip string_interpolation_test: Skip +[ $compiler == dart2js && $runtime == chrome && $system == windows ] +class_test: Pass, Slow # Issue 25940 +closure_capture3_test: Pass, Slow # Issue 25940 +closure_capture5_test: Pass, Slow # Issue 25940 +conditional_test: Pass, Slow # Issue 25940 +consistent_codeUnitAt_error_test: Pass, Slow # Issue 25940 +constant_javascript_semantics2_test: Pass, Slow # Issue 25940 +deferred_split_test: Pass, Slow # Issue 25940 + [ $compiler == dart2js && $runtime == chromeOnAndroid ] no_such_method_mirrors_test: Pass, Slow # TODO(kasperl): Please triage. -[ $compiler == dart2js && $runtime == none ] -*: Fail, Pass # TODO(ahe): Triage these tests. +[ $compiler == dart2js && $runtime == d8 && $host_checked ] +dummy_compiler_test: Skip # Issue 30773 +recursive_import_test: Skip # Issue 30773 -[ $compiler == dart2js && $minified ] -to_string_test: Fail # Issue 7179. -runtime_type_test: Fail, OK # Tests extected output of Type.toString(). -code_motion_exception_test: Skip # Requires unminified operator names. -mirrors_used_warning_test/minif: Fail, OK # Tests warning that minified code will be broken. -deferred/reflect_multiple_annotations_test: Fail -deferred/reflect_multiple_default_arg_test: Fail - - -[ $compiler == dart2js && $runtime == safari ] -deferred_fail_and_retry_worker_test: Timeout # Issue 22106 - -[ $compiler == dart2js && ($runtime == drt || $runtime == ff || $runtime == safari || $runtime == jsshell) ] -code_motion_exception_test: Skip # Required V8 specific format of JavaScript errors. - -[ $compiler == dart2js && ($runtime == drt || $runtime == ff || $runtime == safari || $runtime == safarimobilesim || $runtime == chrome || $runtime == chromeOnAndroid) ] -isolate2_test/01: Fail # Issue 14458. - -[ $runtime == jsshell ] -timer_test: Fail # Issue 7728. -deferred/load_in_correct_order_test: SkipByDesign # jsshell preamble does not support this test. - -[ $runtime == none ] -timer_negative_test: Fail, OK # A negative runtime test. - -[ $compiler == dart2js && $csp ] -deferred_fail_and_retry_test: SkipByDesign # Uses eval to simulate failed loading. -deferred_fail_and_retry_worker_test: SkipByDesign # Uses eval to simulate failed loading. -deferred_custom_loader_test: SkipByDesign # Issue 25683 -js_interop_test: RuntimeError # Issue 31082 - -[ $compiler == none && $runtime == vm ] -invalid_annotation_test/01: MissingCompileTimeError, OK # vm is lazy -unconditional_dartio_import_test: SkipByDesign # dart2js only test -new_from_env_test: SkipByDesign # dart2js only test - -[ $compiler == dart2js && $runtime == chrome && $system == windows ] -class_test: Pass, Slow # Issue 25940 -consistent_codeUnitAt_error_test: Pass, Slow # Issue 25940 -closure_capture3_test: Pass, Slow # Issue 25940 -deferred_split_test: Pass, Slow # Issue 25940 -closure_capture5_test: Pass, Slow # Issue 25940 -conditional_test: Pass, Slow # Issue 25940 -constant_javascript_semantics2_test: Pass, Slow # Issue 25940 +[ $compiler == dart2js && $runtime == drt && $csp ] +deferred/load_in_correct_order_test: SkipByDesign # Purposely uses `eval` [ $compiler == dart2js && $runtime == ff && $system == windows ] consistent_index_error_string_test: Pass, Slow # Issue 25940 -[ $compiler == dart2js ] -mirror_printer_test: Pass, Slow # Issue 25940, 16473 +[ $compiler == dart2js && $runtime == none ] +*: Fail, Pass # TODO(ahe): Triage these tests. -[ $compiler == dart2js && !$dart2js_with_kernel ] -expose_this1_test: RuntimeError # Issue 31254 -expose_this2_test: RuntimeError # Issue 31254 +[ $compiler == dart2js && $runtime == safari ] +deferred_fail_and_retry_worker_test: Timeout # Issue 22106 + +[ $compiler == dart2js && $browser ] +dummy_compiler_test: Skip +recursive_import_test: Skip + +[ $compiler == dart2js && $checked ] +variable_type_test/01: Fail, OK +variable_type_test/03: Fail, OK + +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] +21666_test: RuntimeError +closure_capture2_test: RuntimeError +closure_type_reflection2_test: RuntimeError +closure_type_reflection_test: RuntimeError +constant_javascript_semantics_test/01: MissingCompileTimeError +deferred/deferred_mirrors1_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/deferred_mirrors2_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/reflect_multiple_annotations_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/reflect_multiple_default_arg_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/uninstantiated_type_variable_test: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +deferred_custom_loader_test: RuntimeError +deferred_fail_and_retry_test: RuntimeError +deferred_fail_and_retry_worker_test: Fail +dummy_compiler_test: CompileTimeError +invalid_annotation2_test/none: RuntimeError +label_test/06: MissingCompileTimeError +minus_zero_test/01: MissingCompileTimeError +mirror_invalid_field_access2_test: RuntimeError +mirror_invalid_field_access3_test: RuntimeError +mirror_invalid_field_access4_test: RuntimeError +mirror_invalid_field_access_test: RuntimeError +mirror_invalid_invoke2_test: RuntimeError +mirror_invalid_invoke3_test: RuntimeError +mirror_invalid_invoke_test: RuntimeError +mirror_printer_test/01: RuntimeError +mirror_printer_test/none: RuntimeError +mirror_test: RuntimeError +mirror_type_inference_field2_test: RuntimeError +mirror_type_inference_field_test: RuntimeError +mirror_type_inference_function_test: RuntimeError +mirrors_declarations_filtering_test: RuntimeError +mirrors_used_metatargets_test: RuntimeError +mirrors_used_native_test: RuntimeError +mirrors_used_warning2_test: RuntimeError +mirrors_used_warning_test/minif: RuntimeError +mirrors_used_warning_test/none: RuntimeError +private_symbol_literal_test/01: MissingCompileTimeError +private_symbol_literal_test/02: MissingCompileTimeError +private_symbol_literal_test/03: MissingCompileTimeError +private_symbol_literal_test/04: MissingCompileTimeError +private_symbol_literal_test/05: MissingCompileTimeError +private_symbol_literal_test/06: MissingCompileTimeError +recursive_import_test: CompileTimeError +reflect_native_types_test: RuntimeError +regress/4562_test/none: CompileTimeError +string_interpolation_dynamic_test: RuntimeError +string_interpolation_test: RuntimeError +type_constant_switch_test/01: MissingCompileTimeError +unconditional_dartio_import_test: RuntimeError + +[ $compiler == dart2js && $csp ] +deferred_custom_loader_test: SkipByDesign # Issue 25683 +deferred_fail_and_retry_test: SkipByDesign # Uses eval to simulate failed loading. +deferred_fail_and_retry_worker_test: SkipByDesign # Uses eval to simulate failed loading. +js_interop_test: RuntimeError # Issue 31082 + +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +23056_test: Pass +closure_capture2_test: RuntimeError +constant_javascript_semantics_test/01: MissingCompileTimeError +deferred/deferred_mirrors1_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/deferred_mirrors2_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/reflect_multiple_annotations_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred/reflect_multiple_default_arg_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_custom_loader_test: RuntimeError +deferred_fail_and_retry_test: RuntimeError +deferred_fail_and_retry_worker_test: Fail +dummy_compiler_test: CompileTimeError +label_test/06: MissingCompileTimeError +mirror_enqueuer_regression_test: Pass +private_symbol_literal_test/01: MissingCompileTimeError +private_symbol_literal_test/02: MissingCompileTimeError +private_symbol_literal_test/03: MissingCompileTimeError +private_symbol_literal_test/04: MissingCompileTimeError +private_symbol_literal_test/05: MissingCompileTimeError +private_symbol_literal_test/06: MissingCompileTimeError +recursive_import_test: CompileTimeError +regress/4562_test/none: CompileTimeError +string_interpolation_dynamic_test: RuntimeError +string_interpolation_test: RuntimeError +type_constant_switch_test/01: MissingCompileTimeError +unconditional_dartio_import_test: RuntimeError [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] 21666_test: RuntimeError @@ -238,83 +245,74 @@ string_interpolation_test: RuntimeError type_constant_switch_test/01: MissingCompileTimeError unconditional_dartio_import_test: RuntimeError # Issue 30902 -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -23056_test: Pass -closure_capture2_test: RuntimeError -constant_javascript_semantics_test/01: MissingCompileTimeError -deferred/deferred_mirrors1_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/deferred_mirrors2_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/reflect_multiple_annotations_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/reflect_multiple_default_arg_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_custom_loader_test: RuntimeError -deferred_fail_and_retry_test: RuntimeError -deferred_fail_and_retry_worker_test: Fail -dummy_compiler_test: CompileTimeError -label_test/06: MissingCompileTimeError -mirror_enqueuer_regression_test: Pass -private_symbol_literal_test/01: MissingCompileTimeError -private_symbol_literal_test/02: MissingCompileTimeError -private_symbol_literal_test/03: MissingCompileTimeError -private_symbol_literal_test/04: MissingCompileTimeError -private_symbol_literal_test/05: MissingCompileTimeError -private_symbol_literal_test/06: MissingCompileTimeError -recursive_import_test: CompileTimeError -regress/4562_test/none: CompileTimeError -string_interpolation_dynamic_test: RuntimeError -string_interpolation_test: RuntimeError -type_constant_switch_test/01: MissingCompileTimeError -unconditional_dartio_import_test: RuntimeError +[ $compiler == dart2js && !$dart2js_with_kernel ] +expose_this1_test: RuntimeError # Issue 31254 +expose_this2_test: RuntimeError # Issue 31254 -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -21666_test: RuntimeError -closure_capture2_test: RuntimeError -closure_type_reflection2_test: RuntimeError -closure_type_reflection_test: RuntimeError -constant_javascript_semantics_test/01: MissingCompileTimeError -deferred/deferred_mirrors1_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/deferred_mirrors2_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/reflect_multiple_annotations_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/reflect_multiple_default_arg_test: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred/uninstantiated_type_variable_test: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -deferred_custom_loader_test: RuntimeError -deferred_fail_and_retry_test: RuntimeError -deferred_fail_and_retry_worker_test: Fail -dummy_compiler_test: CompileTimeError -invalid_annotation2_test/none: RuntimeError -label_test/06: MissingCompileTimeError -minus_zero_test/01: MissingCompileTimeError -mirror_invalid_field_access2_test: RuntimeError -mirror_invalid_field_access3_test: RuntimeError -mirror_invalid_field_access4_test: RuntimeError -mirror_invalid_field_access_test: RuntimeError -mirror_invalid_invoke2_test: RuntimeError -mirror_invalid_invoke3_test: RuntimeError -mirror_invalid_invoke_test: RuntimeError -mirror_printer_test/01: RuntimeError -mirror_printer_test/none: RuntimeError -mirror_test: RuntimeError -mirror_type_inference_field2_test: RuntimeError -mirror_type_inference_field_test: RuntimeError -mirror_type_inference_function_test: RuntimeError -mirrors_declarations_filtering_test: RuntimeError -mirrors_used_metatargets_test: RuntimeError -mirrors_used_native_test: RuntimeError -mirrors_used_warning2_test: RuntimeError -mirrors_used_warning_test/minif: RuntimeError -mirrors_used_warning_test/none: RuntimeError -private_symbol_literal_test/01: MissingCompileTimeError -private_symbol_literal_test/02: MissingCompileTimeError -private_symbol_literal_test/03: MissingCompileTimeError -private_symbol_literal_test/04: MissingCompileTimeError -private_symbol_literal_test/05: MissingCompileTimeError -private_symbol_literal_test/06: MissingCompileTimeError -recursive_import_test: CompileTimeError -reflect_native_types_test: RuntimeError -regress/4562_test/none: CompileTimeError -string_interpolation_dynamic_test: RuntimeError -string_interpolation_test: RuntimeError -type_constant_switch_test/01: MissingCompileTimeError -unconditional_dartio_import_test: RuntimeError +[ $compiler == dart2js && $fast_startup ] +21666_test: Fail # mirrors not supported +23056_test: Fail # mirrors not supported +closure_type_reflection2_test: Fail # mirrors not supported +closure_type_reflection_test: Fail # mirrors not supported +deferred/deferred_mirrors1_lib: Fail # mirrors not supported +deferred/deferred_mirrors1_test: Fail # mirrors not supported +deferred/deferred_mirrors2_lazy: Fail # mirrors not supported +deferred/deferred_mirrors2_lib3: Fail # mirrors not supported +deferred/deferred_mirrors2_test: Fail # mirrors not supported +deferred/reflect_multiple_annotations_test: CompileTimeError # mirrors not supported +deferred/reflect_multiple_default_arg_test: CompileTimeError # mirrors not supported +inference_nsm_mirrors_test: Fail # mirrors not supported +invalid_annotation2_test/01: Pass # mirrors not supported, passes for the wrong reason +invalid_annotation2_test/none: Fail # mirrors not supported +mirror_enqueuer_regression_test: Fail # mirrors not supported +mirror_invalid_field_access2_test: Fail # mirrors not supported +mirror_invalid_field_access3_test: Fail # mirrors not supported +mirror_invalid_field_access4_test: Fail # mirrors not supported +mirror_invalid_field_access_test: Fail # mirrors not supported +mirror_invalid_invoke2_test: Fail # mirrors not supported +mirror_invalid_invoke3_test: Fail # mirrors not supported +mirror_invalid_invoke_test: Fail # mirrors not supported +mirror_printer_test: Fail # mirrors not supported +mirror_test: Fail # mirrors not supported +mirror_type_inference_field2_test: Fail # mirrors not supported +mirror_type_inference_field_test: Fail # mirrors not supported +mirror_type_inference_function_test: Fail # mirrors not supported +mirrors_declarations_filtering_test: Fail # mirrors not supported +mirrors_used_closure_test: Fail # mirrors not supported +mirrors_used_metatargets_test: Fail # mirrors not supported +mirrors_used_native_test: Fail # mirrors not supported +mirrors_used_warning2_test: Fail # mirrors not supported +mirrors_used_warning_test: Fail # mirrors not supported +no_such_method_mirrors_test: Fail # mirrors not supported +reflect_native_types_test: Fail # mirrors not supported + +[ $compiler == dart2js && $minified ] +code_motion_exception_test: Skip # Requires unminified operator names. +deferred/reflect_multiple_annotations_test: Fail +deferred/reflect_multiple_default_arg_test: Fail +mirrors_used_warning_test/minif: Fail, OK # Tests warning that minified code will be broken. +runtime_type_test: Fail, OK # Tests extected output of Type.toString(). +to_string_test: Fail # Issue 7179. + +[ $compiler == dart2js && ($runtime == chrome || $runtime == chromeOnAndroid || $runtime == drt || $runtime == ff || $runtime == safari || $runtime == safarimobilesim) ] +isolate2_test/01: Fail # Issue 14458. + +[ $compiler == dart2js && ($runtime == chrome || $runtime == d8 || $runtime == drt) ] +bound_closure_interceptor_type_test: Fail, Pass # v8 issue 3084. https://code.google.com/p/v8/issues/detail?id=3084 + +[ $compiler == dart2js && ($runtime == drt || $runtime == ff || $runtime == jsshell || $runtime == safari) ] +code_motion_exception_test: Skip # Required V8 specific format of JavaScript errors. + +[ $compiler == none && $runtime == vm ] +invalid_annotation_test/01: MissingCompileTimeError, OK # vm is lazy +new_from_env_test: SkipByDesign # dart2js only test +unconditional_dartio_import_test: SkipByDesign # dart2js only test + +[ $mode == debug && ($compiler == dartk || $compiler == dartkp) ] +dummy_compiler_test: Slow, Pass +recursive_import_test: Slow, Pass + +[ $hot_reload || $hot_reload_rollback ] +dummy_compiler_test: Skip # Running dart2js under frequent reloads is slow. +recursive_import_test: Skip # Running dart2js under frequent reloads is slow. -[ $compiler == dart2js && $runtime == drt && $csp ] -deferred/load_in_correct_order_test: SkipByDesign # Purposely uses `eval` diff --git a/tests/compiler/dart2js_native/dart2js_native.status b/tests/compiler/dart2js_native/dart2js_native.status index 63f57c1922a..fb8f6dd5dec 100644 --- a/tests/compiler/dart2js_native/dart2js_native.status +++ b/tests/compiler/dart2js_native/dart2js_native.status @@ -5,25 +5,38 @@ [ $browser ] *: Skip -[ $compiler == dart2js && !$dart2js_with_kernel ] -native_no_such_method_exception4_frog_test: CompileTimeError # Issue 9631 -native_no_such_method_exception5_frog_test: CompileTimeError # Issue 9631 -bound_closure_super_test: Fail -fake_thing_test: Fail # Issue 13010 - -[ $compiler == dart2js && $fast_startup && !$dart2js_with_kernel ] -mirror_intercepted_field_test: Fail # mirrors not supported -native_mirror_test: Fail # mirrors not supported -native_no_such_method_exception3_frog_test: Fail # mirrors not supported -native_no_such_method_exception4_frog_test: Fail # mirrors not supported -native_no_such_method_exception5_frog_test: Fail # mirrors not supported - -[ $compiler == dart2js && $minified && !$dart2js_with_kernel ] -optimization_hints_test: Fail, OK # Test relies on unminified names. - [ $compiler == dart2js && $runtime == d8 && $system == windows && !$dart2js_with_kernel ] compute_this_script_test: Skip # Issue 17458 +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] +bound_closure_super_test: RuntimeError +fake_thing_test: RuntimeError +mirror_intercepted_field_test: RuntimeError +native_library_same_name_used_frog_test: CompileTimeError +native_mirror_test: RuntimeError +native_no_such_method_exception4_frog_test: RuntimeError +native_no_such_method_exception5_frog_test: RuntimeError +optimization_hints_test: RuntimeError +subclassing_constructor_1_test: RuntimeError +subclassing_super_call_test: RuntimeError +subclassing_super_field_1_test: RuntimeError +subclassing_super_field_2_test: RuntimeError + +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +bound_closure_super_test: RuntimeError +fake_thing_test: RuntimeError +mirror_intercepted_field_test: RuntimeError +native_library_same_name_used_frog_test: CompileTimeError +native_mirror_test: RuntimeError +native_no_such_method_exception3_frog_test: RuntimeError +native_no_such_method_exception4_frog_test: RuntimeError +native_no_such_method_exception5_frog_test: RuntimeError +optimization_hints_test: RuntimeError +subclassing_constructor_1_test: RuntimeError +subclassing_super_call_test: RuntimeError +subclassing_super_field_1_test: RuntimeError +subclassing_super_field_2_test: RuntimeError + [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] bound_closure_super_test: RuntimeError compute_this_script_test: Crash # 'file:*/pkg/compiler/lib/src/ssa/types.dart': Failed assertion: line 63 pos 12: '!result.isEmpty': is not true. @@ -53,32 +66,19 @@ subclassing_super_call_test: RuntimeError subclassing_super_field_1_test: RuntimeError subclassing_super_field_2_test: RuntimeError -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -bound_closure_super_test: RuntimeError -fake_thing_test: RuntimeError -mirror_intercepted_field_test: RuntimeError -native_library_same_name_used_frog_test: CompileTimeError -native_mirror_test: RuntimeError -native_no_such_method_exception3_frog_test: RuntimeError -native_no_such_method_exception4_frog_test: RuntimeError -native_no_such_method_exception5_frog_test: RuntimeError -optimization_hints_test: RuntimeError -subclassing_constructor_1_test: RuntimeError -subclassing_super_call_test: RuntimeError -subclassing_super_field_1_test: RuntimeError -subclassing_super_field_2_test: RuntimeError +[ $compiler == dart2js && !$dart2js_with_kernel ] +bound_closure_super_test: Fail +fake_thing_test: Fail # Issue 13010 +native_no_such_method_exception4_frog_test: CompileTimeError # Issue 9631 +native_no_such_method_exception5_frog_test: CompileTimeError # Issue 9631 -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -bound_closure_super_test: RuntimeError -fake_thing_test: RuntimeError -mirror_intercepted_field_test: RuntimeError -native_library_same_name_used_frog_test: CompileTimeError -native_mirror_test: RuntimeError -native_no_such_method_exception4_frog_test: RuntimeError -native_no_such_method_exception5_frog_test: RuntimeError -optimization_hints_test: RuntimeError -subclassing_constructor_1_test: RuntimeError -subclassing_super_call_test: RuntimeError -subclassing_super_field_1_test: RuntimeError -subclassing_super_field_2_test: RuntimeError +[ $compiler == dart2js && !$dart2js_with_kernel && $fast_startup ] +mirror_intercepted_field_test: Fail # mirrors not supported +native_mirror_test: Fail # mirrors not supported +native_no_such_method_exception3_frog_test: Fail # mirrors not supported +native_no_such_method_exception4_frog_test: Fail # mirrors not supported +native_no_such_method_exception5_frog_test: Fail # mirrors not supported + +[ $compiler == dart2js && !$dart2js_with_kernel && $minified ] +optimization_hints_test: Fail, OK # Test relies on unminified names. diff --git a/tests/corelib/corelib.status b/tests/corelib/corelib.status index 6b3dab84122..9c4289e0564 100644 --- a/tests/corelib/corelib.status +++ b/tests/corelib/corelib.status @@ -2,168 +2,20 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $strong ] -*: SkipByDesign # tests/corelib_strong has the strong mode versions of these tests. - -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -compare_to2_test: Fail # Bug 4018 -symbol_test/01: Fail, Pass # bug 11669 -unicode_test: Fail # Bug 6706 - -symbol_reserved_word_test/05: CompileTimeError # bug 20191 -symbol_reserved_word_test/06: RuntimeError # bug 11669 -symbol_reserved_word_test/09: RuntimeError # bug 11669 -symbol_reserved_word_test/12: RuntimeError # bug 11669 - -symbol_test/none: Fail # bug 11669 -symbol_operator_test/03: Fail # bug 11669 -string_case_test/01: Fail # Bug 18061 - -[ $compiler == none && ($runtime == vm || $runtime == flutter)] -string_trimlr_test/02: RuntimeError # Issue 29060 - -[ $compiler == precompiler || $compiler == app_jit ] -string_trimlr_test/02: RuntimeError # Issue 29060 - -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -symbol_reserved_word_test/02: CompileTimeError # bug 20191 - -symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 -symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972 -symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972 - -[ $compiler == dart2js && !$dart2js_with_kernel ] -double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being whitespace. -int_modulo_arith_test/bignum: RuntimeError # No bigints. -int_modulo_arith_test/modPow: RuntimeError # No bigints. -int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 being whitespace. -int_parse_radix_test/02: Fail # No bigints. -integer_to_radix_string_test: RuntimeError # issue 22045 -list_unmodifiable_test: Pass, RuntimeError # Issue 28712 -symbol_reserved_word_test/02: CompileTimeError # bug 20191 -symbol_reserved_word_test/03: RuntimeError # bug 19972, new Symbol('void') should be allowed. -symbol_reserved_word_test/05: Crash # bug 20191 - -[ $compiler == dart2js && $fast_startup ] -apply3_test: Fail # mirrors not supported - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $runtime != drt ] -symbol_test/02: MissingCompileTimeError # bug 11669 -symbol_test/03: MissingCompileTimeError # bug 11669 - -# Firefox takes advantage of the ECMAScript number parsing cop-out clause -# (presumably added to allow Mozilla's existing behavior) -# and only looks at the first 20 significant digits. -# The Dart VM and the other ECMAScript implementations follow the correct -# IEEE-754 rounding algorithm. -[ $runtime == ff || $runtime == jsshell ] -double_parse_test/02: Fail, OK - -[ $runtime == safari || $runtime == safarimobilesim ] -double_round3_test: RuntimeError -double_round_to_double2_test: Pass, Fail, OK -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. - -[ $runtime == ff ] -double_round3_test: Pass, Fail, OK # Fails on ff 34, passes on ff 35. Runtime rounds 0.49999999999999994 to 1. -double_round_to_double2_test: Pass, Fail, OK # Fails on ff 34, passes on ff 35. Runtime rounds 0.49999999999999994 to 1. - -[ $runtime == jsshell ] -string_case_test/01: RuntimeError # jsshell does not recognize character 223 aka \xdf -unicode_test: RuntimeError # jsshell does not recognize character 223 aka \xdf - -[ $compiler == dart2js && $runtime == drt && $csp && $minified ] -core_runtime_types_test: Pass, Fail # Issue 27913 - -[ $compiler == dart2js && !$dart2js_with_kernel ] -error_stack_trace1_test: RuntimeError # Issue 12399 -hash_set_test/01: RuntimeError # Issue 11551 -integer_to_string_test/01: RuntimeError # Issue 1533 -iterable_return_type_test/01: RuntimeError # Issue 20085 -iterable_return_type_test/02: RuntimeError # Dart2js does not support Uint64*. -iterable_to_list_test/01: RuntimeError # Issue 26501 - -big_integer_*: Skip # VM specific test. -bit_twiddling_bigint_test: RuntimeError # Requires bigint support. -compare_to2_test: RuntimeError, OK # Requires bigint support. -string_base_vm_test: RuntimeError, OK # VM specific test. -nan_infinity_test/01: Fail # Issue 11551 -regress_r21715_test: RuntimeError # Requires bigint support. +[ $compiler == dart2analyzer ] +duration2_test: StaticWarning, OK # Test generates error on purpose. +error_stack_trace_test: StaticWarning, OK # Test generates errors on purpose. +hash_set_type_check_test: StaticWarning, OK # Tests failing type tests. +int_parse_radix_bad_handler_test: Fail +iterable_element_at_test: StaticWarning, OK # Test generates errors on purpose. +num_clamp_test: StaticWarning, OK # Test generates errors on purpose. +string_test: StaticWarning, OK # Test generates error on purpose. [ $compiler == dart2js ] regexp/pcre_test: Pass, Slow # Issue 21593 -[ $compiler == dart2js && $runtime == none ] -*: Fail, Pass # TODO(ahe): Triage these tests. - -[ $compiler == dart2js && $runtime == chromeOnAndroid ] -list_as_map_test: Pass, Slow # TODO(kasperl): Please triage. -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. - -[ $compiler == dart2js && $runtime == drt ] -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. - -[ $compiler == dart2js && $runtime == safarimobilesim ] -string_split_test: RuntimeError # Issue 21431 - -[ $compiler == dart2js && $runtime == safarimobilesim ] -list_test/01: Fail # Safari bug: Array(-2) seen as dead code. -string_trimlr_test/01: Fail -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. - -# Analyzer's implementation of fromEnvironment assumes that undefined -# environment variables have an unspecified value (rather than being -# null) because it is expected that the user will supply a value when -# the code is run. This means that it produces slightly different -# error messages than the VM and Dart2js. -[ $compiler == dart2analyzer && $checked ] -from_environment_const_type_undefined_test/09: CompileTimeError -from_environment_const_type_undefined_test/11: CompileTimeError -from_environment_const_type_undefined_test/12: CompileTimeError -from_environment_const_type_undefined_test/13: CompileTimeError -from_environment_const_type_undefined_test/14: CompileTimeError -from_environment_const_type_undefined_test/16: CompileTimeError - -[ $compiler == dart2analyzer ] -int_parse_radix_bad_handler_test: fail -hash_set_type_check_test: StaticWarning, OK # Tests failing type tests. -error_stack_trace_test: StaticWarning, OK # Test generates errors on purpose. -iterable_element_at_test: StaticWarning, OK # Test generates errors on purpose. -num_clamp_test: StaticWarning, OK # Test generates errors on purpose. -string_test: StaticWarning, OK # Test generates error on purpose. -duration2_test: StaticWarning, OK # Test generates error on purpose. - -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - -[ $system == windows && $arch == x64 ] -stopwatch_test: Skip # Flaky test due to expected performance behaviour. - -[ $runtime != d8 && $runtime != vm && $runtime != dart_precompiled ] -regexp/*: Skip # The regexp tests are not verified to work on non d8/vm platforms yet. - -[ $runtime == d8 ] -uri_base_test: RuntimeError # d8 preamble uses custom URI scheme "org-dartlang-d8-preamble:". - -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter] -regexp/global_test: Skip # Timeout. Issue 21709 and 21708 -regexp/pcre_test: Pass, Slow, Timeout # Issues 21593 and 22008 -regexp/capture-3: Pass, Slow, Timeout # Issues 21593 and 22008 - -[ $runtime != vm && $runtime != dart_precompiled && $compiler != dart2analyzer] -data_resource_test: RuntimeError # Issue 23825 (not implemented yet). -file_resource_test: Skip, OK # VM specific test, uses dart:io. -http_resource_test: Skip, OK # VM specific test, uses dart:io. - -[ $compiler == dart2js && !$browser ] -package_resource_test: RuntimeError # Issue 26842 - -[ $mode == debug ] -regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 - -[ ($runtime == vm || $runtime == dart_precompiled) && $arch == simarmv5te ] -int_parse_radix_test/*: Pass, Slow -big_integer_parsed_mul_div_vm_test: Pass, Slow +[ $compiler == dartkp ] +apply3_test: CompileTimeError # No support for mirrors [ $compiler == precompiler ] apply3_test: SkipByDesign # Imports dart:mirrors @@ -171,85 +23,18 @@ big_integer_huge_mul_vm_test: Pass, Timeout # --no_intrinsify big_integer_parsed_mul_div_vm_test: Pass, Timeout # --no_intrinsify int_parse_radix_test: Pass, Timeout # --no_intrinsify -[ $compiler == precompiler || $compiler == dartkp ] -regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter +[ $mode == debug ] +regexp/pcre_test: Pass, Slow # Timeout. Issue 22008 -[ $compiler == precompiler || $compiler == app_jit ] -data_resource_test: Skip # Resolve URI not supported yet in product mode. -package_resource_test: Skip # Resolve URI not supported yet in product mode. -file_resource_test: Skip # Resolve URI not supported yet in product mode. -http_resource_test: Skip # Resolve URI not supported yet in product mode. +[ $runtime == d8 ] +uri_base_test: RuntimeError # d8 preamble uses custom URI scheme "org-dartlang-d8-preamble:". -[ $arch == simdbc || $arch == simdbc64 ] -regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter - -[ $hot_reload || $hot_reload_rollback ] -big_integer_parsed_mul_div_vm_test: Pass, Slow # Slow. -big_integer_huge_mul_vm_test: Pass, Slow # Slow - -[ $compiler == dart2js && !$dart2js_with_kernel ] -symbol_reserved_word_test/04: MissingCompileTimeError -symbol_reserved_word_test/07: MissingCompileTimeError -symbol_reserved_word_test/10: MissingCompileTimeError - -[ ($compiler == dartk || $compiler == dartkp) && ($runtime == vm || $runtime == dart_precompiled) ] -bool_from_environment2_test/01: MissingCompileTimeError -bool_from_environment2_test/02: MissingCompileTimeError -bool_from_environment2_test/03: MissingCompileTimeError -bool_from_environment2_test/04: MissingCompileTimeError -compare_to2_test: RuntimeError -int_from_environment3_test/01: MissingCompileTimeError -int_from_environment3_test/02: MissingCompileTimeError -int_from_environment3_test/03: MissingCompileTimeError -int_from_environment3_test/04: MissingCompileTimeError -string_case_test/01: RuntimeError -string_from_environment3_test/01: MissingCompileTimeError -string_from_environment3_test/02: MissingCompileTimeError -string_from_environment3_test/03: MissingCompileTimeError -string_from_environment3_test/04: MissingCompileTimeError -string_trimlr_test/02: RuntimeError -symbol_operator_test/03: RuntimeError -symbol_reserved_word_test/04: MissingCompileTimeError -symbol_reserved_word_test/06: RuntimeError -symbol_reserved_word_test/07: MissingCompileTimeError -symbol_reserved_word_test/09: RuntimeError -symbol_reserved_word_test/10: MissingCompileTimeError -symbol_reserved_word_test/12: RuntimeError -symbol_test/01: MissingCompileTimeError -symbol_test/02: MissingCompileTimeError -symbol_test/03: MissingCompileTimeError -symbol_test/none: RuntimeError -unicode_test: Fail # Bug 6706 - -# dartk: checked mode failures -[ $checked && ($compiler == dartk || $compiler == dartkp) ] -symbol_test/01: Pass -symbol_test/02: Pass -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 - -[ $compiler == dartkp ] -apply3_test: CompileTimeError # No support for mirrors +[ $runtime == ff ] +double_round3_test: Pass, Fail, OK # Fails on ff 34, passes on ff 35. Runtime rounds 0.49999999999999994 to 1. +double_round_to_double2_test: Pass, Fail, OK # Fails on ff 34, passes on ff 35. Runtime rounds 0.49999999999999994 to 1. [ $runtime == flutter ] apply3_test: CompileTimeError # No support for mirrors - bool_from_environment_test: Fail # Flutter Issue 9111 format_exception_test: RuntimeError # Flutter Issue 9111 from_environment_const_type_test/01: Fail # Flutter Issue 9111 @@ -276,6 +61,164 @@ string_from_environment2_test: Fail # Flutter Issue 9111 string_from_environment_test: Fail # Flutter Issue 9111 string_trimlr_test/02: RuntimeError # Flutter Issue 9111 +[ $runtime == jsshell ] +string_case_test/01: RuntimeError # jsshell does not recognize character 223 aka \xdf +unicode_test: RuntimeError # jsshell does not recognize character 223 aka \xdf + +[ $strong ] +*: SkipByDesign # tests/corelib_strong has the strong mode versions of these tests. + +[ $arch == simarmv5te && ($runtime == dart_precompiled || $runtime == vm) ] +big_integer_parsed_mul_div_vm_test: Pass, Slow +int_parse_radix_test/*: Pass, Slow + +[ $arch == x64 && $system == windows ] +stopwatch_test: Skip # Flaky test due to expected performance behaviour. + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + +# Analyzer's implementation of fromEnvironment assumes that undefined +# environment variables have an unspecified value (rather than being +# null) because it is expected that the user will supply a value when +# the code is run. This means that it produces slightly different +# error messages than the VM and Dart2js. +[ $compiler == dart2analyzer && $checked ] +from_environment_const_type_undefined_test/09: CompileTimeError +from_environment_const_type_undefined_test/11: CompileTimeError +from_environment_const_type_undefined_test/12: CompileTimeError +from_environment_const_type_undefined_test/13: CompileTimeError +from_environment_const_type_undefined_test/14: CompileTimeError +from_environment_const_type_undefined_test/16: CompileTimeError + +[ $compiler != dart2analyzer && $runtime != dart_precompiled && $runtime != vm ] +data_resource_test: RuntimeError # Issue 23825 (not implemented yet). +file_resource_test: Skip, OK # VM specific test, uses dart:io. +http_resource_test: Skip, OK # VM specific test, uses dart:io. + +[ $compiler == dart2js && $runtime == chromeOnAndroid ] +list_as_map_test: Pass, Slow # TODO(kasperl): Please triage. +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $compiler == dart2js && $runtime == drt ] +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $compiler == dart2js && $runtime == drt && $csp && $minified ] +core_runtime_types_test: Pass, Fail # Issue 27913 + +[ $compiler == dart2js && $runtime == none ] +*: Fail, Pass # TODO(ahe): Triage these tests. + +[ $compiler == dart2js && $runtime == safarimobilesim ] +list_test/01: Fail # Safari bug: Array(-2) seen as dead code. +string_split_test: RuntimeError # Issue 21431 +string_trimlr_test/01: Fail +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $compiler == dart2js && !$browser ] +package_resource_test: RuntimeError # Issue 26842 + +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] +apply3_test: RuntimeError +big_integer_arith_vm_test/add: RuntimeError +big_integer_arith_vm_test/div: RuntimeError +big_integer_arith_vm_test/gcd: RuntimeError +big_integer_arith_vm_test/mod: RuntimeError +big_integer_arith_vm_test/modInv: RuntimeError +big_integer_arith_vm_test/modPow: RuntimeError +big_integer_arith_vm_test/mul: RuntimeError +big_integer_arith_vm_test/negate: RuntimeError +big_integer_arith_vm_test/none: RuntimeError +big_integer_arith_vm_test/overflow: RuntimeError +big_integer_arith_vm_test/shift: RuntimeError +big_integer_arith_vm_test/sub: RuntimeError +big_integer_arith_vm_test/trunDiv: RuntimeError +big_integer_parsed_arith_vm_test: RuntimeError +big_integer_parsed_div_rem_vm_test: RuntimeError +big_integer_parsed_mul_div_vm_test: RuntimeError +bit_twiddling_bigint_test: RuntimeError +compare_to2_test: RuntimeError +double_parse_test/01: RuntimeError +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 +hash_set_test/01: RuntimeError +int_modulo_arith_test/bignum: RuntimeError +int_modulo_arith_test/modPow: RuntimeError +int_parse_radix_test/01: RuntimeError +int_parse_radix_test/02: RuntimeError +integer_to_radix_string_test: RuntimeError +integer_to_string_test/01: RuntimeError +iterable_return_type_test/01: RuntimeError +iterable_return_type_test/02: RuntimeError +iterable_to_list_test/01: RuntimeError +map_test: Crash # tests/corelib/map_test.dart:866:7: Internal problem: Unhandled Null in installDefaultConstructor. +nan_infinity_test/01: RuntimeError +regress_r21715_test: RuntimeError +string_base_vm_test: RuntimeError +symbol_reserved_word_test/03: RuntimeError +symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/07: MissingCompileTimeError +symbol_reserved_word_test/10: MissingCompileTimeError +symbol_test/02: MissingCompileTimeError +symbol_test/03: MissingCompileTimeError + +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +big_integer_arith_vm_test/add: RuntimeError +big_integer_arith_vm_test/div: RuntimeError +big_integer_arith_vm_test/gcd: RuntimeError +big_integer_arith_vm_test/mod: RuntimeError +big_integer_arith_vm_test/modInv: RuntimeError +big_integer_arith_vm_test/modPow: RuntimeError +big_integer_arith_vm_test/mul: RuntimeError +big_integer_arith_vm_test/negate: RuntimeError +big_integer_arith_vm_test/none: RuntimeError +big_integer_arith_vm_test/overflow: RuntimeError +big_integer_arith_vm_test/shift: RuntimeError +big_integer_arith_vm_test/sub: RuntimeError +big_integer_arith_vm_test/trunDiv: RuntimeError +big_integer_parsed_arith_vm_test: RuntimeError +big_integer_parsed_div_rem_vm_test: RuntimeError +big_integer_parsed_mul_div_vm_test: RuntimeError +bit_twiddling_bigint_test: RuntimeError +compare_to2_test: RuntimeError +double_parse_test/01: RuntimeError +hash_set_test/01: RuntimeError +int_modulo_arith_test/bignum: RuntimeError +int_modulo_arith_test/modPow: RuntimeError +int_parse_radix_test/01: RuntimeError +int_parse_radix_test/02: RuntimeError +integer_to_radix_string_test: RuntimeError +integer_to_string_test/01: RuntimeError +iterable_return_type_test/01: RuntimeError +iterable_return_type_test/02: RuntimeError +iterable_to_list_test/01: RuntimeError +map_test: Crash # tests/corelib/map_test.dart:866:7: Internal problem: Unhandled Null in installDefaultConstructor. +nan_infinity_test/01: RuntimeError +regress_r21715_test: RuntimeError +string_base_vm_test: RuntimeError +symbol_reserved_word_test/03: RuntimeError +symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/07: MissingCompileTimeError +symbol_reserved_word_test/10: MissingCompileTimeError +symbol_test/02: MissingCompileTimeError +symbol_test/03: MissingCompileTimeError + [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] apply3_test: RuntimeError big_integer_arith_vm_test/add: RuntimeError @@ -364,68 +307,48 @@ symbol_reserved_word_test/10: MissingCompileTimeError symbol_test/02: MissingCompileTimeError symbol_test/03: MissingCompileTimeError -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -big_integer_arith_vm_test/add: RuntimeError -big_integer_arith_vm_test/div: RuntimeError -big_integer_arith_vm_test/gcd: RuntimeError -big_integer_arith_vm_test/mod: RuntimeError -big_integer_arith_vm_test/modInv: RuntimeError -big_integer_arith_vm_test/modPow: RuntimeError -big_integer_arith_vm_test/mul: RuntimeError -big_integer_arith_vm_test/negate: RuntimeError -big_integer_arith_vm_test/none: RuntimeError -big_integer_arith_vm_test/overflow: RuntimeError -big_integer_arith_vm_test/shift: RuntimeError -big_integer_arith_vm_test/sub: RuntimeError -big_integer_arith_vm_test/trunDiv: RuntimeError -big_integer_parsed_arith_vm_test: RuntimeError -big_integer_parsed_div_rem_vm_test: RuntimeError -big_integer_parsed_mul_div_vm_test: RuntimeError -bit_twiddling_bigint_test: RuntimeError -compare_to2_test: RuntimeError -double_parse_test/01: RuntimeError -hash_set_test/01: RuntimeError -int_modulo_arith_test/bignum: RuntimeError -int_modulo_arith_test/modPow: RuntimeError -int_parse_radix_test/01: RuntimeError -int_parse_radix_test/02: RuntimeError -integer_to_radix_string_test: RuntimeError -integer_to_string_test/01: RuntimeError -iterable_return_type_test/01: RuntimeError -iterable_return_type_test/02: RuntimeError -iterable_to_list_test/01: RuntimeError -map_test: Crash # tests/corelib/map_test.dart:866:7: Internal problem: Unhandled Null in installDefaultConstructor. -nan_infinity_test/01: RuntimeError -regress_r21715_test: RuntimeError -string_base_vm_test: RuntimeError -symbol_reserved_word_test/03: RuntimeError +[ $compiler == dart2js && !$dart2js_with_kernel ] +big_integer_*: Skip # VM specific test. +bit_twiddling_bigint_test: RuntimeError # Requires bigint support. +compare_to2_test: RuntimeError, OK # Requires bigint support. +double_parse_test/01: Pass, Fail # JS implementations disagree on U+0085 being whitespace. +error_stack_trace1_test: RuntimeError # Issue 12399 +hash_set_test/01: RuntimeError # Issue 11551 +int_modulo_arith_test/bignum: RuntimeError # No bigints. +int_modulo_arith_test/modPow: RuntimeError # No bigints. +int_parse_radix_test/01: Pass, Fail # JS implementations disagree on U+0085 being whitespace. +int_parse_radix_test/02: Fail # No bigints. +integer_to_radix_string_test: RuntimeError # issue 22045 +integer_to_string_test/01: RuntimeError # Issue 1533 +iterable_return_type_test/01: RuntimeError # Issue 20085 +iterable_return_type_test/02: RuntimeError # Dart2js does not support Uint64*. +iterable_to_list_test/01: RuntimeError # Issue 26501 +list_unmodifiable_test: Pass, RuntimeError # Issue 28712 +nan_infinity_test/01: Fail # Issue 11551 +regress_r21715_test: RuntimeError # Requires bigint support. +string_base_vm_test: RuntimeError, OK # VM specific test. +symbol_reserved_word_test/02: CompileTimeError # bug 20191 +symbol_reserved_word_test/03: RuntimeError # bug 19972, new Symbol('void') should be allowed. symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/05: Crash # bug 20191 symbol_reserved_word_test/07: MissingCompileTimeError symbol_reserved_word_test/10: MissingCompileTimeError -symbol_test/02: MissingCompileTimeError -symbol_test/03: MissingCompileTimeError -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -apply3_test: RuntimeError -big_integer_arith_vm_test/add: RuntimeError -big_integer_arith_vm_test/div: RuntimeError -big_integer_arith_vm_test/gcd: RuntimeError -big_integer_arith_vm_test/mod: RuntimeError -big_integer_arith_vm_test/modInv: RuntimeError -big_integer_arith_vm_test/modPow: RuntimeError -big_integer_arith_vm_test/mul: RuntimeError -big_integer_arith_vm_test/negate: RuntimeError -big_integer_arith_vm_test/none: RuntimeError -big_integer_arith_vm_test/overflow: RuntimeError -big_integer_arith_vm_test/shift: RuntimeError -big_integer_arith_vm_test/sub: RuntimeError -big_integer_arith_vm_test/trunDiv: RuntimeError -big_integer_parsed_arith_vm_test: RuntimeError -big_integer_parsed_div_rem_vm_test: RuntimeError -big_integer_parsed_mul_div_vm_test: RuntimeError -bit_twiddling_bigint_test: RuntimeError -compare_to2_test: RuntimeError -double_parse_test/01: RuntimeError +[ $compiler == dart2js && $fast_startup ] +apply3_test: Fail # mirrors not supported + +[ $compiler == none && ($runtime == flutter || $runtime == vm) ] +string_trimlr_test/02: RuntimeError # Issue 29060 + +[ $runtime != d8 && $runtime != dart_precompiled && $runtime != vm ] +regexp/*: Skip # The regexp tests are not verified to work on non d8/vm platforms yet. + +[ $runtime != drt && ($compiler == app_jit || $compiler == none || $compiler == precompiler) ] +symbol_test/02: MissingCompileTimeError # bug 11669 +symbol_test/03: MissingCompileTimeError # bug 11669 + +# dartk: checked mode failures +[ $checked && ($compiler == dartk || $compiler == dartkp) ] from_environment_const_type_test/02: MissingCompileTimeError from_environment_const_type_test/03: MissingCompileTimeError from_environment_const_type_test/04: MissingCompileTimeError @@ -444,23 +367,86 @@ 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 -hash_set_test/01: RuntimeError -int_modulo_arith_test/bignum: RuntimeError -int_modulo_arith_test/modPow: RuntimeError -int_parse_radix_test/01: RuntimeError -int_parse_radix_test/02: RuntimeError -integer_to_radix_string_test: RuntimeError -integer_to_string_test/01: RuntimeError -iterable_return_type_test/01: RuntimeError -iterable_return_type_test/02: RuntimeError -iterable_to_list_test/01: RuntimeError -map_test: Crash # tests/corelib/map_test.dart:866:7: Internal problem: Unhandled Null in installDefaultConstructor. -nan_infinity_test/01: RuntimeError -regress_r21715_test: RuntimeError -string_base_vm_test: RuntimeError -symbol_reserved_word_test/03: RuntimeError +symbol_test/01: Pass +symbol_test/02: Pass + +[ ($compiler == dartk || $compiler == dartkp) && ($runtime == dart_precompiled || $runtime == vm) ] +bool_from_environment2_test/01: MissingCompileTimeError +bool_from_environment2_test/02: MissingCompileTimeError +bool_from_environment2_test/03: MissingCompileTimeError +bool_from_environment2_test/04: MissingCompileTimeError +compare_to2_test: RuntimeError +int_from_environment3_test/01: MissingCompileTimeError +int_from_environment3_test/02: MissingCompileTimeError +int_from_environment3_test/03: MissingCompileTimeError +int_from_environment3_test/04: MissingCompileTimeError +string_case_test/01: RuntimeError +string_from_environment3_test/01: MissingCompileTimeError +string_from_environment3_test/02: MissingCompileTimeError +string_from_environment3_test/03: MissingCompileTimeError +string_from_environment3_test/04: MissingCompileTimeError +string_trimlr_test/02: RuntimeError +symbol_operator_test/03: RuntimeError symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/06: RuntimeError symbol_reserved_word_test/07: MissingCompileTimeError +symbol_reserved_word_test/09: RuntimeError symbol_reserved_word_test/10: MissingCompileTimeError +symbol_reserved_word_test/12: RuntimeError +symbol_test/01: MissingCompileTimeError symbol_test/02: MissingCompileTimeError symbol_test/03: MissingCompileTimeError +symbol_test/none: RuntimeError +unicode_test: Fail # Bug 6706 + +[ $arch == simdbc || $arch == simdbc64 ] +regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter + +[ $compiler == app_jit || $compiler == none || $compiler == precompiler ] +compare_to2_test: Fail # Bug 4018 +string_case_test/01: Fail # Bug 18061 +symbol_operator_test/03: Fail # bug 11669 +symbol_reserved_word_test/02: CompileTimeError # bug 20191 +symbol_reserved_word_test/04: MissingCompileTimeError # bug 11669, 19972 +symbol_reserved_word_test/05: CompileTimeError # bug 20191 +symbol_reserved_word_test/06: RuntimeError # bug 11669 +symbol_reserved_word_test/07: MissingCompileTimeError # bug 11669, 19972 +symbol_reserved_word_test/09: RuntimeError # bug 11669 +symbol_reserved_word_test/10: MissingCompileTimeError # bug 11669, 19972 +symbol_reserved_word_test/12: RuntimeError # bug 11669 +symbol_test/01: Fail, Pass # bug 11669 +symbol_test/none: Fail # bug 11669 +unicode_test: Fail # Bug 6706 + +[ $compiler == app_jit || $compiler == precompiler ] +data_resource_test: Skip # Resolve URI not supported yet in product mode. +file_resource_test: Skip # Resolve URI not supported yet in product mode. +http_resource_test: Skip # Resolve URI not supported yet in product mode. +package_resource_test: Skip # Resolve URI not supported yet in product mode. +string_trimlr_test/02: RuntimeError # Issue 29060 + +[ $compiler == dartkp || $compiler == precompiler ] +regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter + +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +regexp/capture-3: Pass, Slow, Timeout # Issues 21593 and 22008 +regexp/global_test: Skip # Timeout. Issue 21709 and 21708 +regexp/pcre_test: Pass, Slow, Timeout # Issues 21593 and 22008 + +# Firefox takes advantage of the ECMAScript number parsing cop-out clause +# (presumably added to allow Mozilla's existing behavior) +# and only looks at the first 20 significant digits. +# The Dart VM and the other ECMAScript implementations follow the correct +# IEEE-754 rounding algorithm. +[ $runtime == ff || $runtime == jsshell ] +double_parse_test/02: Fail, OK + +[ $runtime == safari || $runtime == safarimobilesim ] +double_round3_test: RuntimeError +double_round_to_double2_test: Pass, Fail, OK +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $hot_reload || $hot_reload_rollback ] +big_integer_huge_mul_vm_test: Pass, Slow # Slow +big_integer_parsed_mul_div_vm_test: Pass, Slow # Slow. + diff --git a/tests/corelib_2/corelib_2.status b/tests/corelib_2/corelib_2.status index 48b49b84b3c..ccb021f8982 100644 --- a/tests/corelib_2/corelib_2.status +++ b/tests/corelib_2/corelib_2.status @@ -2,298 +2,125 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -# All static_tests have expected compile-time errors. -[ $strong && $compiler != dart2analyzer && $compiler != dartdevc && $compiler != dartk && $compiler != dartkp ] -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 - -[ !$strong && $compiler != dartdevc && $checked ] -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 - -[ !$checked && !$strong && $compiler != dartdevc && $runtime != none ] -null_nosuchmethod_test: RuntimeError # needs Dart 2 or checked mode - -[ $compiler != dartdevc && $runtime != none && $compiler != dartk && $compiler != dartkp ] -map_keys2_test: RuntimeError # needs Dart 2 is checks - -[ (!$checked && !$strong && $runtime == vm) || (!$checked && $compiler == dart2js) || $compiler == precompiler ] -int_parse_radix_test/badTypes: RuntimeError # wrong exception returned - -[ ($compiler == dart2analyzer && $strong) || $compiler == dartdevc ] -iterable_reduce_test/01: CompileTimeError - -double_parse_test/01: Skip # Temporarily disable the following tests until we figure out why they started failing. -double_parse_test/02: Skip # Temporarily disable the following tests until we figure out why they started failing. -double_parse_test/03: Skip # Temporarily disable the following tests until we figure out why they started failing. -double_parse_test/04: Skip # Temporarily disable the following tests until we figure out why they started failing. -double_parse_test/none: Skip # Temporarily disable the following tests until we figure out why they started failing. - -[ !$strong && !$checked ] -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 == none || $compiler == app_jit || $compiler == precompiler || $compiler == dart2js ] +[ $compiler == dart2analyzer ] int_parse_radix_bad_handler_test: MissingCompileTimeError +iterable_element_at_test/static: Pass -[ $compiler == dart2analyzer && !$strong ] -symbol_reserved_word_test/05: MissingCompileTimeError # Issue 30245 - -[ $compiler != dartdevc && $compiler != dartk && $compiler != dartkp && ($compiler != dart2analyzer || !$strong) ] -iterable_mapping_test/01: MissingCompileTimeError - -[ $compiler == dart2analyzer && !$strong && !$checked ] -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 - -[ $compiler == dart2js && $fast_startup ] -apply3_test: Fail # mirrors not supported -dynamic_nosuchmethod_test: Fail # mirrors not supported - -[ $compiler == precompiler ] -regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter -int_parse_radix_test: Pass, Timeout # --no_intrinsify - -[ $compiler == precompiler || $compiler == dartkp ] -apply3_test: SkipByDesign -dynamic_nosuchmethod_test: SkipByDesign - -[ $compiler == dart2js && $runtime != none && !$checked ] -growable_list_test: RuntimeError # Concurrent modifications test always runs - -[ $compiler == dartdevc && $runtime != none ] -apply2_test: RuntimeError # Issue 29921 -apply3_test: RuntimeError # Issue 29921 -integer_arith_vm_test/modPow: RuntimeError # Issue 30170 -integer_parsed_arith_vm_test: RuntimeError # Issue 29921 -compare_to2_test: RuntimeError # Issue 30170 -date_time10_test: RuntimeError # Issue 29921 -hash_set_test/01: RuntimeError # Issue 29921 -iterable_reduce_test/none: RuntimeError -iterable_to_list_test/*: RuntimeError -list_concurrent_modify_test: RuntimeError # DDC uses ES6 array iterators so it does not issue this -nan_infinity_test/01: RuntimeError # Issue 29921 -main_test: RuntimeError # Issue 29921 -null_nosuchmethod_test/01: RuntimeError # DDC checks type before too many arguments, so TypeError instead of NSM -regexp/bol-with-multiline_test: RuntimeError # Issue 29921 -regexp/invalid-range-in-class_test: RuntimeError # Issue 29921 -regexp/look-ahead_test: RuntimeError # Issue 29921 -regexp/loop-capture_test: RuntimeError # Issue 29921 -regexp/malformed-escapes_test: RuntimeError # Issue 29921 -regexp/many-brackets_test: RuntimeError # Issue 29921 -regexp/negative-special-characters_test: RuntimeError # Issue 29921 -regexp/no-extensions_test: RuntimeError # Issue 29921 -regexp/non-bmp_test: RuntimeError # Issue 29921 -regexp/non-capturing-backtracking_test: RuntimeError # Issue 29921 -regexp/non-capturing-groups_test: RuntimeError # Issue 29921 -regexp/non-character_test: RuntimeError # Issue 29921 -regexp/non-greedy-parentheses_test: RuntimeError # Issue 29921 -regexp/pcre-test-4_test: RuntimeError # Issue 29921 -regexp/alternative-length-miscalculation_test: RuntimeError # Issue 29921 -regexp/ascii-regexp-subject_test: RuntimeError # Issue 29921 -regexp/capture-3_test: RuntimeError # Issue 29921 -regexp/char-insensitive_test: RuntimeError # Issue 29921 -regexp/character-match-out-of-order_test: RuntimeError # Issue 29921 -regexp/compile-crash_test: RuntimeError # Issue 29921 -regexp/default_arguments_test: RuntimeError # Issue 29921 -regexp/early-acid3-86_test: RuntimeError # Issue 29921 -regexp/ecma-regex-examples_test: RuntimeError # Issue 29921 -regexp/extended-characters-match_test: RuntimeError # Issue 29921 -regexp/extended-characters-more_test: RuntimeError # Issue 29921 -regexp/find-first-asserted_test: RuntimeError # Issue 29921 -regexp/quantified-assertions_test: RuntimeError # Issue 29921 -regexp/range-bound-ffff_test: RuntimeError # Issue 29921 -regexp/range-out-of-order_test: RuntimeError # Issue 29921 -regexp/ranges-and-escaped-hyphens_test: RuntimeError # Issue 29921 -regexp/regress-6-9-regexp_test: RuntimeError # Issue 29921 -regexp/regress-regexp-codeflush_test: RuntimeError # Issue 29921 -regexp/regress-regexp-construct-result_test: RuntimeError # Issue 29921 -regexp/repeat-match-waldemar_test: RuntimeError # Issue 29921 -regexp/results-cache_test: RuntimeError # Issue 29921 -regexp/stack-overflow2_test: RuntimeError # Issue 29921 -regexp/stack-overflow_test: RuntimeError # Issue 29921 -regexp/unicode-handling_test: RuntimeError # Issue 29921 -regexp/zero-length-alternatives_test: RuntimeError # Issue 29921 -regress_r21715_test: RuntimeError # Issue 29921 -string_operations_with_null_test: RuntimeError # Issue 29921 -symbol_operator_test: RuntimeError # Issue 29921 -symbol_operator_test/03: RuntimeError # Issue 29921 -symbol_test/none: RuntimeError # Issue 29921 -symbol_reserved_word_test/06: RuntimeError # Issue 29921 -symbol_reserved_word_test/09: RuntimeError # Issue 29921 -symbol_reserved_word_test/12: RuntimeError # Issue 29921 -int_parse_with_limited_ints_test: Skip # dartdevc doesn't know about --limit-ints-to-64-bits -typed_data_with_limited_ints_test: Skip # dartdevc doesn't know about --limit-ints-to-64-bits -int_modulo_arith_test/none: RuntimeError # Issue 29921 -iterable_return_type_test/02: RuntimeError # Issue 29921 - -[ ($compiler == dart2js || $compiler == dartdevc) && $runtime != none ] -integer_arith_vm_test/modPow: RuntimeError # Issues 10245, 30170 -integer_parsed_arith_vm_test: RuntimeError # Issues 10245, 29921 -integer_parsed_div_rem_vm_test: RuntimeError # Issue 29921 -integer_parsed_mul_div_vm_test: RuntimeError # Issue 29921 -bit_twiddling_test/int64: RuntimeError, OK # Requires fixed-size int64 support. -double_ceil_test/int64: RuntimeError, OK # Requires fixed-size int64 support. -double_floor_test/int64: RuntimeError, OK # Requires fixed-size int64 support. -double_round_test/int64: RuntimeError, OK # Requires fixed-size int64 support. -double_truncate_test/int64: RuntimeError, OK # Requires fixed-size int64 support. -json_map_test: RuntimeError -compare_to2_test: RuntimeError, OK # Requires fixed-size int64 support. +[ $compiler == dart2js ] +date_time11_test: RuntimeError, Pass # Fails when US is on winter time, issue 31285. hash_set_test/01: RuntimeError # Issue 11551 -int_modulo_arith_test/modPow: RuntimeError # Issue 29921 -regress_r21715_test: RuntimeError # Requires fixed-size int64 support. -int_parse_with_limited_ints_test: Skip # dart2js and dartdevc don't know about --limit-ints-to-64-bits -typed_data_with_limited_ints_test: Skip # dart2js and dartdevc don't know about --limit-ints-to-64-bits - -[ $compiler == dart2js && $runtime != none ] -nan_infinity_test/01: RuntimeError -integer_to_string_test/01: RuntimeError -iterable_to_set_test: RuntimeError # is-checks do not implement strong mode type system -int_parse_radix_test/01: RuntimeError -int_parse_radix_test/02: RuntimeError -list_test/*: RuntimeError # dart2js doesn't implement strong mode covariance checks -string_split_test: RuntimeError # does not return List -list_concurrent_modify_test: RuntimeError # dart2js does not fully implement these - -[ $compiler == dart2js && $runtime == drt && $csp && $minified ] -core_runtime_types_test: Pass, Fail # Issue 27913 +integer_to_radix_string_test: RuntimeError # Issue 29921 +string_static_test: MissingCompileTimeError [ $compiler != dartdevc ] error_stack_trace_test/static: MissingCompileTimeError -[ $compiler != dartdevc && $compiler != dartk && $compiler != dartkp ] -iterable_element_at_test/static: MissingCompileTimeError +[ $compiler == dartdevk ] +bool_from_environment2_test/01: MissingCompileTimeError +bool_from_environment2_test/02: MissingCompileTimeError +bool_from_environment2_test/03: MissingCompileTimeError +bool_from_environment2_test/04: MissingCompileTimeError +from_environment_const_type_test/01: Pass +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/05: Pass +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/10: Pass +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/15: Pass +from_environment_const_type_test/16: MissingCompileTimeError +from_environment_const_type_test/none: Pass +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 +map_test: Crash # crash in front_end. +string_from_environment3_test/01: MissingCompileTimeError +string_from_environment3_test/02: MissingCompileTimeError +string_from_environment3_test/03: MissingCompileTimeError +string_from_environment3_test/04: MissingCompileTimeError +symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/05: MissingCompileTimeError +symbol_reserved_word_test/07: MissingCompileTimeError +symbol_reserved_word_test/10: MissingCompileTimeError +symbol_test/01: MissingCompileTimeError +symbol_test/02: MissingCompileTimeError +symbol_test/03: MissingCompileTimeError -[ $compiler == dartdevc && $runtime != none ] -error_stack_trace_test/nullThrown: RuntimeError # .stackTrace not present for exception caught from 'throw null;' -list_removeat_test: RuntimeError # Issue 29921 -list_replace_range_test: RuntimeError # Issue 29921 -list_set_all_test: RuntimeError # Issue 29921 -json_map_test: RuntimeError # Issue 29921 -int_parse_radix_test/01: RuntimeError # Issue 29921 -int_parse_radix_test/02: RuntimeError # Issue 29921 -integer_to_radix_string_test: RuntimeError # Issue 29921 -integer_to_string_test/01: RuntimeError # Issue 29921 -iterable_fold_test/02: RuntimeError # different type inference problem +[ $compiler == dartkp ] +bit_twiddling_test/int64: CompileTimeError # Issue 31339 +integer_to_radix_string_test/01: CompileTimeError # Issue 31339 +integer_to_radix_string_test/02: CompileTimeError # Issue 31339 +integer_to_string_test/01: CompileTimeError # Issue 31339 +num_sign_test: CompileTimeError, Crash # Issue 31339 + +[ $compiler == precompiler ] +int_parse_radix_test: Pass, Timeout # --no_intrinsify +integer_parsed_mul_div_vm_test: Pass, Timeout # --no_intrinsify +regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter + +[ $mode == debug ] +regexp/pcre_test: Pass, Slow # Issue 22008 [ $runtime == flutter ] apply3_test: CompileTimeError # mirrors not supported bool_from_environment_test: Fail # Flutter Issue 9111 -int_from_environment_test: Fail # Flutter Issue 9111 -int_from_environment2_test: Fail # Flutter Issue 9111 format_exception_test: RuntimeError # Flutter Issue 9111 -from_environment_const_type_test/none: Fail # Flutter Issue 9111 from_environment_const_type_test/01: Fail # Flutter Issue 9111 -from_environment_const_type_test/05: Fail # Flutter Issue 9111 -from_environment_const_type_test/10: Fail # Flutter Issue 9111 -from_environment_const_type_test/15: Fail # Flutter Issue 9111 from_environment_const_type_test/02: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/03: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/04: MissingCompileTimeError # Flutter Issue 9111 +from_environment_const_type_test/05: Fail # Flutter Issue 9111 from_environment_const_type_test/06: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/07: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/08: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/09: MissingCompileTimeError # Flutter Issue 9111 -from_environment_const_type_test/12: MissingCompileTimeError # Flutter Issue 9111 +from_environment_const_type_test/10: Fail # Flutter Issue 9111 from_environment_const_type_test/11: MissingCompileTimeError # Flutter Issue 9111 +from_environment_const_type_test/12: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/13: MissingCompileTimeError # Flutter Issue 9111 from_environment_const_type_test/14: MissingCompileTimeError # Flutter Issue 9111 +from_environment_const_type_test/15: Fail # Flutter Issue 9111 from_environment_const_type_test/16: MissingCompileTimeError # Flutter Issue 9111 -string_trimlr_test/02: RuntimeError # Flutter Issue 9111 -string_from_environment_test: Fail # Flutter Issue 9111 -string_from_environment2_test: Fail # Flutter Issue 9111 +from_environment_const_type_test/none: Fail # Flutter Issue 9111 +int_from_environment2_test: Fail # Flutter Issue 9111 +int_from_environment_test: Fail # Flutter Issue 9111 main_test: RuntimeError # Flutter Issue 9111 - -[ $hot_reload || $hot_reload_rollback ] -integer_parsed_mul_div_vm_test: Pass, Slow # Slow - -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -compare_to2_test: Fail # Issue 4018 -unicode_test: Fail # Issue 6706 -symbol_test/01: Fail, Pass # Issue 11669 - -symbol_reserved_word_test/06: RuntimeError # Issue 11669, With the exception of 'void', new Symbol() should not accept reserved words. -symbol_reserved_word_test/09: RuntimeError # Issue 11669, With the exception of 'void', new Symbol() should not accept reserved words. -symbol_reserved_word_test/12: RuntimeError # Issue 11669, With the exception of 'void', new Symbol() should not accept reserved words. - -symbol_test/none: Fail # Issue 11669 -symbol_operator_test/03: Fail # Issue 11669 -string_case_test/01: Fail # Bug 18061 - -[ $runtime == ff || $runtime == jsshell ] -double_parse_test/02: Fail, OK # Issue 30468 -regexp/UC16_test: RuntimeError +string_from_environment2_test: Fail # Flutter Issue 9111 +string_from_environment_test: Fail # Flutter Issue 9111 +string_trimlr_test/02: RuntimeError # Flutter Issue 9111 [ $runtime == jsshell ] -unicode_test: Fail string_case_test/01: Fail, OK +unicode_test: Fail -[ ($runtime == vm || $runtime == dart_precompiled) && $arch == simarmv5te ] -integer_parsed_mul_div_vm_test: Pass, Slow +[ $runtime == vm ] +string_case_test/01: RuntimeError + +[ $arch == simarmv5te && ($runtime == dart_precompiled || $runtime == vm) ] int_parse_radix_test/*: Pass, Slow +integer_parsed_mul_div_vm_test: Pass, Slow -[ $compiler == precompiler ] -integer_parsed_mul_div_vm_test: Pass, Timeout # --no_intrinsify +[ $arch == x64 && $system == windows ] +stopwatch_test: Skip # Flaky test due to expected performance behaviour. -[ $compiler == none && ($runtime == vm || $runtime == flutter)] -string_trimlr_test/02: RuntimeError # Issue 29060 -iterable_to_set_test: RuntimeError # is-checks do not implement strong mode type system - -[ $compiler == precompiler || $compiler == app_jit ] -string_trimlr_test/02: RuntimeError # Issue 29060 - -# void should be a valid symbol. -[ $compiler == none || $compiler == precompiler || $compiler == app_jit || ($compiler == dart2js && !$dart2js_with_kernel) ] -symbol_reserved_word_test/02: CompileTimeError # Issue 20191 - -symbol_reserved_word_test/04: MissingCompileTimeError # Issue 11669, 19972, With the exception of 'void', const Symbol() should not accept reserved words. -symbol_reserved_word_test/07: MissingCompileTimeError # Issue 11669, 19972, With the exception of 'void', const Symbol() should not accept reserved words. -symbol_reserved_word_test/10: MissingCompileTimeError # Issue 11669, 19972, With the exception of 'void', const Symbol() should not accept reserved words. - -[ $compiler == dart2js ] -hash_set_test/01: RuntimeError # Issue 11551 -integer_to_radix_string_test: RuntimeError # Issue 29921 -string_static_test: MissingCompileTimeError - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $runtime != drt ] -symbol_test/02: MissingCompileTimeError # Issue 11669 -symbol_test/03: MissingCompileTimeError # Issue 11669 - -[ $compiler == app_jit || $compiler == precompiler ] +[ $compiler == dart2analyzer && !$checked && !$strong ] from_environment_const_type_test/02: MissingCompileTimeError from_environment_const_type_test/03: MissingCompileTimeError from_environment_const_type_test/04: MissingCompileTimeError @@ -318,48 +145,70 @@ 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 -iterable_to_set_test: RuntimeError # is-checks do not implement strong mode type system -[ $compiler == dart2js ] -date_time11_test: RuntimeError, Pass # Fails when US is on winter time, issue 31285. +[ $compiler == dart2analyzer && $strong ] +int_parse_radix_bad_handler_test: Pass -[ $compiler == dart2js && $runtime == safari ] -regexp/no-extensions_test: RuntimeError -regexp/lookahead_test: RuntimeError -regexp/overflow_test: RuntimeError +[ $compiler == dart2analyzer && !$strong ] +symbol_reserved_word_test/05: MissingCompileTimeError # Issue 30245 -[ $runtime == safari || $runtime == safarimobilesim ] -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. -double_round3_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. -double_round_to_double2_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. +# All static_tests have expected compile-time errors. +[ $compiler != dart2analyzer && $compiler != dartdevc && $compiler != dartk && $compiler != dartkp && $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 == dart2js && $runtime == chromeOnAndroid ] list_as_map_test: Pass, Slow # TODO(kasperl): Please triage. string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. -[ ($compiler == dart2js || $compiler == dartdevc) && $runtime == drt ] -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. - -[ $compiler == dart2js && $runtime == safarimobilesim ] -string_trimlr_test/01: Fail -string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. -list_test/01: Fail # Safari bug: Array(-2) seen as dead code. - [ $compiler == dart2js && $runtime == d8 ] string_trimlr_test/02: RuntimeError, Pass # Uses Unicode 6.2.0 or earlier, issue 30279. uri_base_test: RuntimeError # D8 uses a custom uri scheme for Uri.base -[ $compiler == none && $runtime == vm ] -string_static_test: MissingCompileTimeError +[ $compiler == dart2js && $runtime == drt && $csp && $minified ] +core_runtime_types_test: Pass, Fail # Issue 27913 -[ $compiler == dart2js && $runtime != none && !$dart2js_with_kernel] +[ $compiler == dart2js && $runtime != none ] +int_parse_radix_test/01: RuntimeError +int_parse_radix_test/02: RuntimeError +integer_to_string_test/01: RuntimeError +iterable_to_set_test: RuntimeError # is-checks do not implement strong mode type system +list_concurrent_modify_test: RuntimeError # dart2js does not fully implement these +list_test/*: RuntimeError # dart2js doesn't implement strong mode covariance checks +nan_infinity_test/01: RuntimeError +regexp/pcre_test: Pass, Slow # Issue 21593 +string_split_test: RuntimeError # does not return List + +[ $compiler == dart2js && $runtime != none && !$checked ] +growable_list_test: RuntimeError # Concurrent modifications test always runs +splay_tree_from_iterable_test: RuntimeError + +[ $compiler == dart2js && $runtime != none && $dart2js_with_kernel ] +list_concurrent_modify_test: Crash # Issue 30559 + +[ $compiler == dart2js && $runtime != none && !$dart2js_with_kernel ] error_stack_trace1_test: RuntimeError # Issue 12399 symbol_reserved_word_test/03: RuntimeError # Issue 19972, new Symbol('void') should be allowed. -[ $compiler == dart2js && $runtime != none ] -regexp/pcre_test: Pass, Slow # Issue 21593 +[ $compiler == dart2js && $runtime == safari ] +regexp/lookahead_test: RuntimeError +regexp/no-extensions_test: RuntimeError +regexp/overflow_test: RuntimeError -[ !$checked && (($compiler == none && $runtime == vm) || $compiler == dart2js) ] +[ $compiler == dart2js && $runtime == safarimobilesim ] +list_test/01: Fail # Safari bug: Array(-2) seen as dead code. +string_trimlr_test/01: Fail +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $compiler == dart2js && !$browser ] +package_resource_test: RuntimeError # Issue 26842 + +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] +apply3_test: RuntimeError from_environment_const_type_test/02: MissingCompileTimeError from_environment_const_type_test/03: MissingCompileTimeError from_environment_const_type_test/04: MissingCompileTimeError @@ -378,36 +227,35 @@ 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 -iterable_generate_test/01: RuntimeError +iterable_return_type_test/01: RuntimeError +iterable_return_type_test/02: RuntimeError +iterable_to_list_test/01: RuntimeError +list_test/01: Crash # Unsupported operation: Unsupported type parameter type node T. +list_test/none: Crash # Unsupported operation: Unsupported type parameter type node T. +map_test: Crash # tests/corelib_2/map_test.dart:903:7: Internal problem: Unhandled Null in installDefaultConstructor. +symbol_reserved_word_test/03: RuntimeError +symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/05: MissingCompileTimeError +symbol_reserved_word_test/07: MissingCompileTimeError +symbol_reserved_word_test/10: MissingCompileTimeError +symbol_test/02: MissingCompileTimeError +symbol_test/03: MissingCompileTimeError - -[ ($compiler == none && $runtime == vm) || $compiler == dart2js ] -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 - -[ ($compiler == none && $runtime == vm) || $compiler == dart2js ] -string_base_vm_static_test: MissingCompileTimeError - -[ $compiler == none && $runtime == drt ] -string_from_environment2_test: Skip -string_from_environment3_test: Skip -string_from_environment_test: Skip - -[ $system == windows && $arch == x64 ] -stopwatch_test: Skip # Flaky test due to expected performance behaviour. - -[ $runtime == vm ] -string_case_test/01: RuntimeError - -[ ($runtime == vm || $runtime == dart_precompiled) ] -string_split_test: RuntimeError # does not return List - -[ ($runtime == vm || $runtime == dart_precompiled) && !$strong ] -list_test/*: RuntimeError # VM doesn't implement strong mode covariance checks +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +iterable_return_type_test/01: RuntimeError +iterable_return_type_test/02: RuntimeError +iterable_to_list_test/01: RuntimeError +list_test/01: Crash # Unsupported operation: Unsupported type parameter type node T. +list_test/none: Crash # Unsupported operation: Unsupported type parameter type node T. +map_test: Crash # tests/corelib_2/map_test.dart:903:7: Internal problem: Unhandled Null in installDefaultConstructor. +symbol_reserved_word_test/03: RuntimeError +symbol_reserved_word_test/04: MissingCompileTimeError +symbol_reserved_word_test/05: MissingCompileTimeError +symbol_reserved_word_test/07: MissingCompileTimeError +symbol_reserved_word_test/10: MissingCompileTimeError +symbol_test/02: MissingCompileTimeError +symbol_test/03: MissingCompileTimeError +uri_base_test: Crash # RangeError (index): Invalid value: Valid value range is empty: 0 [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] apply3_test: RuntimeError @@ -453,76 +301,111 @@ symbol_test/02: MissingCompileTimeError symbol_test/03: MissingCompileTimeError uri_base_test: Crash # RangeError (index): Invalid value: Valid value range is empty: 0 -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -iterable_return_type_test/01: RuntimeError -iterable_return_type_test/02: RuntimeError -iterable_to_list_test/01: RuntimeError -list_test/01: Crash # Unsupported operation: Unsupported type parameter type node T. -list_test/none: Crash # Unsupported operation: Unsupported type parameter type node T. -map_test: Crash # tests/corelib_2/map_test.dart:903:7: Internal problem: Unhandled Null in installDefaultConstructor. -symbol_reserved_word_test/03: RuntimeError -symbol_reserved_word_test/04: MissingCompileTimeError -symbol_reserved_word_test/05: MissingCompileTimeError -symbol_reserved_word_test/07: MissingCompileTimeError -symbol_reserved_word_test/10: MissingCompileTimeError -symbol_test/02: MissingCompileTimeError -symbol_test/03: MissingCompileTimeError -uri_base_test: Crash # RangeError (index): Invalid value: Valid value range is empty: 0 - -[$arch == simdbc || $arch == simdbc64] -regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter - -[ $compiler == dart2js && $runtime != none && !$checked ] -splay_tree_from_iterable_test: RuntimeError - -[ ($compiler == none || $compiler == app_jit) && $runtime == vm && !$checked ] -iterable_generate_test/01: RuntimeError -splay_tree_from_iterable_test: RuntimeError - -[ $compiler == precompiler && $runtime == dart_precompiled && !$checked ] -iterable_generate_test/01: RuntimeError -splay_tree_from_iterable_test: RuntimeError - -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter ] -regexp/pcre_test: Pass, Slow, Timeout -regexp/global_test: Skip # Issue 21709 - -[ $mode == debug ] -regexp/pcre_test: Pass, Slow # Issue 22008 - -[ $compiler == dart2js && ! $browser ] -package_resource_test: RuntimeError # Issue 26842 - -[ $compiler == dart2js && ! $dart2js_with_kernel ] -list_unmodifiable_test: Pass, RuntimeError # Issue 28712 -iterable_to_list_test/01: RuntimeError # Issue 26501 +[ $compiler == dart2js && !$dart2js_with_kernel ] iterable_return_type_test/01: RuntimeError # Issue 20085 iterable_return_type_test/02: RuntimeError # Dart2js does not support Uint64*. +iterable_to_list_test/01: RuntimeError # Issue 26501 +list_unmodifiable_test: Pass, RuntimeError # Issue 28712 -[ $compiler == dart2analyzer ] -int_parse_radix_bad_handler_test: MissingCompileTimeError -iterable_element_at_test/static: Pass +[ $compiler == dart2js && $fast_startup ] +apply3_test: Fail # mirrors not supported +dynamic_nosuchmethod_test: Fail # mirrors not supported -[ $compiler == dart2analyzer && $strong ] -int_parse_radix_bad_handler_test: Pass +[ $compiler == dartdevc && $runtime != none ] +apply2_test: RuntimeError # Issue 29921 +apply3_test: RuntimeError # Issue 29921 +compare_to2_test: RuntimeError # Issue 30170 +date_time10_test: RuntimeError # Issue 29921 +error_stack_trace_test/nullThrown: RuntimeError # .stackTrace not present for exception caught from 'throw null;' +hash_set_test/01: RuntimeError # Issue 29921 +int_modulo_arith_test/none: RuntimeError # Issue 29921 +int_parse_radix_test/01: RuntimeError # Issue 29921 +int_parse_radix_test/02: RuntimeError # Issue 29921 +int_parse_with_limited_ints_test: Skip # dartdevc doesn't know about --limit-ints-to-64-bits +integer_arith_vm_test/modPow: RuntimeError # Issue 30170 +integer_parsed_arith_vm_test: RuntimeError # Issue 29921 +integer_to_radix_string_test: RuntimeError # Issue 29921 +integer_to_string_test/01: RuntimeError # Issue 29921 +iterable_fold_test/02: RuntimeError # different type inference problem +iterable_reduce_test/none: RuntimeError +iterable_return_type_test/02: RuntimeError # Issue 29921 +iterable_to_list_test/*: RuntimeError +json_map_test: RuntimeError # Issue 29921 +list_concurrent_modify_test: RuntimeError # DDC uses ES6 array iterators so it does not issue this +list_removeat_test: RuntimeError # Issue 29921 +list_replace_range_test: RuntimeError # Issue 29921 +list_set_all_test: RuntimeError # Issue 29921 +main_test: RuntimeError # Issue 29921 +nan_infinity_test/01: RuntimeError # Issue 29921 +null_nosuchmethod_test/01: RuntimeError # DDC checks type before too many arguments, so TypeError instead of NSM +regexp/alternative-length-miscalculation_test: RuntimeError # Issue 29921 +regexp/ascii-regexp-subject_test: RuntimeError # Issue 29921 +regexp/bol-with-multiline_test: RuntimeError # Issue 29921 +regexp/capture-3_test: RuntimeError # Issue 29921 +regexp/char-insensitive_test: RuntimeError # Issue 29921 +regexp/character-match-out-of-order_test: RuntimeError # Issue 29921 +regexp/compile-crash_test: RuntimeError # Issue 29921 +regexp/default_arguments_test: RuntimeError # Issue 29921 +regexp/early-acid3-86_test: RuntimeError # Issue 29921 +regexp/ecma-regex-examples_test: RuntimeError # Issue 29921 +regexp/extended-characters-match_test: RuntimeError # Issue 29921 +regexp/extended-characters-more_test: RuntimeError # Issue 29921 +regexp/find-first-asserted_test: RuntimeError # Issue 29921 +regexp/invalid-range-in-class_test: RuntimeError # Issue 29921 +regexp/look-ahead_test: RuntimeError # Issue 29921 +regexp/loop-capture_test: RuntimeError # Issue 29921 +regexp/malformed-escapes_test: RuntimeError # Issue 29921 +regexp/many-brackets_test: RuntimeError # Issue 29921 +regexp/negative-special-characters_test: RuntimeError # Issue 29921 +regexp/no-extensions_test: RuntimeError # Issue 29921 +regexp/non-bmp_test: RuntimeError # Issue 29921 +regexp/non-capturing-backtracking_test: RuntimeError # Issue 29921 +regexp/non-capturing-groups_test: RuntimeError # Issue 29921 +regexp/non-character_test: RuntimeError # Issue 29921 +regexp/non-greedy-parentheses_test: RuntimeError # Issue 29921 +regexp/pcre-test-4_test: RuntimeError # Issue 29921 +regexp/quantified-assertions_test: RuntimeError # Issue 29921 +regexp/range-bound-ffff_test: RuntimeError # Issue 29921 +regexp/range-out-of-order_test: RuntimeError # Issue 29921 +regexp/ranges-and-escaped-hyphens_test: RuntimeError # Issue 29921 +regexp/regress-6-9-regexp_test: RuntimeError # Issue 29921 +regexp/regress-regexp-codeflush_test: RuntimeError # Issue 29921 +regexp/regress-regexp-construct-result_test: RuntimeError # Issue 29921 +regexp/repeat-match-waldemar_test: RuntimeError # Issue 29921 +regexp/results-cache_test: RuntimeError # Issue 29921 +regexp/stack-overflow2_test: RuntimeError # Issue 29921 +regexp/stack-overflow_test: RuntimeError # Issue 29921 +regexp/unicode-handling_test: RuntimeError # Issue 29921 +regexp/zero-length-alternatives_test: RuntimeError # Issue 29921 +regress_r21715_test: RuntimeError # Issue 29921 +string_operations_with_null_test: RuntimeError # Issue 29921 +symbol_operator_test: RuntimeError # Issue 29921 +symbol_operator_test/03: RuntimeError # Issue 29921 +symbol_reserved_word_test/06: RuntimeError # Issue 29921 +symbol_reserved_word_test/09: RuntimeError # Issue 29921 +symbol_reserved_word_test/12: RuntimeError # Issue 29921 +symbol_test/none: RuntimeError # Issue 29921 +typed_data_with_limited_ints_test: Skip # dartdevc doesn't know about --limit-ints-to-64-bits -[ $runtime == dart_precompiled && $minified ] -apply_test: Skip # Uses new Symbol via symbolMapToStringMap helper -error_stack_trace1_test: Skip # Expects unobfuscated stack trace +[ $compiler != dartdevc && $compiler != dartk && $compiler != dartkp ] +iterable_element_at_test/static: MissingCompileTimeError -[ $compiler == dart2js && $runtime != none && $dart2js_with_kernel ] -list_concurrent_modify_test: Crash # Issue 30559 +[ $compiler != dartdevc && $compiler != dartk && $compiler != dartkp && $runtime != none ] +map_keys2_test: RuntimeError # needs Dart 2 is checks -# Sections for dartk and dartkp. -# -# Note: these sections are normalized so we can update them with automated -# tools. Please add any new status lines affecting those two compilers in the -# existing sections, if possible keep the alphabetic ordering. If we are missing -# a section you need, please reach out to sigmund@ to see the best way to add -# them. -# ===== Skip dartk and darkp in !$strong mode ==== -[ ($compiler == dartk || $compiler == dartkp) && !$strong ] -*: SkipByDesign +[ $compiler != dartdevc && $compiler != dartk && $compiler != dartkp && ($compiler != dart2analyzer || !$strong) ] +iterable_mapping_test/01: MissingCompileTimeError + +[ $compiler != dartdevc && $runtime != none && !$checked && !$strong ] +null_nosuchmethod_test: RuntimeError # needs Dart 2 or checked mode + +[ $compiler != dartdevc && $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 # ===== dartk + vm status lines ===== [ $compiler == dartk && $runtime == vm && $strong ] @@ -564,6 +447,11 @@ symbol_test/03: MissingCompileTimeError symbol_test/none: RuntimeError unicode_test: RuntimeError +[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled && $strong ] +bit_twiddling_test/int64: CompileTimeError +integer_parsed_arith_vm_test/01: RuntimeError +integer_parsed_arith_vm_test/02: RuntimeError + # ===== dartkp + dart_precompiled status lines ===== [ $compiler == dartkp && $runtime == dart_precompiled && $strong ] bool_from_environment2_test/03: MissingCompileTimeError @@ -604,33 +492,135 @@ symbol_test/03: MissingCompileTimeError symbol_test/none: RuntimeError unicode_test: RuntimeError -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && $mode == debug ] -bit_twiddling_test/int64: CompileTimeError -integer_parsed_arith_vm_test/01: RuntimeError -integer_parsed_arith_vm_test/02: RuntimeError +[ $compiler == none && $runtime == drt ] +string_from_environment2_test: Skip +string_from_environment3_test: Skip +string_from_environment_test: Skip -[ $compiler == dartdevk ] -bool_from_environment2_test/01: MissingCompileTimeError -bool_from_environment2_test/02: MissingCompileTimeError -bool_from_environment2_test/03: MissingCompileTimeError -bool_from_environment2_test/04: MissingCompileTimeError -from_environment_const_type_test/01: Pass +[ $compiler == none && $runtime == vm ] +string_static_test: MissingCompileTimeError + +[ $compiler == none && ($runtime == flutter || $runtime == vm) ] +iterable_to_set_test: RuntimeError # is-checks do not implement strong mode type system +string_trimlr_test/02: RuntimeError # Issue 29060 + +[ $compiler == precompiler && $runtime == dart_precompiled && !$checked ] +iterable_generate_test/01: RuntimeError +splay_tree_from_iterable_test: RuntimeError + +[ $runtime == dart_precompiled && $minified ] +apply_test: Skip # Uses new Symbol via symbolMapToStringMap helper +error_stack_trace1_test: Skip # Expects unobfuscated stack trace + +[ $runtime == drt && ($compiler == dart2js || $compiler == dartdevc) ] +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $runtime != drt && ($compiler == app_jit || $compiler == none || $compiler == precompiler) ] +symbol_test/02: MissingCompileTimeError # Issue 11669 +symbol_test/03: MissingCompileTimeError # Issue 11669 + +[ $runtime != none && ($compiler == dart2js || $compiler == dartdevc) ] +bit_twiddling_test/int64: RuntimeError, OK # Requires fixed-size int64 support. +compare_to2_test: RuntimeError, OK # Requires fixed-size int64 support. +double_ceil_test/int64: RuntimeError, OK # Requires fixed-size int64 support. +double_floor_test/int64: RuntimeError, OK # Requires fixed-size int64 support. +double_round_test/int64: RuntimeError, OK # Requires fixed-size int64 support. +double_truncate_test/int64: RuntimeError, OK # Requires fixed-size int64 support. +hash_set_test/01: RuntimeError # Issue 11551 +int_modulo_arith_test/modPow: RuntimeError # Issue 29921 +int_parse_with_limited_ints_test: Skip # dart2js and dartdevc don't know about --limit-ints-to-64-bits +integer_arith_vm_test/modPow: RuntimeError # Issues 10245, 30170 +integer_parsed_arith_vm_test: RuntimeError # Issues 10245, 29921 +integer_parsed_div_rem_vm_test: RuntimeError # Issue 29921 +integer_parsed_mul_div_vm_test: RuntimeError # Issue 29921 +json_map_test: RuntimeError +regress_r21715_test: RuntimeError # Requires fixed-size int64 support. +typed_data_with_limited_ints_test: Skip # dart2js and dartdevc don't know about --limit-ints-to-64-bits + +[ $runtime == vm && !$checked && ($compiler == app_jit || $compiler == none) ] +iterable_generate_test/01: RuntimeError +splay_tree_from_iterable_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 + +[ !$checked && ($compiler == dart2js || $compiler == none && $runtime == vm) ] +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 +iterable_generate_test/01: RuntimeError + +# Sections for dartk and dartkp. +# +# Note: these sections are normalized so we can update them with automated +# tools. Please add any new status lines affecting those two compilers in the +# existing sections, if possible keep the alphabetic ordering. If we are missing +# a section you need, please reach out to sigmund@ to see the best way to add +# them. +# ===== Skip dartk and darkp in !$strong mode ==== +[ !$strong && ($compiler == dartk || $compiler == dartkp) ] +*: SkipByDesign + +[ !$strong && ($runtime == dart_precompiled || $runtime == vm) ] +list_test/*: RuntimeError # VM doesn't implement strong mode covariance checks + +[ $arch == simdbc || $arch == simdbc64 ] +regexp/stack-overflow_test: RuntimeError, OK # Smaller limit with irregex interpreter + +[ $compiler == app_jit || $compiler == dart2js || $compiler == none || $compiler == precompiler ] +int_parse_radix_bad_handler_test: MissingCompileTimeError + +[ $compiler == app_jit || $compiler == none || $compiler == precompiler ] +compare_to2_test: Fail # Issue 4018 +string_case_test/01: Fail # Bug 18061 +symbol_operator_test/03: Fail # Issue 11669 +symbol_reserved_word_test/06: RuntimeError # Issue 11669, With the exception of 'void', new Symbol() should not accept reserved words. +symbol_reserved_word_test/09: RuntimeError # Issue 11669, With the exception of 'void', new Symbol() should not accept reserved words. +symbol_reserved_word_test/12: RuntimeError # Issue 11669, With the exception of 'void', new Symbol() should not accept reserved words. +symbol_test/01: Fail, Pass # Issue 11669 +symbol_test/none: Fail # Issue 11669 +unicode_test: Fail # Issue 6706 + +# void should be a valid symbol. +[ $compiler == app_jit || $compiler == none || $compiler == precompiler || $compiler == dart2js && !$dart2js_with_kernel ] +symbol_reserved_word_test/02: CompileTimeError # Issue 20191 +symbol_reserved_word_test/04: MissingCompileTimeError # Issue 11669, 19972, With the exception of 'void', const Symbol() should not accept reserved words. +symbol_reserved_word_test/07: MissingCompileTimeError # Issue 11669, 19972, With the exception of 'void', const Symbol() should not accept reserved words. +symbol_reserved_word_test/10: MissingCompileTimeError # Issue 11669, 19972, With the exception of 'void', const Symbol() should not accept reserved words. + +[ $compiler == app_jit || $compiler == precompiler ] 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/05: Pass 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/10: Pass 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/15: Pass from_environment_const_type_test/16: MissingCompileTimeError -from_environment_const_type_test/none: Pass from_environment_const_type_undefined_test/02: MissingCompileTimeError from_environment_const_type_undefined_test/03: MissingCompileTimeError from_environment_const_type_undefined_test/04: MissingCompileTimeError @@ -643,65 +633,53 @@ 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 -string_from_environment3_test/01: MissingCompileTimeError -string_from_environment3_test/02: MissingCompileTimeError -string_from_environment3_test/03: MissingCompileTimeError -string_from_environment3_test/04: MissingCompileTimeError -symbol_reserved_word_test/04: MissingCompileTimeError -symbol_reserved_word_test/05: MissingCompileTimeError -symbol_reserved_word_test/07: MissingCompileTimeError -symbol_reserved_word_test/10: MissingCompileTimeError -symbol_test/01: MissingCompileTimeError -symbol_test/02: MissingCompileTimeError -symbol_test/03: MissingCompileTimeError -map_test: Crash # crash in front_end. +iterable_to_set_test: RuntimeError # is-checks do not implement strong mode type system +string_trimlr_test/02: RuntimeError # Issue 29060 -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -apply3_test: RuntimeError -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 -iterable_return_type_test/01: RuntimeError -iterable_return_type_test/02: RuntimeError -iterable_to_list_test/01: RuntimeError -list_test/01: Crash # Unsupported operation: Unsupported type parameter type node T. -list_test/none: Crash # Unsupported operation: Unsupported type parameter type node T. -map_test: Crash # tests/corelib_2/map_test.dart:903:7: Internal problem: Unhandled Null in installDefaultConstructor. -symbol_reserved_word_test/03: RuntimeError -symbol_reserved_word_test/04: MissingCompileTimeError -symbol_reserved_word_test/05: MissingCompileTimeError -symbol_reserved_word_test/07: MissingCompileTimeError -symbol_reserved_word_test/10: MissingCompileTimeError -symbol_test/02: MissingCompileTimeError -symbol_test/03: MissingCompileTimeError +[ $compiler == dart2js || $compiler == none && $runtime == vm ] +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 +string_base_vm_static_test: MissingCompileTimeError -[ $runtime == vm || $runtime == dart_precompiled ] -integer_to_radix_string_test/01: RuntimeError # Issue 31346 +[ $compiler == dartdevc || $compiler == dart2analyzer && $strong ] +double_parse_test/01: Skip # Temporarily disable the following tests until we figure out why they started failing. +double_parse_test/02: Skip # Temporarily disable the following tests until we figure out why they started failing. +double_parse_test/03: Skip # Temporarily disable the following tests until we figure out why they started failing. +double_parse_test/04: Skip # Temporarily disable the following tests until we figure out why they started failing. +double_parse_test/none: Skip # Temporarily disable the following tests until we figure out why they started failing. +iterable_reduce_test/01: CompileTimeError + +[ $compiler == dartkp || $compiler == precompiler ] +apply3_test: SkipByDesign +dynamic_nosuchmethod_test: SkipByDesign + +[ $compiler == precompiler || $compiler == dart2js && !$checked || $runtime == vm && !$checked && !$strong ] +int_parse_radix_test/badTypes: RuntimeError # wrong exception returned + +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +regexp/global_test: Skip # Issue 21709 +regexp/pcre_test: Pass, Slow, Timeout + +[ $runtime == dart_precompiled || $runtime == vm ] +integer_parsed_arith_vm_test/01: RuntimeError # Issue 31346 +integer_parsed_arith_vm_test/02: RuntimeError # Issue 31369 integer_parsed_div_rem_vm_test/01: RuntimeError # Issue 31346 -integer_parsed_arith_vm_test/01: RuntimeError # Issue 31346 +integer_to_radix_string_test/01: RuntimeError # Issue 31346 +string_split_test: RuntimeError # does not return List -[ $runtime == vm || $runtime == dart_precompiled ] -integer_parsed_arith_vm_test/02: RuntimeError # Issue 31369 +[ $runtime == ff || $runtime == jsshell ] +double_parse_test/02: Fail, OK # Issue 30468 +regexp/UC16_test: RuntimeError + +[ $runtime == safari || $runtime == safarimobilesim ] +double_round3_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. +double_round_to_double2_test: Fail, OK # Runtime rounds 0.49999999999999994 to 1. +string_trimlr_test/02: RuntimeError # Uses Unicode 6.2.0 or earlier. + +[ $hot_reload || $hot_reload_rollback ] +integer_parsed_mul_div_vm_test: Pass, Slow # Slow -[ $compiler == dartkp ] -integer_to_radix_string_test/01: CompileTimeError # Issue 31339 -integer_to_radix_string_test/02: CompileTimeError # Issue 31339 -integer_to_string_test/01: CompileTimeError # Issue 31339 -bit_twiddling_test/int64: CompileTimeError # Issue 31339 -num_sign_test: CompileTimeError, Crash # Issue 31339 diff --git a/tests/html/html.status b/tests/html/html.status index 9122f623dab..663af62c39a 100644 --- a/tests/html/html.status +++ b/tests/html/html.status @@ -1,20 +1,31 @@ # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - -interactive_test: Skip # Must be run manually. cross_frame_test: Skip # Test reloads itself. Issue 18558 +interactive_test: Skip # Must be run manually. + +[ $compiler == dart2analyzer ] +custom/document_register_basic_test: StaticWarning +custom/element_upgrade_test: StaticWarning +datalistelement_test: StaticWarning +documentfragment_test: StaticWarning +element_add_test: StaticWarning +element_test: StaticWarning +events_test: StaticWarning +htmlelement_test: StaticWarning +js_function_getter_trust_types_test: Skip # dart2js specific flags. +js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 +localstorage_test: StaticWarning +mutationobserver_test: StaticWarning +queryall_test: Fail +track_element_constructor_test: StaticWarning +transferables_test: StaticWarning +typed_arrays_range_checks_test: StaticWarning +typing_test: StaticWarning +webgl_1_test: StaticWarning +window_nosuchmethod_test: StaticWarning [ $compiler == dart2js ] -input_element_test/attributes: Fail # Issue 21555 -wrapping_collections_test: SkipByDesign # Testing an issue that is only relevant to Dartium -js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 -mirrors_js_typed_interop_test: Pass, Slow -js_type_test/dynamic-null-not-Foo: Fail # Issue 26838 -js_type_test/dynamic-String-not-Foo: Fail # Issue 26838 -js_type_test/dynamic-String-not-dynamic-Foo: Fail # Issue 26838 -js_interop_constructor_name_test/HTMLDivElement-types-erroneous1: Fail # Issue 26838 -js_interop_constructor_name_test/HTMLDivElement-types-erroneous2: Fail # Issue 26838 custom/document_register_type_extensions_test/construction: Pass, Timeout # Roll 50 failure custom/document_register_type_extensions_test/registration: Pass, Timeout # Roll 50 failure custom/entered_left_view_test/shadow_dom: Pass, Timeout # Roll 50 failure @@ -28,26 +39,118 @@ indexeddb_2_test: Pass, Timeout # Roll 50 failure indexeddb_3_test: Pass, Timeout # Roll 50 failure indexeddb_4_test: Pass, Timeout # Roll 50 failure indexeddb_5_test: Pass, Timeout # Roll 50 failure +input_element_test/attributes: Fail # Issue 21555 +js_interop_constructor_name_test/HTMLDivElement-types-erroneous1: Fail # Issue 26838 +js_interop_constructor_name_test/HTMLDivElement-types-erroneous2: Fail # Issue 26838 +js_type_test/dynamic-String-not-Foo: Fail # Issue 26838 +js_type_test/dynamic-String-not-dynamic-Foo: Fail # Issue 26838 +js_type_test/dynamic-null-not-Foo: Fail # Issue 26838 +js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 js_typed_interop_side_cast_exp_test: Pass, RuntimeError # Roll 50 failure +mirrors_js_typed_interop_test: Pass, Slow svgelement_test/PathElement: Pass, RuntimeError # Roll 50 failure websql_test/functional: Pass, Timeout # Roll 50 failure +wrapping_collections_test: SkipByDesign # Testing an issue that is only relevant to Dartium xhr_test/xhr: Pass, RuntimeError # Roll 50 failure -[ $compiler == dart2js && $checked ] -js_function_getter_trust_types_test: Skip # --trust-type-annotations incompatible with --checked +[ $runtime == drt ] +webgl_extensions_test: Skip # webgl does not work properly on DRT, which is 'headless'. -[ $compiler == dart2js && $csp && $browser ] -custom/js_custom_test: Fail # Issue 14643 -custom/element_upgrade_test: Fail # Issue 17298 +[ $runtime == ie11 ] +audiobuffersourcenode_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +audiocontext_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +canvasrenderingcontext2d_test/arc: Pass, Fail # Pixel unexpected value. Please triage this failure. +canvasrenderingcontext2d_test/drawImage_video_element: Fail # IE does not support drawImage w/ video element +canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # IE does not support drawImage w/ video element +crypto_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +css_test/supportsPointConversions: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +custom/document_register_type_extensions_test/single-parameter: Fail # Issue 13193. +deferred_multi_app_htmltest: Skip # Times out on IE. Issue 21537 +element_animate_test: Fail # Element.animate not supported on these browsers. +element_test/click: Fail # IE does not support firing this event. +element_types_test/supported_content: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +element_types_test/supported_details: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +element_types_test/supported_keygen: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +element_types_test/supported_meter: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +element_types_test/supported_output: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +element_types_test/supported_shadow: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +element_types_test/supported_template: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +event_test: RuntimeError # Issue 23437. Only three failures, but hard to break them out. +fileapi_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +gamepad_test: Fail # IE does not support Navigator.getGamepads() +history_test/supported_HashChangeEvent: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +indexeddb_5_test: Fail # Issue 12893 +input_element_test/supported_date: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +input_element_test/supported_datetime-local: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +input_element_test/supported_month: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +input_element_test/supported_time: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +input_element_test/supported_week: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +js_test/transferrables: RuntimeError # Issue 14246 +js_util_test/callConstructor: RuntimeError # Issue 26978 +localstorage_test: Pass, RuntimeError # Issue 22166 +media_stream_test/supported_MediaStreamEvent: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +media_stream_test/supported_MediaStreamTrackEvent: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +media_stream_test/supported_media: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +mediasource_test/functional: Pass, Fail # Fails on Windows 8 +mediasource_test/supported: Pass, Fail # Should pass on Windows 8 +no_linked_scripts_htmltest: Skip # Times out on IE. Issue 21537 +notification_test/supported_notification: Fail # Notification not supported on IE +postmessage_structured_test/more_primitives: Fail # Does not support the MessageEvent constructor. +request_animation_frame_test: Skip # Times out. Issue 22167 +rtc_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +scripts_htmltest: Skip # Times out on IE. Issue 21537 +serialized_script_value_test: Fail +shadow_dom_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +speechrecognition_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +storage_test: Pass, RuntimeError # Issue 22166 +svgelement_test/supported_altGlyph: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +svgelement_test/supported_animate: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +svgelement_test/supported_animateMotion: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +svgelement_test/supported_animateTransform: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +svgelement_test/supported_foreignObject: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +svgelement_test/supported_set: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +text_event_test: RuntimeError # Issue 23437 +touchevent_test/supported: Fail # IE does not support TouchEvents +transferables_test: Pass, Fail # Issues 20659. +transition_event_test/functional: Skip # Times out. Issue 22167 +two_scripts_htmltest: Skip # Times out on IE. Issue 21537 +webgl_1_test/functional: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +websocket_test/websocket: Fail # Issue 7875. Closed with "working as intended". +websql_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. +wheelevent_test: RuntimeError # Issue 23437 +worker_test/functional: Pass, Fail # Issues 20659. +xhr_test/json: Fail # IE10 returns string, not JSON object +xsltprocessor_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -[ $compiler == dart2js && $browser ] -custom/created_callback_test: Fail # Support for created constructor. Issue 14835 -fontface_loaded_test: Fail # Support for promises. +[ $runtime == safari ] +audiobuffersourcenode_test/functional: RuntimeError +indexeddb_1_test/functional: Skip # Times out. Issue 21433 +indexeddb_2_test: RuntimeError # Issue 21433 +indexeddb_3_test: Skip # Times out 1 out of 10. +indexeddb_4_test: RuntimeError # Issue 21433 +indexeddb_5_test: RuntimeError # Issue 21433 +input_element_test/supported_date: Fail +input_element_test/supported_datetime-local: Fail +input_element_test/supported_month: RuntimeError +input_element_test/supported_time: RuntimeError +input_element_test/supported_week: RuntimeError +notification_test/constructors: Fail # Safari doesn't let us access the fields of the Notification to verify them. +touchevent_test/supported: Fail # Safari does not support TouchEvents -[ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim || $runtime == ff || $ie) ] -custom/entered_left_view_test/viewless_document: Fail # Polyfill does not handle this -fontface_test: Fail # Fontface not supported on these. -custom/attribute_changed_callback_test/unsupported_on_polyfill: Fail # Polyfill does not support +[ $runtime == safarimobilesim ] +element_offset_test/offset: RuntimeError # Issue 18573 +element_types_test/supported_meter: RuntimeError # Issue 18573 +element_types_test/supported_template: Fail +event_test: RuntimeError # Safarimobilesim does not support WheelEvent +indexeddb_1_test/supported: Fail +notification_test/constructors: Pass # Safari mobile will pass this test on the basis that notifications aren't supported at all. +notification_test/supported_notification: RuntimeError # Issue 22869 +performance_api_test/supported: Fail +wheelevent_test: RuntimeError # Safarimobilesim does not support WheelEvent +xhr_test/json: Fail # Safari doesn't support JSON response type + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 [ $compiler == dart2js && $runtime == chrome ] element_animate_test/timing_dict: RuntimeError # Issue 26730 @@ -64,20 +167,18 @@ speechrecognition_test/types: RuntimeError # Please triage. touchevent_test/supported: Fail # Touch events are only supported on touch devices [ $compiler == dart2js && $runtime == chromeOnAndroid ] +audiobuffersourcenode_test/supported: Fail # TODO(dart2js-team): Please triage this failure. +audiocontext_test/supported: RuntimeError # TODO(dart2js-team): Please triage this failure. +canvasrenderingcontext2d_test/drawImage_video_element: Fail # TODO(dart2js-team): Please triage this failure. +canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # TODO(dart2js-team): Please triage this failure. +canvasrenderingcontext2d_test/fillText: Fail # TODO(dart2js-team): Please triage this failure. crypto_test/functional: Pass, Slow # TODO(dart2js-team): Please triage this failure. -input_element_test/supported_datetime-local: Pass, Slow # TODO(dart2js-team): Please triage this failure. - +element_types_test/supported_datalist: Fail # TODO(dart2js-team): Please triage this failure. fileapi_test/entry: Fail, Pass # TODO(dart2js-team): Please triage this failure. fileapi_test/fileEntry: Fail, Pass # TODO(dart2js-team): Please triage this failure. fileapi_test/getDirectory: Fail, Pass # TODO(dart2js-team): Please triage this failure. fileapi_test/getFile: Fail, Pass # TODO(dart2js-team): Please triage this failure. - -audiocontext_test/supported: RuntimeError # TODO(dart2js-team): Please triage this failure. -audiobuffersourcenode_test/supported: Fail # TODO(dart2js-team): Please triage this failure. -canvasrenderingcontext2d_test/drawImage_video_element: Fail # TODO(dart2js-team): Please triage this failure. -canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # TODO(dart2js-team): Please triage this failure. -canvasrenderingcontext2d_test/fillText: Fail # TODO(dart2js-team): Please triage this failure. -element_types_test/supported_datalist: Fail # TODO(dart2js-team): Please triage this failure. +input_element_test/supported_datetime-local: Pass, Slow # TODO(dart2js-team): Please triage this failure. input_element_test/supported_week: Fail # TODO(dart2js-team): Please triage this failure. media_stream_test/supported_media: Fail # TODO(dart2js-team): Please triage this failure. rtc_test/supported: Fail # TODO(dart2js-team): Please triage this failure. @@ -85,253 +186,45 @@ speechrecognition_test/supported: Fail # TODO(dart2js-team): Please triage this speechrecognition_test/types: Fail # TODO(dart2js-team): Please triage this failure. xhr_test/json: Fail # TODO(dart2js-team): Please triage this failure. -[ $runtime == safarimobilesim ] -element_offset_test/offset: RuntimeError # Issue 18573 -element_types_test/supported_meter: RuntimeError # Issue 18573 - -[ $runtime == chrome && $system == macos ] -canvasrenderingcontext2d_test/drawImage_video_element: Skip # Times out. Please triage this failure. -canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Skip # Times out. Please triage this failure. -transition_event_test/functional: Skip # Times out. Issue 22167 -request_animation_frame_test: Skip # Times out. Issue 22167 -custom/*: Pass, Timeout # Issue 26789 -custom_elements_test: Pass, Timeout # Issue 26789 -custom_element_method_clash_test: Pass, Timeout # Issue 26789 -custom_element_name_clash_test: Pass, Timeout # Issue 26789 - -[$runtime == drt || $runtime == chrome || $runtime == chromeOnAndroid ] -webgl_1_test: Pass, Fail # Issue 8219 - -[ $compiler == dart2js && $minified ] -canvas_pixel_array_type_alias_test/types2_runtimeTypeName: Fail, OK # Issue 12605 - -[ $runtime == ie11 ] -canvasrenderingcontext2d_test/arc: Pass, Fail # Pixel unexpected value. Please triage this failure. -canvasrenderingcontext2d_test/drawImage_video_element: Fail # IE does not support drawImage w/ video element -canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # IE does not support drawImage w/ video element -custom/document_register_type_extensions_test/single-parameter: Fail # Issue 13193. -deferred_multi_app_htmltest: Skip # Times out on IE. Issue 21537 -element_animate_test: Fail # Element.animate not supported on these browsers. -element_test/click: Fail # IE does not support firing this event. -event_test: RuntimeError # Issue 23437. Only three failures, but hard to break them out. -gamepad_test: Fail # IE does not support Navigator.getGamepads() -indexeddb_5_test: Fail # Issue 12893 -js_test/transferrables: RuntimeError # Issue 14246 -js_util_test/callConstructor: RuntimeError # Issue 26978 -localstorage_test: Pass, RuntimeError # Issue 22166 -no_linked_scripts_htmltest: Skip # Times out on IE. Issue 21537 -notification_test/supported_notification: Fail # Notification not supported on IE -postmessage_structured_test/more_primitives: Fail # Does not support the MessageEvent constructor. -request_animation_frame_test: Skip # Times out. Issue 22167 -scripts_htmltest: Skip # Times out on IE. Issue 21537 -serialized_script_value_test: Fail -storage_test: Pass, RuntimeError # Issue 22166 -text_event_test: RuntimeError # Issue 23437 -transferables_test: Pass, Fail # Issues 20659. -transition_event_test/functional: Skip # Times out. Issue 22167 -two_scripts_htmltest: Skip # Times out on IE. Issue 21537 -websocket_test/websocket: Fail # Issue 7875. Closed with "working as intended". -wheelevent_test: RuntimeError # Issue 23437 -worker_test/functional: Pass, Fail # Issues 20659. - -audiobuffersourcenode_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -audiocontext_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -crypto_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -css_test/supportsPointConversions: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_content: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_details: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_keygen: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_meter: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_output: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_shadow: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -element_types_test/supported_template: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -fileapi_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -history_test/supported_HashChangeEvent: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -input_element_test/supported_date: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -input_element_test/supported_datetime-local: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -input_element_test/supported_month: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -input_element_test/supported_time: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -input_element_test/supported_week: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -media_stream_test/supported_MediaStreamEvent: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -media_stream_test/supported_MediaStreamTrackEvent: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -media_stream_test/supported_media: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -mediasource_test/supported: Pass, Fail # Should pass on Windows 8 -mediasource_test/functional: Pass, Fail # Fails on Windows 8 -rtc_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -shadow_dom_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -speechrecognition_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -svgelement_test/supported_altGlyph: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -svgelement_test/supported_animate: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -svgelement_test/supported_animateMotion: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -svgelement_test/supported_animateTransform: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -svgelement_test/supported_foreignObject: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -svgelement_test/supported_set: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -touchevent_test/supported: Fail # IE does not support TouchEvents -webgl_1_test/functional: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -websql_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. -xhr_test/json: Fail # IE10 returns string, not JSON object -xsltprocessor_test/supported: Fail # IE11 Feature support statuses - These results not yet noted in platform support annotations. All changes should be accompanied by platform support annotation changes. - -[ $compiler == dart2js && $runtime == drt && ! $checked ] +[ $compiler == dart2js && $runtime == drt && !$checked ] audiocontext_test/functional: Pass, Fail -[ $runtime == safari || $runtime == safarimobilesim ] -worker_api_test: Skip # Issue 13221 -webgl_1_test: Pass, Fail # Issue 8219 -canvasrenderingcontext2d_test/drawImage_video_element: Fail # Safari does not support drawImage w/ video element -canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # Safari does not support drawImage w/ video element -element_test: Pass, Fail # Issue 21434 -mediasource_test: Pass, Fail # MediaSource only available on Safari 8 desktop, we can't express that. -element_animate_test: Fail # Element.animate not supported on these browsers. -gamepad_test: Fail # Safari does not support Navigator.getGamepads() - -element_types_test/supported_content: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -element_types_test/supported_datalist: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -element_types_test/supported_shadow: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -fileapi_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -media_stream_test/supported_MediaStreamEvent: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -media_stream_test/supported_MediaStreamTrackEvent: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -media_stream_test/supported_media: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -rtc_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -shadow_dom_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. -speechrecognition_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. - -[ $runtime == safarimobilesim ] -performance_api_test/supported: Fail -indexeddb_1_test/supported: Fail -element_types_test/supported_template: Fail -xhr_test/json: Fail # Safari doesn't support JSON response type -notification_test/constructors: Pass # Safari mobile will pass this test on the basis that notifications aren't supported at all. -notification_test/supported_notification: RuntimeError # Issue 22869 -wheelevent_test: RuntimeError # Safarimobilesim does not support WheelEvent -event_test: RuntimeError # Safarimobilesim does not support WheelEvent - -[ $runtime == safari ] -audiobuffersourcenode_test/functional: RuntimeError -input_element_test/supported_month: RuntimeError -input_element_test/supported_time: RuntimeError -input_element_test/supported_week: RuntimeError -input_element_test/supported_date: Fail -input_element_test/supported_datetime-local: Fail -touchevent_test/supported: Fail # Safari does not support TouchEvents -notification_test/constructors: Fail # Safari doesn't let us access the fields of the Notification to verify them. -indexeddb_1_test/functional: Skip # Times out. Issue 21433 -indexeddb_2_test: RuntimeError # Issue 21433 -indexeddb_4_test: RuntimeError # Issue 21433 -indexeddb_5_test: RuntimeError # Issue 21433 -indexeddb_3_test: Skip # Times out 1 out of 10. - -[ $compiler == dart2js && $runtime == ff ] -history_test/history: Skip # Issue 22050 -xhr_test/xhr: Pass, Fail # Issue 11602 -dart_object_local_storage_test: Skip # sessionStorage NS_ERROR_DOM_NOT_SUPPORTED_ERR -webgl_1_test: Pass, Fail # Issue 8219 -text_event_test: Fail # Issue 17893 +[ $compiler == dart2js && $runtime == ff ] +dart_object_local_storage_test: Skip # sessionStorage NS_ERROR_DOM_NOT_SUPPORTED_ERR element_animate_test/timing_dict: RuntimeError # Issue 26730 -messageevent_test: Pass, RuntimeError # Issue 28983 -serialized_script_value_test: Pass, RuntimeError # Issue 28983 -element_types_test/supported_content: Pass, RuntimeError # Issue 28983 -element_types_test/supported_shadow: Pass, RuntimeError # Issue 28983 - element_classes_test: RuntimeError # Issue 27535 +element_types_test/supported_content: Pass, RuntimeError # Issue 28983 element_types_test/supported_keygen: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. +element_types_test/supported_shadow: Pass, RuntimeError # Issue 28983 fileapi_test/supported: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. +history_test/history: Skip # Issue 22050 input_element_test/supported_datetime-local: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. input_element_test/supported_month: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. input_element_test/supported_week: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. media_stream_test/supported_MediaStreamEvent: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. media_stream_test/supported_MediaStreamTrackEvent: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. +messageevent_test: Pass, RuntimeError # Issue 28983 +serialized_script_value_test: Pass, RuntimeError # Issue 28983 shadow_dom_test/supported: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. speechrecognition_test/supported: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. +text_event_test: Fail # Issue 17893 touchevent_test/supported: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. +webgl_1_test: Pass, Fail # Issue 8219 websql_test/supported: Fail # Firefox Feature support statuses - All changes should be accompanied by platform support annotation changes. +xhr_test/xhr: Pass, Fail # Issue 11602 -# 'html' tests import the HTML library, so they only make sense in -# a browser environment. -[ $runtime == vm || $runtime == dart_precompiled ] -*: Skip +[ $compiler == dart2js && $browser ] +custom/created_callback_test: Fail # Support for created constructor. Issue 14835 +fontface_loaded_test: Fail # Support for promises. -[ $compiler == dart2js && ($runtime == drt || $runtime == ff) ] -request_animation_frame_test: Skip # Async test hangs. +[ $compiler == dart2js && $browser && $csp ] +custom/element_upgrade_test: Fail # Issue 17298 +custom/js_custom_test: Fail # Issue 14643 -[ $runtime == drt ] -webgl_extensions_test: Skip # webgl does not work properly on DRT, which is 'headless'. +[ $compiler == dart2js && $checked ] +js_function_getter_trust_types_test: Skip # --trust-type-annotations incompatible with --checked -# Note: these tests are all injecting scripts by design. This is not allowed under CSP. -# TODO(sra): Change these tests to use a same-origin JavaScript script file. -[ $compiler == dart2js && $csp && ($runtime == drt || $runtime == safari || $runtime == ff || $runtime == chrome || $runtime == chromeOnAndroid) ] -event_customevent_test: SkipByDesign -js_interop_1_test: SkipByDesign -js_test: SkipByDesign -js_array_test: SkipByDesign -js_util_test: SkipByDesign -js_typed_interop_bind_this_test: SkipByDesign -js_typed_interop_callable_object_test: SkipByDesign -js_typed_interop_test: SkipByDesign -js_typed_interop_default_arg_test: SkipByDesign -js_typed_interop_type_test: SkipByDesign -js_typed_interop_type1_test: SkipByDesign -js_typed_interop_type3_test: SkipByDesign -js_typed_interop_window_property_test: SkipByDesign -js_function_getter_test: SkipByDesign -js_function_getter_trust_types_test: SkipByDesign -js_dart_to_string_test: SkipByDesign -mirrors_js_typed_interop_test: SkipByDesign -postmessage_structured_test: SkipByDesign - -[ $compiler == dart2js && ($runtime == chrome || $runtime == drt) ] -svgelement_test/supported_altGlyph: RuntimeError # Issue 25787 - -[ ($runtime == drt && $system == macos) || $system == windows ] -xhr_test/xhr: Skip # Times out. Issue 21527 - -[ $compiler == dart2analyzer ] -custom/document_register_basic_test: StaticWarning -custom/element_upgrade_test: StaticWarning -datalistelement_test: StaticWarning -documentfragment_test: StaticWarning -element_add_test: StaticWarning -element_test: StaticWarning -events_test: StaticWarning -htmlelement_test: StaticWarning -js_function_getter_trust_types_test: skip # dart2js specific flags. -localstorage_test: StaticWarning -mutationobserver_test: StaticWarning -queryall_test: fail -track_element_constructor_test: StaticWarning -transferables_test: StaticWarning -typed_arrays_range_checks_test: StaticWarning -typing_test: StaticWarning -webgl_1_test: StaticWarning -window_nosuchmethod_test: StaticWarning -js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 - -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - -[ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] -custom/mirrors_2_test: RuntimeError -custom/mirrors_test: RuntimeError -fileapi_test/entry: RuntimeError -js_typed_interop_default_arg_test/explicit_argument: RuntimeError -js_typed_interop_test/static_method_tearoff_1: RuntimeError - -[ $compiler == dart2js && $dart2js_with_kernel && $minified ] -custom/mirrors_2_test: RuntimeError -custom/mirrors_test: RuntimeError -fileapi_test/entry: RuntimeError -js_typed_interop_default_arg_test/explicit_argument: RuntimeError -js_typed_interop_test/static_method_tearoff_1: RuntimeError - -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -js_typed_interop_default_arg_test/explicit_argument: RuntimeError -js_typed_interop_default_arg_test/none: RuntimeError -js_typed_interop_test/object literal: RuntimeError -js_typed_interop_test/static_method_call: RuntimeError -js_typed_interop_test/static_method_tearoff_1: RuntimeError -js_util_test/hasProperty: RuntimeError - -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] canvasrenderingcontext2d_test/drawImage_image_element: Timeout canvasrenderingcontext2d_test/drawImage_video_element: Timeout canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Timeout @@ -390,12 +283,112 @@ xhr_cross_origin_test/functional: Timeout xhr_test/headers: RuntimeError xhr_test/json: Timeout xhr_test/xhr: Timeout -xhr_test/xhr_requestBlob/xhr_requestBlob: Pass xhr_test/xhr_requestBlob: RuntimeError +xhr_test/xhr_requestBlob/xhr_requestBlob: Pass + +# Note: these tests are all injecting scripts by design. This is not allowed under CSP. +# TODO(sra): Change these tests to use a same-origin JavaScript script file. +[ $compiler == dart2js && $csp && ($runtime == chrome || $runtime == chromeOnAndroid || $runtime == drt || $runtime == ff || $runtime == safari) ] +event_customevent_test: SkipByDesign +js_array_test: SkipByDesign +js_dart_to_string_test: SkipByDesign +js_function_getter_test: SkipByDesign +js_function_getter_trust_types_test: SkipByDesign +js_interop_1_test: SkipByDesign +js_test: SkipByDesign +js_typed_interop_bind_this_test: SkipByDesign +js_typed_interop_callable_object_test: SkipByDesign +js_typed_interop_default_arg_test: SkipByDesign +js_typed_interop_test: SkipByDesign +js_typed_interop_type1_test: SkipByDesign +js_typed_interop_type3_test: SkipByDesign +js_typed_interop_type_test: SkipByDesign +js_typed_interop_window_property_test: SkipByDesign +js_util_test: SkipByDesign +mirrors_js_typed_interop_test: SkipByDesign +postmessage_structured_test: SkipByDesign + +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +js_typed_interop_default_arg_test/explicit_argument: RuntimeError +js_typed_interop_default_arg_test/none: RuntimeError +js_typed_interop_test/object literal: RuntimeError +js_typed_interop_test/static_method_call: RuntimeError +js_typed_interop_test/static_method_tearoff_1: RuntimeError +js_util_test/hasProperty: RuntimeError + +[ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] +custom/mirrors_2_test: RuntimeError +custom/mirrors_test: RuntimeError +fileapi_test/entry: RuntimeError +js_typed_interop_default_arg_test/explicit_argument: RuntimeError +js_typed_interop_test/static_method_tearoff_1: RuntimeError + +[ $compiler == dart2js && $dart2js_with_kernel && $minified ] +custom/mirrors_2_test: RuntimeError +custom/mirrors_test: RuntimeError +fileapi_test/entry: RuntimeError +js_typed_interop_default_arg_test/explicit_argument: RuntimeError +js_typed_interop_test/static_method_tearoff_1: RuntimeError [ $compiler == dart2js && $fast_startup ] custom/constructor_calls_created_synchronously_test: Fail # mirrors not supported custom/js_custom_test: Fail # mirrors not supported -custom/mirrors_test: Fail # mirrors not supported custom/mirrors_2_test: Fail # mirrors not supported +custom/mirrors_test: Fail # mirrors not supported mirrors_js_typed_interop_test: Fail # mirrors not supported + +[ $compiler == dart2js && $minified ] +canvas_pixel_array_type_alias_test/types2_runtimeTypeName: Fail, OK # Issue 12605 + +[ $compiler == dart2js && ($runtime == chrome || $runtime == drt) ] +svgelement_test/supported_altGlyph: RuntimeError # Issue 25787 + +[ $compiler == dart2js && ($runtime == drt || $runtime == ff) ] +request_animation_frame_test: Skip # Async test hangs. + +[ $compiler == dart2js && ($runtime == ff || $runtime == safari || $runtime == safarimobilesim || $ie) ] +custom/attribute_changed_callback_test/unsupported_on_polyfill: Fail # Polyfill does not support +custom/entered_left_view_test/viewless_document: Fail # Polyfill does not handle this +fontface_test: Fail # Fontface not supported on these. + +[ $runtime == chrome && $system == macos ] +canvasrenderingcontext2d_test/drawImage_video_element: Skip # Times out. Please triage this failure. +canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Skip # Times out. Please triage this failure. +custom/*: Pass, Timeout # Issue 26789 +custom_element_method_clash_test: Pass, Timeout # Issue 26789 +custom_element_name_clash_test: Pass, Timeout # Issue 26789 +custom_elements_test: Pass, Timeout # Issue 26789 +request_animation_frame_test: Skip # Times out. Issue 22167 +transition_event_test/functional: Skip # Times out. Issue 22167 + +[ $runtime == chrome || $runtime == chromeOnAndroid || $runtime == drt ] +webgl_1_test: Pass, Fail # Issue 8219 + +# 'html' tests import the HTML library, so they only make sense in +# a browser environment. +[ $runtime == dart_precompiled || $runtime == vm ] +*: Skip + +[ $runtime == safari || $runtime == safarimobilesim ] +canvasrenderingcontext2d_test/drawImage_video_element: Fail # Safari does not support drawImage w/ video element +canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # Safari does not support drawImage w/ video element +element_animate_test: Fail # Element.animate not supported on these browsers. +element_test: Pass, Fail # Issue 21434 +element_types_test/supported_content: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +element_types_test/supported_datalist: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +element_types_test/supported_shadow: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +fileapi_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +gamepad_test: Fail # Safari does not support Navigator.getGamepads() +media_stream_test/supported_MediaStreamEvent: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +media_stream_test/supported_MediaStreamTrackEvent: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +media_stream_test/supported_media: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +mediasource_test: Pass, Fail # MediaSource only available on Safari 8 desktop, we can't express that. +rtc_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +shadow_dom_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +speechrecognition_test/supported: Fail # Safari Feature support statuses - All changes should be accompanied by platform support annotation changes. +webgl_1_test: Pass, Fail # Issue 8219 +worker_api_test: Skip # Issue 13221 + +[ $system == windows || $runtime == drt && $system == macos ] +xhr_test/xhr: Skip # Times out. Issue 21527 + diff --git a/tests/isolate/isolate.status b/tests/isolate/isolate.status index bb7c9b27d37..1c82d4e166a 100644 --- a/tests/isolate/isolate.status +++ b/tests/isolate/isolate.status @@ -2,47 +2,17 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[$runtime == vm && $compiler == none && $system == fuchsia] -*: Skip # Not yet triaged. - -[ $runtime == vm || $runtime == flutter || $runtime == dart_precompiled ] -browser/*: SkipByDesign # Browser specific tests -isolate_stress_test: Skip # Issue 12588: Uses dart:html. This should be able to pass when we have wrapper-less tests. -stacktrace_message_test: RuntimeError # Fails to send stacktrace object. - -[ $runtime != vm || $mode == product || $compiler == app_jit ] -checked_test: Skip # Unsupported. - -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -compile_time_error_test/01: Skip # Issue 12587 -ping_test: Skip # Resolve test issues -ping_pause_test: Skip # Resolve test issues -kill3_test: Pass, Fail # Bad test: expects total message order - -message3_test/int32x4: Fail, Crash, Timeout # Issue 21818 - -[ $compiler == dart2js && $runtime == safarimobilesim ] -compile_time_error_test/none: Pass, Slow - -[ $compiler == dart2js && $jscl ] -browser/*: SkipByDesign # Browser specific tests - -[ $compiler == dart2js && $runtime == jsshell ] -pause_test: Fail, OK # non-zero timer not supported. -timer_isolate_test: Fail, OK # Needs Timer to run. - -[ $compiler == dart2js && $runtime == safari ] -cross_isolate_message_test: Skip # Issue 12627 -message_test: Skip # Issue 12627 +[ $compiler == dart2analyzer ] +browser/typed_data_message_test: StaticWarning +mint_maker_test: StaticWarning [ $compiler == dart2js ] -stacktrace_message_test: RuntimeError # Fails to send stacktrace object. browser/issue_12474_test: CompileTimeError # Issue 22529 enum_const_test/02: RuntimeError # Issue 21817 -error_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. -error_exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. -exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. -function_send1_test: SkipByDesign # Test uses a ".dart" URI. +error_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. +error_exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. +exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. +function_send1_test: SkipByDesign # Test uses a ".dart" URI. issue_21398_parent_isolate1_test: SkipByDesign # Test uses a ".dart" URI. issue_21398_parent_isolate2_test: SkipByDesign # Test uses a ".dart" URI. issue_21398_parent_isolate_test: SkipByDesign # Test uses a ".dart" URI. @@ -51,22 +21,60 @@ kill_self_synchronously_test: SkipByDesign # Unsupported operation: Platform._r message3_test/constInstance: RuntimeError # Issue 21817 message3_test/constList: RuntimeError # Issue 21817 message3_test/constList_identical: RuntimeError # Issue 21817 -message3_test/constMap: RuntimeError # Issue 21817 +message3_test/constMap: RuntimeError # Issue 21817 non_fatal_exception_in_timer_callback_test: Skip # Issue 23876 spawn_uri_exported_main_test: SkipByDesign # Test uses a ".dart" URI. spawn_uri_nested_vm_test: SkipByDesign # Test uses a ".dart" URI. spawn_uri_vm_test: SkipByDesign # Test uses a ".dart" URI. +stacktrace_message_test: RuntimeError # Fails to send stacktrace object. + +[ $mode == product ] +issue_24243_parent_isolate_test: Skip # Requires checked mode + +[ $runtime == flutter ] +isolate_import_test/01: Skip # Flutter Issue 9114 +issue_21398_parent_isolate2_test/01: Skip # Flutter Issue 9114 +simple_message_test/01: Skip # Flutter Issue 9114 + +[ $csp ] +browser/package_resolve_browser_hook_test: SkipByDesign # Test written in a way that violates CSP. +deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work from an isolate in CSP-mode + +[ $jscl ] +spawn_uri_multi_test/none: RuntimeError # Issue 13544 + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + +[ $compiler == dart2js && $runtime == chrome ] +function_send_test: Skip # Crashes Chrome 62: https://bugs.chromium.org/p/chromium/issues/detail?id=775506 + +[ $compiler == dart2js && $runtime == chromeOnAndroid ] +isolate_stress_test: Pass, Slow # TODO(kasperl): Please triage. +mandel_isolate_test: Pass, Timeout # TODO(kasperl): Please triage. +unresolved_ports_test: Pass, Timeout # Issue 15610 [ $compiler == dart2js && $runtime != d8 ] -error_exit_at_spawn_test: Skip # Issue 23876 error_at_spawn_test: Skip # Issue 23876 +error_exit_at_spawn_test: Skip # Issue 23876 exit_at_spawn_test: Skip # Issue 23876 message4_test: Skip # Issue 30247 -[ $compiler == dart2js && $jscl ] -spawn_uri_test: SkipByDesign # Loading another file is not supported in JS shell +[ $compiler == dart2js && $runtime == jsshell ] +pause_test: Fail, OK # non-zero timer not supported. +timer_isolate_test: Fail, OK # Needs Timer to run. -[ ($compiler == dart2js && $fast_startup) ] +[ $compiler == dart2js && $runtime == safari ] +cross_isolate_message_test: Skip # Issue 12627 +message_test: Skip # Issue 12627 + +[ $compiler == dart2js && $runtime == safarimobilesim ] +compile_time_error_test/none: Pass, Slow + +[ $compiler == dart2js && !$browser && $fast_startup ] +isolate_current_test: Fail # please triage + +[ $compiler == dart2js && $fast_startup ] browser/compute_this_script_browser_test: Fail # mirrors not supported browser/typed_data_message_test: Fail # mirrors not supported count_test: Fail # mirrors not supported @@ -89,46 +97,48 @@ stacktrace_message_test: Fail # mirrors not supported static_function_test: Fail # mirrors not supported unresolved_ports_test: Fail # mirrors not supported -[ $compiler == dart2js && $fast_startup && ! $browser ] -isolate_current_test: Fail # please triage +[ $compiler == dart2js && $jscl ] +browser/*: SkipByDesign # Browser specific tests +spawn_uri_test: SkipByDesign # Loading another file is not supported in JS shell -[ $csp ] -deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work from an isolate in CSP-mode -browser/package_resolve_browser_hook_test: SkipByDesign # Test written in a way that violates CSP. - -[ $compiler == dart2js && $runtime == chrome ] -function_send_test: Skip # Crashes Chrome 62: https://bugs.chromium.org/p/chromium/issues/detail?id=775506 - -[ $compiler == dart2js && $runtime == chromeOnAndroid ] -isolate_stress_test: Pass, Slow # TODO(kasperl): Please triage. - -mandel_isolate_test: Pass, Timeout # TODO(kasperl): Please triage. - -[ $compiler == dart2js && ( $runtime == ff || $runtime == safari || $runtime == drt || $runtime == chrome || $runtime == chromeOnAndroid) ] +[ $compiler == dart2js && ($runtime == chrome || $runtime == chromeOnAndroid || $runtime == drt || $runtime == ff || $runtime == safari) ] isolate_stress_test: Pass, Slow # Issue 10697 -[ $compiler == dart2js && $runtime == chromeOnAndroid ] -unresolved_ports_test: Pass, Timeout # Issue 15610 +[ $compiler == none && $runtime == vm && $system == fuchsia ] +*: Skip # Not yet triaged. -[ $jscl ] -spawn_uri_multi_test/none: RuntimeError # Issue 13544 +[ $compiler == none && ($runtime == flutter || $runtime == vm) ] +scenarios/short_package/short_package_test: Fail, OK # We do not plan to support the tested behavior anyway. -[ $compiler == dart2analyzer ] -browser/typed_data_message_test: StaticWarning -mint_maker_test: StaticWarning +[ $mode == debug && ($compiler == dartk || $compiler == dartkp) ] +static_function_test: Skip # Flaky (https://github.com/dart-lang/sdk/issues/30063). -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 +[ $compiler == app_jit || $compiler == none || $compiler == precompiler ] +compile_time_error_test/01: Skip # Issue 12587 +kill3_test: Pass, Fail # Bad test: expects total message order +message3_test/int32x4: Fail, Crash, Timeout # Issue 21818 +ping_pause_test: Skip # Resolve test issues +ping_test: Skip # Resolve test issues -[ $compiler == none && ($runtime == vm || $runtime == flutter) ] -scenarios/short_package/short_package_test: Fail, OK # We do not plan to support the tested behavior anyway. +[ $compiler == app_jit || $mode == product || $runtime != vm ] +checked_test: Skip # Unsupported. + +[ $compiler == dartk || $compiler == dartkp ] +compile_time_error_test/01: MissingCompileTimeError +deferred_in_isolate2_test: Skip # Timeout. Deferred loading kernel issue 28335. +deferred_in_isolate_test: Skip # Timeout. Deferred loading kernel issue 28335. +issue_21398_parent_isolate2_test/01: Skip # Timeout. Deferred loading kernel issue 28335. +message3_test/int32x4: Crash +ping_pause_test: Pass, Timeout +spawn_function_custom_class_test: Pass, Timeout +spawn_uri_nested_vm_test: Pass, Timeout [ $compiler != none || $runtime != vm ] -package_root_test: SkipByDesign # Uses Isolate.packageRoot -package_config_test: SkipByDesign # Uses Isolate.packageConfig -package_resolve_test: SkipByDesign # Uses Isolate.resolvePackageUri -spawn_uri_fail_test: SkipByDesign # Uses dart:io. -scenarios/*: SkipByDesign # Use automatic package resolution, spawnFunction and .dart URIs. +package_config_test: SkipByDesign # Uses Isolate.packageConfig +package_resolve_test: SkipByDesign # Uses Isolate.resolvePackageUri +package_root_test: SkipByDesign # Uses Isolate.packageRoot +scenarios/*: SkipByDesign # Use automatic package resolution, spawnFunction and .dart URIs. +spawn_uri_fail_test: SkipByDesign # Uses dart:io. [ $compiler == precompiler || $runtime == flutter ] count_test: SkipByDesign # Imports dart:mirrors @@ -185,34 +195,16 @@ stacktrace_message_test: Skip # Isolate.spawnUri static_function_test: Skip # Isolate.spawnUri unresolved_ports_test: Skip # Isolate.spawnUri -[ $mode == product ] -issue_24243_parent_isolate_test: Skip # Requires checked mode +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +browser/*: SkipByDesign # Browser specific tests +isolate_stress_test: Skip # Issue 12588: Uses dart:html. This should be able to pass when we have wrapper-less tests. +stacktrace_message_test: RuntimeError # Fails to send stacktrace object. [ $hot_reload || $hot_reload_rollback ] -function_send_test: Pass, Fail # Closure identity -message3_test/fun: Pass, Fail # Closure identity -deferred_in_isolate_test: Crash # Requires deferred libraries deferred_in_isolate2_test: Crash # Requires deferred libraries +deferred_in_isolate_test: Crash # Requires deferred libraries +function_send_test: Pass, Fail # Closure identity issue_21398_parent_isolate2_test: Crash # Requires deferred libraries +message3_test/fun: Pass, Fail # Closure identity spawn_uri_nested_vm_test: Pass, Crash # Issue 28192 -[ ($compiler == dartk || $compiler == dartkp) ] -compile_time_error_test/01: MissingCompileTimeError -message3_test/int32x4: Crash -ping_pause_test: Pass, Timeout -spawn_function_custom_class_test: Pass, Timeout -spawn_uri_nested_vm_test: Pass, Timeout - -[ ($compiler == dartk || $compiler == dartkp) && $mode == debug ] -static_function_test: Skip # Flaky (https://github.com/dart-lang/sdk/issues/30063). - -[ $runtime == flutter ] -issue_21398_parent_isolate2_test/01: Skip # Flutter Issue 9114 -simple_message_test/01: Skip # Flutter Issue 9114 -isolate_import_test/01: Skip # Flutter Issue 9114 - -# Deferred loading kernel issue 28335. -[ ($compiler == dartk || $compiler == dartkp) ] -deferred_in_isolate2_test: Skip # Timeout. Deferred loading kernel issue 28335. -deferred_in_isolate_test: Skip # Timeout. Deferred loading kernel issue 28335. -issue_21398_parent_isolate2_test/01: Skip # Timeout. Deferred loading kernel issue 28335. diff --git a/tests/kernel/kernel.status b/tests/kernel/kernel.status index 38ca3b032de..025a3ce30b3 100644 --- a/tests/kernel/kernel.status +++ b/tests/kernel/kernel.status @@ -1,22 +1,22 @@ # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - unsorted/invocation_errors_test: RuntimeError +[ $compiler == dart2js ] +unsorted/invocation_errors_test: Pass +unsorted/loop_test: Skip +unsorted/nsm_dispatcher_test: Skip # The test uses Symbol without MirrorsUsed +unsorted/super_initializer_test: Skip +unsorted/super_mixin_test: CompileTimeError + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + [ $compiler == dart2analyzer && $runtime == none ] unsorted/invocation_errors_test: StaticWarning unsorted/super_mixin_test: CompileTimeError -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - -[ $compiler == dart2js ] -unsorted/invocation_errors_test: Pass -unsorted/nsm_dispatcher_test: Skip # The test uses Symbol without MirrorsUsed -unsorted/super_initializer_test: Skip -unsorted/super_mixin_test: CompileTimeError -unsorted/loop_test: Skip - [ $runtime == dart_precompiled && $minified ] -unsorted/symbol_literal_test: Skip # Expects unobfuscated Symbol.toString. +unsorted/symbol_literal_test: Skip # Expects unobfuscated Symbol.toString. + diff --git a/tests/language/language.status b/tests/language/language.status index 987c8d0515d..fcc41e173fd 100644 --- a/tests/language/language.status +++ b/tests/language/language.status @@ -1,117 +1,37 @@ # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # This directory contains tests that are intended to show the # current state of the language. -[ $strong ] -*: SkipByDesign # tests/language_2 has the strong mode versions of these tests. +[ $compiler == app_jit ] +deferred_inheritance_constraints_test/redirecting_constructor: Crash -[ $compiler == precompiler && $runtime == dart_precompiled ] -stacktrace_demangle_ctors_test: RuntimeError +[ $compiler == dart2analyzer ] +config_import_corelib_test: StaticWarning, OK +vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. -[ $compiler == precompiler && $runtime == dart_precompiled && $checked ] -assertion_initializer_const_error2_test/cc02: Crash +[ $compiler == precompiler ] +deferred_global_test: Fail # Deferred loading happens eagerly. Issue #27587 +deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot +implicit_closure_test: Skip # Incompatible flag: --use_slow_path +regress_23408_test: RuntimeError +vm/regress_27201_test: Fail # Deferred loading happens eagerly. Issue #27587 -[$compiler == none && $runtime == vm && !$checked] -assertion_initializer_const_error_test/01: MissingCompileTimeError -assertion_initializer_const_function_error_test/01: MissingCompileTimeError - -[$compiler == app_jit && $runtime == vm && !$checked] -assertion_initializer_const_error_test/01: MissingCompileTimeError -assertion_initializer_const_function_error_test/01: MissingCompileTimeError - -[ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && $compiler != dartk && $compiler != dartkp ] -abstract_beats_arguments2_test/01: Crash # Issue 29171 - -# These test entries will be valid for vm (with and without kernel). -[ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ] -async_star_cancel_while_paused_test: RuntimeError -async_star_pause_test: Fail, OK # This is OK for now, but we may want to change the semantics to match the test. - -mixin_illegal_super_use_test: Skip # Issues 24478 and 23773, # These tests are skipped in the VM because it has "--supermixin" functionality enabled unconditionally. The tests should be removed once the same is true for analyzer (#24478) and dart2js (#23773) -mixin_illegal_superclass_test: Skip # Issues 24478 and 23773, # These tests are skipped in the VM because it has "--supermixin" functionality enabled unconditionally. The tests should be removed once the same is true for analyzer (#24478) and dart2js (#23773) - -constructor5_test: Fail # Issue 6422, These bugs refer currently ongoing language discussions. -constructor6_test: Fail # Issue 6422, These bugs refer currently ongoing language discussions. - -generalized_void_syntax_test: CompileTimeError -generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 - -super_test: Fail, OK # Failures related to super call in ctor initializer list -final_field_initialization_order_test: Fail, OK # Failures related to super call in ctor initializer list -field_initialization_order_test: Fail, OK # Failures related to super call in ctor initializer list -example_constructor_test: Fail, OK # Failures related to super call in ctor initializer list -constructor3_test: Fail, OK # Failures related to super call in ctor initializer list -constructor2_test: Fail, OK # Failures related to super call in ctor initializer list - -duplicate_export_negative_test: Fail # Issue 6134 - -cyclic_type_test/02: Fail, OK # Non-contractive types are not supported in the vm. -cyclic_type_test/04: Fail, OK # Non-contractive types are not supported in the vm. -cyclic_type2_test: Fail, OK # Non-contractive types are not supported in the vm. -least_upper_bound_expansive_test/*: Fail, OK # Non-contractive types are not supported in the vm. - -vm/regress_29145_test: Skip # Issue 29145 - -no_main_test/01: Skip # Skipped temporaril until Issue 29895 is fixed. -main_not_a_function_test/01: Skip # Skipped temporaril until Issue 29895 is fixed. - -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -dynamic_prefix_core_test/01: RuntimeError # Issue 12478 -multiline_strings_test: Fail # Issue 23020 - -deferred_redirecting_factory_test: Fail, Crash # Issue 23408 -redirecting_constructor_initializer_test: RuntimeError # Issue 23488 - -async_star_regression_2238_test: CompileTimeError - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $checked ] -generic_methods_function_type_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. -generic_methods_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. -generic_methods_new_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. -generic_local_functions_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. -generic_functions_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. -generic_methods_generic_function_parameter_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($runtime == vm || $runtime == dart_precompiled || $runtime == flutter) ] -class_keyword_test/02: MissingCompileTimeError # Issue 13627 -unicode_bom_test: Fail # Issue 16067 -vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $checked ] -type_variable_bounds4_test/01: Fail # Issue 14006 - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($runtime == vm || $runtime == dart_precompiled || $runtime == flutter) ] -export_ambiguous_main_negative_test: Fail # Issue 14763 - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit || $compiler == dartk || $compiler == dartkp) && (($runtime == vm || $runtime == dart_precompiled) || $runtime == flutter) ] -dynamic_prefix_core_test/none: Fail # Issue 12478 - -[ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && $arch == arm64 ] -large_class_declaration_test: SkipSlow # Uses too much memory. -closure_cycles_test: Pass, Slow - -[ $runtime == vm || $runtime == dart_precompiled ] -vm/load_to_load_unaligned_forwarding_vm_test: Pass, Crash # Unaligned offset. Issue 22151 -vm/unaligned_float_access_literal_index_test: Pass, Crash # Unaligned offset. Issue 22151 - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($runtime == vm || $runtime == dart_precompiled)) && $arch == ia32 ] -vm/regress_24517_test: Pass, Fail # Issue 24517. - -[ $compiler == precompiler && $runtime == dart_precompiled ] -vm/regress_27671_test: Skip # Unsupported -export_double_same_main_test: Skip # Issue 29895 -export_ambiguous_main_negative_test: Skip # Issue 29895 -vm/optimized_stacktrace_test: Skip # Issue 30198 - -[ $compiler == precompiler && $runtime == dart_precompiled && !$checked] -assertion_initializer_const_error_test/01: MissingCompileTimeError -assertion_initializer_const_function_error_test/01: MissingCompileTimeError - -[ $compiler == precompiler && $runtime == dart_precompiled && $mode == debug ] -regress_29025_test: Crash # Issue dartbug.com/29331 +[ $mode == product ] +assertion_test: SkipByDesign # Requires checked mode. +generic_test: SkipByDesign # Requires checked mode. +issue13474_test: SkipByDesign # Requires checked mode. +list_literal4_test: SkipByDesign # Requires checked mode. +map_literal4_test: SkipByDesign # Requires checked mode. +named_parameters_type_test/01: SkipByDesign # Requires checked mode. +named_parameters_type_test/02: SkipByDesign # Requires checked mode. +named_parameters_type_test/03: SkipByDesign # Requires checked mode. +positional_parameters_type_test/01: SkipByDesign # Requires checked mode. +positional_parameters_type_test/02: SkipByDesign # Requires checked mode. +stacktrace_demangle_ctors_test: SkipByDesign # Names are not scrubbed. +type_checks_in_factory_method_test: SkipByDesign # Requires checked mode. +vm/type_vm_test: Fail, OK # Expects exact type name. [ $runtime == dart_precompiled ] const_evaluation_test: SkipByDesign # Imports dart:mirrors @@ -123,6 +43,7 @@ invocation_mirror2_test: SkipByDesign # Imports dart:mirrors invocation_mirror_invoke_on2_test: SkipByDesign # Imports dart:mirrors invocation_mirror_invoke_on_test: SkipByDesign # Imports dart:mirrors issue21079_test: SkipByDesign # Imports dart:mirrors +library_env_test/has_mirror_support: RuntimeError, OK # The test is supposed to fail. many_overridden_no_such_method_test: SkipByDesign # Imports dart:mirrors no_such_method_test: SkipByDesign # Imports dart:mirrors null_test/none: SkipByDesign # Imports dart:mirrors @@ -131,78 +52,422 @@ redirecting_factory_reflection_test: SkipByDesign # Imports dart:mirrors regress_13462_0_test: SkipByDesign # Imports dart:mirrors regress_13462_1_test: SkipByDesign # Imports dart:mirrors regress_18535_test: SkipByDesign # Imports dart:mirrors +regress_28255_test: SkipByDesign # Imports dart:mirrors super_call4_test: SkipByDesign # Imports dart:mirrors super_getter_setter_test: SkipByDesign # Imports dart:mirrors vm/reflect_core_vm_test: SkipByDesign # Imports dart:mirrors -regress_28255_test: SkipByDesign # Imports dart:mirrors -[ $runtime == dart_precompiled || $mode == product ] -vm/causal_async_exception_stack_test: SkipByDesign # Causal async stacks are not supported in product mode -vm/causal_async_exception_stack2_test: SkipByDesign # Causal async stacks are not supported in product mode +# flutter uses --error_on_bad_type, --error_on_bad_override +# and --await_is_keyword so # the following tests fail with +# a Compilation Error +[ $runtime == flutter ] +async_await_syntax_test/a05c: CompileTimeError +async_await_syntax_test/a05e: CompileTimeError +async_await_syntax_test/d08c: CompileTimeError +async_await_test: CompileTimeError +async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 +async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 +async_return_types_test/tooManyTypeParameters: CompileTimeError +async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 +async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 +async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 +async_star_no_cancel_test: Skip # Flutter Issue 9110 +asyncstar_yield_test: Skip # Flutter Issue 9110 +await_backwards_compatibility_test/none: CompileTimeError +await_for_cancel_test: Skip # Flutter Issue 9110 +await_for_test: Skip # Flutter Issue 9110 +await_test: CompileTimeError +bad_override_test/06: CompileTimeError +call_constructor_on_unresolvable_class_test/01: CompileTimeError +call_constructor_on_unresolvable_class_test/02: CompileTimeError +call_constructor_on_unresolvable_class_test/03: CompileTimeError +call_constructor_on_unresolvable_class_test/07: CompileTimeError +check_method_override_test/01: CompileTimeError +check_method_override_test/02: CompileTimeError +class_keyword_test/02: CompileTimeError +class_override_test/00: CompileTimeError +conditional_import_string_test: CompileTimeError +conditional_import_test: CompileTimeError +config_import_test: RuntimeError # Flutter Issue 9110 +const_evaluation_test/01: CompileTimeError +const_evaluation_test/none: CompileTimeError +const_types_test/01: CompileTimeError +const_types_test/02: CompileTimeError +const_types_test/03: CompileTimeError +const_types_test/04: CompileTimeError +const_types_test/05: CompileTimeError +const_types_test/06: CompileTimeError +const_types_test/13: CompileTimeError +const_types_test/35: CompileTimeError +const_types_test/40: CompileTimeError +default_factory_test/01: CompileTimeError +deferred_closurize_load_library_test: Skip # Timeout, deferred loading is not supported by Flutter +deferred_constant_list_test: Skip # Timeout, deferred loading is not supported by Flutter +deferred_constraints_constants_test/none: CompileTimeError +deferred_constraints_constants_test/reference_after_load: CompileTimeError +deferred_constraints_type_annotation_test/as_operation: CompileTimeError +deferred_constraints_type_annotation_test/catch_check: CompileTimeError +deferred_constraints_type_annotation_test/is_check: CompileTimeError +deferred_constraints_type_annotation_test/new: CompileTimeError +deferred_constraints_type_annotation_test/new_before_load: CompileTimeError +deferred_constraints_type_annotation_test/new_generic1: CompileTimeError +deferred_constraints_type_annotation_test/new_generic2: CompileTimeError +deferred_constraints_type_annotation_test/new_generic3: CompileTimeError +deferred_constraints_type_annotation_test/none: Skip # Timeout, deferred loading is not supported by Flutter +deferred_constraints_type_annotation_test/static_method: Skip # Timeout, deferred loading is not supported by Flutter +deferred_constraints_type_annotation_test/type_annotation_generic2: CompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic3: CompileTimeError +deferred_constraints_type_annotation_test/type_annotation_null: CompileTimeError +deferred_constraints_type_annotation_test/type_annotation_top_level: CompileTimeError +deferred_global_test: Skip # Timeout, deferred loading is not supported by Flutter +deferred_inheritance_constraints_test/redirecting_constructor: CompileTimeError +deferred_mixin_test: CompileTimeError +deferred_no_such_method_test: CompileTimeError +deferred_not_loaded_check_test: CompileTimeError +deferred_redirecting_factory_test: Skip # Timeout, deferred loading is not supported by Flutter +deferred_shadow_load_library_test: Skip # Timeout, deferred loading is not supported by Flutter +deferred_shared_and_unshared_classes_test: Skip # Timeout, deferred loading is not supported by Flutter +deferred_static_seperate_test: CompileTimeError +deferred_super_dependency_test/01: CompileTimeError +deferred_type_dependency_test/as: Skip # Timeout, deferred loading is not supported by Flutter +deferred_type_dependency_test/is: Skip # Timeout, deferred loading is not supported by Flutter +deferred_type_dependency_test/none: Skip # Timeout, deferred loading is not supported by Flutter +deferred_type_dependency_test/type_annotation: Skip # Timeout, deferred loading is not supported by Flutter +enum_mirror_test: CompileTimeError +f_bounded_quantification5_test: CompileTimeError +f_bounded_quantification_test/01: CompileTimeError +f_bounded_quantification_test/02: CompileTimeError +factory2_test: CompileTimeError +factory4_test: CompileTimeError +factory6_test/00: CompileTimeError +field_increment_bailout_test: CompileTimeError +field_override_test/01: CompileTimeError +function_malformed_result_type_test: CompileTimeError +generic_function_typedef2_test/04: CompileTimeError +instance_creation_in_function_annotation_test: CompileTimeError +instanceof3_test: CompileTimeError +internal_library_test/01: MissingCompileTimeError +internal_library_test/01: CompileTimeError +internal_library_test/02: CompileTimeError +internal_library_test/02: MissingCompileTimeError +invocation_mirror2_test: CompileTimeError +invocation_mirror_invoke_on2_test: CompileTimeError +invocation_mirror_invoke_on_test: CompileTimeError +is_malformed_type_test/94: CompileTimeError +is_malformed_type_test/95: CompileTimeError +is_malformed_type_test/96: CompileTimeError +is_malformed_type_test/97: CompileTimeError +is_malformed_type_test/98: CompileTimeError +is_malformed_type_test/99: CompileTimeError +is_not_class2_test: RuntimeError +isnot_malformed_type_test: RuntimeError +issue21079_test: CompileTimeError +issue_25671a_test/01: CompileTimeError +issue_25671b_test/01: CompileTimeError +library_env_test/has_mirror_support: RuntimeError, OK # No mirrors support in Flutter. +library_env_test/has_no_mirror_support: Pass # No mirrors support in Flutter. +list_literal_syntax_test/01: CompileTimeError +list_literal_syntax_test/02: CompileTimeError +list_literal_syntax_test/03: CompileTimeError +malbounded_instantiation_test/01: CompileTimeError +malbounded_redirecting_factory2_test/01: CompileTimeError +malbounded_redirecting_factory2_test/none: CompileTimeError +malbounded_redirecting_factory_test/01: CompileTimeError +malbounded_redirecting_factory_test/none: CompileTimeError +malbounded_type_cast_test: CompileTimeError +malbounded_type_literal_test: CompileTimeError +malbounded_type_test_test/02: CompileTimeError +malformed2_test/00: CompileTimeError +malformed_inheritance_test/02: CompileTimeError +malformed_inheritance_test/04: CompileTimeError +malformed_inheritance_test/06: CompileTimeError +malformed_test/none: CompileTimeError +malformed_type_test: CompileTimeError +many_overridden_no_such_method_test: CompileTimeError +method_override2_test/01: CompileTimeError +method_override3_test/00: CompileTimeError +method_override3_test/01: CompileTimeError +method_override3_test/02: CompileTimeError +method_override4_test: CompileTimeError +method_override5_test: CompileTimeError +method_override6_test: CompileTimeError +mixin_invalid_bound2_test/01: CompileTimeError +mixin_invalid_bound2_test/04: CompileTimeError +mixin_invalid_bound2_test/07: CompileTimeError +mixin_invalid_bound2_test/none: CompileTimeError +mixin_invalid_bound_test/01: CompileTimeError +mixin_invalid_bound_test/03: CompileTimeError +mixin_invalid_bound_test/05: CompileTimeError +mixin_invalid_bound_test/none: CompileTimeError +mixin_super_bound2_test/01: CompileTimeError +mixin_super_bound_test: CompileTimeError +mixin_type_parameters_errors_test/01: CompileTimeError +mixin_type_parameters_errors_test/02: CompileTimeError +mixin_type_parameters_errors_test/03: CompileTimeError +mixin_type_parameters_errors_test/04: CompileTimeError +mixin_type_parameters_errors_test/05: CompileTimeError +new_expression_type_args_test/02: CompileTimeError +no_such_method_test: CompileTimeError +non_parameterized_factory2_test: CompileTimeError +non_parameterized_factory_test: CompileTimeError +null_test/none: CompileTimeError +on_catch_malformed_type_test: CompileTimeError +overridden_no_such_method_test: CompileTimeError +override_inheritance_field_test/05: CompileTimeError +override_inheritance_field_test/06: CompileTimeError +override_inheritance_field_test/07: CompileTimeError +override_inheritance_field_test/08: CompileTimeError +override_inheritance_field_test/09: CompileTimeError +override_inheritance_field_test/10: CompileTimeError +override_inheritance_field_test/11: CompileTimeError +override_inheritance_field_test/28: CompileTimeError +override_inheritance_field_test/29: CompileTimeError +override_inheritance_field_test/30: CompileTimeError +override_inheritance_field_test/31: CompileTimeError +override_inheritance_field_test/32: CompileTimeError +override_inheritance_field_test/33: CompileTimeError +override_inheritance_field_test/33a: CompileTimeError +override_inheritance_field_test/34: CompileTimeError +override_inheritance_field_test/44: CompileTimeError +override_inheritance_field_test/45: CompileTimeError +override_inheritance_field_test/47: CompileTimeError +override_inheritance_field_test/48: CompileTimeError +override_inheritance_field_test/53: CompileTimeError +override_inheritance_field_test/54: CompileTimeError +override_inheritance_method_test/04: CompileTimeError +override_inheritance_method_test/05: CompileTimeError +override_inheritance_method_test/06: CompileTimeError +override_inheritance_method_test/11: CompileTimeError +override_inheritance_method_test/12: CompileTimeError +override_inheritance_method_test/13: CompileTimeError +override_inheritance_method_test/14: CompileTimeError +override_inheritance_method_test/19: CompileTimeError +override_inheritance_method_test/20: CompileTimeError +override_inheritance_method_test/21: CompileTimeError +override_inheritance_method_test/27: CompileTimeError +override_inheritance_method_test/28: CompileTimeError +override_inheritance_method_test/29: CompileTimeError +override_inheritance_method_test/30: CompileTimeError +override_inheritance_method_test/31: CompileTimeError +override_inheritance_method_test/32: CompileTimeError +override_inheritance_method_test/33: CompileTimeError +prefix16_test: CompileTimeError +prefix22_test: CompileTimeError +private_access_test/03: CompileTimeError +private_access_test/04: CompileTimeError +redirecting_factory_incompatible_signature_test: CompileTimeError +redirecting_factory_reflection_test: CompileTimeError +regress_12561_test: CompileTimeError +regress_13462_0_test: CompileTimeError +regress_13462_1_test: CompileTimeError +regress_18535_test: CompileTimeError +regress_22438_test: CompileTimeError +regress_23408_test: CompileTimeError +regress_28255_test: CompileTimeError +static_initializer_type_error_test: CompileTimeError +super_call4_test: CompileTimeError +super_getter_setter_test: CompileTimeError +try_catch_on_syntax_test/07: CompileTimeError +try_catch_syntax_test/08: CompileTimeError +type_parameter_test/none: CompileTimeError +type_variable_bounds_test/00: CompileTimeError +type_variable_bounds_test/06: CompileTimeError +type_variable_bounds_test/07: CompileTimeError +type_variable_bounds_test/08: CompileTimeError +type_variable_bounds_test/09: CompileTimeError +type_variable_bounds_test/10: CompileTimeError +type_variable_scope2_test: CompileTimeError +type_variable_scope_test/00: CompileTimeError +type_variable_scope_test/01: CompileTimeError +type_variable_scope_test/02: CompileTimeError +type_variable_scope_test/03: CompileTimeError +type_variable_scope_test/04: CompileTimeError +type_variable_scope_test/05: CompileTimeError +type_variable_scope_test/none: CompileTimeError +unicode_bom_test: CompileTimeError +vm/debug_break_enabled_vm_test/01: CompileTimeError +vm/debug_break_enabled_vm_test/none: CompileTimeError +vm/no_such_method_error_message_callable_vm_test: RuntimeError # Flutter Issue 9110 +vm/reflect_core_vm_test: CompileTimeError +vm/regress_27201_test: Fail # Flutter Issue 9110 +wrong_number_type_arguments_test/00: CompileTimeError +wrong_number_type_arguments_test/01: CompileTimeError +wrong_number_type_arguments_test/02: CompileTimeError -[ $mode == product || $compiler == app_jit || $compiler == precompiler ] +[ $strong ] +*: SkipByDesign # tests/language_2 has the strong mode versions of these tests. + +[ $arch == arm64 && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +closure_cycles_test: Pass, Slow +large_class_declaration_test: SkipSlow # Uses too much memory. + +[ $arch == ia32 && $compiler == none && $runtime == vm && $system == windows ] +vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 + +[ $arch == ia32 && $mode == release && $runtime == vm ] +deep_nesting1_negative_test: Crash, Pass # Issue 31496 + +[ $arch == ia32 && ($compiler == app_jit || $compiler == none || $compiler == precompiler) && ($runtime == dart_precompiled || $runtime == vm) ] +vm/regress_24517_test: Pass, Fail # Issue 24517. + +[ $compiler == app_jit && $runtime == vm && !$checked ] +assertion_initializer_const_error_test/01: MissingCompileTimeError +assertion_initializer_const_function_error_test/01: MissingCompileTimeError + +[ $compiler != dartk && $compiler != dartkp && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +abstract_beats_arguments2_test/01: Crash # Issue 29171 + +[ $compiler == none && $runtime == vm && $system == fuchsia ] +async_await_test: RuntimeError # Use package:unittest +async_star_test: RuntimeError # Use package:unittest +closure_cycles_test: Pass, Crash # TODO(zra): Investigate +vm/causal_async_exception_stack2_test: RuntimeError # Use package:unittest +vm/causal_async_exception_stack_test: RuntimeError # Use package:unittest +vm/math_vm_test: Crash # TODO(zra): Investigate + +[ $compiler == none && $runtime == vm && !$checked ] +assertion_initializer_const_error_test/01: MissingCompileTimeError +assertion_initializer_const_function_error_test/01: MissingCompileTimeError + +[ $compiler == none && $checked && ($runtime == flutter || $runtime == vm) ] +assert_initializer_test/4*: MissingCompileTimeError # Issue 392. The VM doesn't enforce that potentially const expressions are actually const expressions when the constructor is called with `const`. + +[ $compiler == none && ($runtime == flutter || $runtime == vm) ] +duplicate_part_test/01: MissingCompileTimeError # Issue 27516 + +[ $compiler == precompiler && $mode == debug && $runtime == dart_precompiled ] +regress_29025_test: Crash # Issue dartbug.com/29331 + +[ $compiler == precompiler && $runtime == dart_precompiled ] +export_ambiguous_main_negative_test: Skip # Issue 29895 +export_double_same_main_test: Skip # Issue 29895 +stacktrace_demangle_ctors_test: RuntimeError +vm/optimized_stacktrace_test: Skip # Issue 30198 +vm/regress_27671_test: Skip # Unsupported + +[ $compiler == precompiler && $runtime == dart_precompiled && $checked ] +assertion_initializer_const_error2_test/cc02: Crash + +[ $compiler == precompiler && $runtime == dart_precompiled && !$checked ] +assertion_initializer_const_error_test/01: MissingCompileTimeError +assertion_initializer_const_function_error_test/01: MissingCompileTimeError + +[ $runtime == dart_precompiled && $minified ] +cyclic_type_test/*: Skip # Tests below rely on Type.toString() +enum_duplicate_test/*: Skip # Uses Enum.toString() +enum_private_test/*: Skip # Uses Enum.toString() +enum_test: Skip # Uses Enum.toString() +f_bounded_quantification4_test: Skip # Tests below rely on Type.toString() +f_bounded_quantification5_test: Skip # Tests below rely on Type.toString() +full_stacktrace1_test: Skip # Tests below rely on Stacktrace.toString() +full_stacktrace2_test: Skip # Tests below rely on Stacktrace.toString() +full_stacktrace3_test: Skip # Tests below rely on Stacktrace.toString() +mixin_generic_test: Skip # Tests below rely on Type.toString() +mixin_mixin2_test: Skip # Tests below rely on Type.toString() +mixin_mixin3_test: Skip # Tests below rely on Type.toString() +mixin_mixin5_test: Skip # Tests below rely on Type.toString() +mixin_mixin6_test: Skip # Tests below rely on Type.toString() +mixin_mixin_bound2_test: Skip # Tests below rely on Type.toString() +mixin_mixin_type_arguments_test: Skip # Tests below rely on Type.toString() +mixin_super_2_test: Skip # Tests below rely on Type.toString() +no_such_method_dispatcher_test: Skip # Uses new Symbol() +stacktrace_rethrow_error_test: Skip # Tests below rely on Stacktrace.toString() +stacktrace_rethrow_nonerror_test: Skip # Tests below rely on Stacktrace.toString() +vm/no_such_args_error_message_vm_test: Skip # Tests below rely on Stacktrace.toString() +vm/no_such_method_error_message_callable_vm_test: Skip # Tests below rely on Stacktrace.toString() +vm/no_such_method_error_message_vm_test: Skip # Tests below rely on Stacktrace.toString() +vm/regress_28325_test: Skip # Tests below rely on Stacktrace.toString() + +[ $browser && ($compiler == app_jit || $compiler == none || $compiler == precompiler) ] +library_env_test/has_io_support: RuntimeError, OK # The test is supposed to fail. +library_env_test/has_no_html_support: RuntimeError, OK # The test is supposed to fail. + +[ !$browser && ($compiler == app_jit || $compiler == none || $compiler == precompiler) ] +library_env_test/has_html_support: RuntimeError, OK # The test is supposed to fail. +library_env_test/has_no_io_support: RuntimeError, OK # The test is supposed to fail. + +[ $checked && ($compiler == app_jit || $compiler == none || $compiler == precompiler) ] +generic_functions_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. +generic_local_functions_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. +generic_methods_function_type_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. +generic_methods_generic_function_parameter_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. +generic_methods_new_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. +generic_methods_test: Pass # Issue 25869, These generic functions tests pass for the wrong reason in checked mode, because the parsed type parameters are mapped to dynamic type. +type_variable_bounds4_test/01: Fail # Issue 14006 + +[ ($compiler == app_jit || $compiler == dartk || $compiler == dartkp || $compiler == none || $compiler == precompiler) && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +dynamic_prefix_core_test/none: Fail # Issue 12478 + +[ ($compiler == app_jit || $compiler == none || $compiler == precompiler) && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +await_for_test: RuntimeError # issue 28974 +class_keyword_test/02: MissingCompileTimeError # Issue 13627 +export_ambiguous_main_negative_test: Fail # Issue 14763 +syntax_test/none: CompileTimeError # Issue #30176. +unicode_bom_test: Fail # Issue 16067 +vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. + +# These test entries will be valid for vm (with and without kernel). +[ $compiler == app_jit || $compiler == dartk || $compiler == none || $runtime == dart_precompiled ] +async_star_cancel_while_paused_test: RuntimeError +async_star_pause_test: Fail, OK # This is OK for now, but we may want to change the semantics to match the test. +constructor2_test: Fail, OK # Failures related to super call in ctor initializer list +constructor3_test: Fail, OK # Failures related to super call in ctor initializer list +constructor5_test: Fail # Issue 6422, These bugs refer currently ongoing language discussions. +constructor6_test: Fail # Issue 6422, These bugs refer currently ongoing language discussions. +cyclic_type2_test: Fail, OK # Non-contractive types are not supported in the vm. +cyclic_type_test/02: Fail, OK # Non-contractive types are not supported in the vm. +cyclic_type_test/04: Fail, OK # Non-contractive types are not supported in the vm. +duplicate_export_negative_test: Fail # Issue 6134 +example_constructor_test: Fail, OK # Failures related to super call in ctor initializer list +field_initialization_order_test: Fail, OK # Failures related to super call in ctor initializer list +final_field_initialization_order_test: Fail, OK # Failures related to super call in ctor initializer list +generalized_void_syntax_test: CompileTimeError +generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 +least_upper_bound_expansive_test/*: Fail, OK # Non-contractive types are not supported in the vm. +main_not_a_function_test/01: Skip # Skipped temporaril until Issue 29895 is fixed. +mixin_illegal_super_use_test: Skip # Issues 24478 and 23773, # These tests are skipped in the VM because it has "--supermixin" functionality enabled unconditionally. The tests should be removed once the same is true for analyzer (#24478) and dart2js (#23773) +mixin_illegal_superclass_test: Skip # Issues 24478 and 23773, # These tests are skipped in the VM because it has "--supermixin" functionality enabled unconditionally. The tests should be removed once the same is true for analyzer (#24478) and dart2js (#23773) +no_main_test/01: Skip # Skipped temporaril until Issue 29895 is fixed. +super_test: Fail, OK # Failures related to super call in ctor initializer list +vm/regress_29145_test: Skip # Issue 29145 + +[ $compiler == app_jit || $compiler == none ] +library_env_test/has_no_mirror_support: RuntimeError, OK # The test is supposed to fail. + +[ $compiler == app_jit || $compiler == none || $compiler == precompiler ] +async_star_regression_2238_test: CompileTimeError +deferred_redirecting_factory_test: Fail, Crash # Issue 23408 +dynamic_prefix_core_test/01: RuntimeError # Issue 12478 +multiline_strings_test: Fail # Issue 23020 +redirecting_constructor_initializer_test: RuntimeError # Issue 23488 + +[ $compiler == app_jit || $compiler == precompiler || $mode == product ] deferred_load_constants_test/02: Fail # Deferred loading happens eagerly. Issue #27587 deferred_load_constants_test/03: Fail # Deferred loading happens eagerly. Issue #27587 deferred_load_constants_test/05: Fail # Deferred loading happens eagerly. Issue #27587 deferred_not_loaded_check_test: Fail # Deferred loading happens eagerly. Issue #27587 vm/regress_27201_test: Fail -[ $compiler == app_jit ] -deferred_inheritance_constraints_test/redirecting_constructor: Crash - -[ $compiler == precompiler ] -deferred_global_test: Fail # Deferred loading happens eagerly. Issue #27587 -vm/regress_27201_test: Fail # Deferred loading happens eagerly. Issue #27587 -regress_23408_test: RuntimeError - -[ $compiler == precompiler ] -implicit_closure_test: Skip # Incompatible flag: --use_slow_path -deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot - -[ $runtime == dart_precompiled || $compiler == app_jit ] +[ $compiler == app_jit || $runtime == dart_precompiled ] ct_const2_test: Skip # Incompatible flag: --compile_all hello_dart_test: Skip # Incompatible flag: --compile_all -vm/type_vm_test: RuntimeError # Expects line and column numbers vm/type_cast_vm_test: RuntimeError # Expects line and column numbers +vm/type_vm_test: RuntimeError # Expects line and column numbers -[ $mode == product ] -assertion_test: SkipByDesign # Requires checked mode. -issue13474_test: SkipByDesign # Requires checked mode. -named_parameters_type_test/01: SkipByDesign # Requires checked mode. -named_parameters_type_test/02: SkipByDesign # Requires checked mode. -named_parameters_type_test/03: SkipByDesign # Requires checked mode. -type_checks_in_factory_method_test: SkipByDesign # Requires checked mode. -positional_parameters_type_test/01: SkipByDesign # Requires checked mode. -positional_parameters_type_test/02: SkipByDesign # Requires checked mode. -list_literal4_test: SkipByDesign # Requires checked mode. -generic_test: SkipByDesign # Requires checked mode. -map_literal4_test: SkipByDesign # Requires checked mode. +[ $mode == product || $runtime == dart_precompiled ] +vm/causal_async_exception_stack2_test: SkipByDesign # Causal async stacks are not supported in product mode +vm/causal_async_exception_stack_test: SkipByDesign # Causal async stacks are not supported in product mode -vm/type_vm_test: Fail,OK # Expects exact type name. - -stacktrace_demangle_ctors_test: SkipByDesign # Names are not scrubbed. - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $browser ] -library_env_test/has_io_support: RuntimeError, OK # The test is supposed to fail. -library_env_test/has_no_html_support: RuntimeError, OK # The test is supposed to fail. - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ! $browser ] -library_env_test/has_html_support: RuntimeError, OK # The test is supposed to fail. -library_env_test/has_no_io_support: RuntimeError, OK # The test is supposed to fail. - -[ $compiler == none || $compiler == app_jit ] -library_env_test/has_no_mirror_support: RuntimeError, OK # The test is supposed to fail. - -[ $runtime == dart_precompiled ] -library_env_test/has_mirror_support: RuntimeError, OK # The test is supposed to fail. +[ $runtime == dart_precompiled || $runtime == vm ] +vm/load_to_load_unaligned_forwarding_vm_test: Pass, Crash # Unaligned offset. Issue 22151 +vm/unaligned_float_access_literal_index_test: Pass, Crash # Unaligned offset. Issue 22151 [ $hot_reload || $hot_reload_rollback ] -issue21159_test: Pass, Crash # Issue 29094 -issue_22780_test/01: Pass, Crash # Issue 29094 -static_closure_identical_test: Pass, Fail # Closure identity cha_deopt1_test: Crash # Requires deferred libraries cha_deopt2_test: Crash # Requires deferred libraries cha_deopt3_test: Crash # Requires deferred libraries +conditional_import_string_test: Crash # Requires deferred libraries +conditional_import_test: Crash # Requires deferred libraries deferred_call_empty_before_load_test: Crash # Requires deferred libraries deferred_closurize_load_library_test: Crash # Requires deferred libraries deferred_constant_list_test: Crash # Requires deferred libraries @@ -211,8 +476,8 @@ deferred_constraints_type_annotation_test: Crash # Requires deferred libraries deferred_function_type_test: Crash # Requires deferred libraries deferred_global_test: Crash # Requires deferred libraries deferred_import_core_test: Crash # Requires deferred libraries -deferred_inlined_test: Crash # Requires deferred libraries deferred_inheritance_constraints_test: Crash # Requires deferred libraries +deferred_inlined_test: Crash # Requires deferred libraries deferred_load_constants_test: Crash # Requires deferred libraries deferred_load_inval_code_test: Crash # Requires deferred libraries deferred_load_library_wrong_args_test: Crash # Requires deferred libraries @@ -229,310 +494,16 @@ deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries deferred_static_seperate_test: Crash # Requires deferred libraries deferred_super_dependency_test: Pass, Crash # Requires deferred libraries deferred_type_dependency_test: Crash # Requires deferred libraries +issue21159_test: Pass, Crash # Issue 29094 issue_1751477_test: Crash # Requires deferred libraries -regress_23408_test: Crash # Requires deferred libraries +issue_22780_test/01: Pass, Crash # Issue 29094 regress_22443_test: Crash # Requires deferred libraries +regress_23408_test: Crash # Requires deferred libraries regress_28278_test: Crash # Requires deferred libraries -conditional_import_test: Crash # Requires deferred libraries -conditional_import_string_test: Crash # Requires deferred libraries -vm/regress_27201_test: Pass, Crash # Requires deferred libraries +static_closure_identical_test: Pass, Fail # Closure identity vm/optimized_stacktrace_test: Pass, Slow +vm/regress_27201_test: Pass, Crash # Requires deferred libraries -[ ($runtime != vm && $compiler != dartk && $compiler != dartkp ) || ($compiler != none && $compiler != dartk && $compiler != dartkp )] -assert_initializer_test/*: SKIP # not implemented yet, experiment is VM only. +[ $compiler != dartk && $compiler != dartkp && $compiler != none || $compiler != dartk && $compiler != dartkp && $runtime != vm ] +assert_initializer_test/*: Skip # not implemented yet, experiment is VM only. -[($runtime == vm || $runtime == flutter) && $compiler == none && $checked] -assert_initializer_test/4*: MissingCompileTimeError # Issue 392. The VM doesn't enforce that potentially const expressions are actually const expressions when the constructor is called with `const`. - -[($runtime == vm || $runtime == flutter) && $compiler == none] -duplicate_part_test/01: MissingCompileTimeError # Issue 27516 - -[$runtime == vm && $compiler == none && $system == windows && $arch == ia32] -vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 - -[$runtime == vm && $compiler == none && $system == fuchsia] -async_await_test: RuntimeError # Use package:unittest -async_star_test: RuntimeError # Use package:unittest -vm/causal_async_exception_stack_test: RuntimeError # Use package:unittest -vm/causal_async_exception_stack2_test: RuntimeError # Use package:unittest -closure_cycles_test: Pass, Crash # TODO(zra): Investigate -vm/math_vm_test: Crash # TODO(zra): Investigate - -[$compiler == dart2analyzer] -vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. -config_import_corelib_test: StaticWarning, OK - -[ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && ($compiler == none || $compiler == app_jit || $compiler == precompiler) ] -await_for_test: RuntimeError # issue 28974 -syntax_test/none: CompileTimeError # Issue #30176. - -# flutter uses --error_on_bad_type, --error_on_bad_override -# and --await_is_keyword so # the following tests fail with -# a Compilation Error -[ $runtime == flutter ] -await_backwards_compatibility_test/none: CompileTimeError -await_test: CompileTimeError -async_await_test: CompileTimeError -async_await_syntax_test/a05c: CompileTimeError -async_await_syntax_test/a05e: CompileTimeError -async_await_syntax_test/d08c: CompileTimeError -static_initializer_type_error_test: CompileTimeError -new_expression_type_args_test/02: CompileTimeError -super_getter_setter_test: CompileTimeError -malformed_test/none: CompileTimeError -malbounded_type_test_test/02: CompileTimeError -factory6_test/00: CompileTimeError -method_override2_test/01: CompileTimeError -regress_22438_test: CompileTimeError -regress_13462_1_test: CompileTimeError -instance_creation_in_function_annotation_test: CompileTimeError -type_variable_scope_test/none: CompileTimeError -type_variable_scope_test/00: CompileTimeError -type_variable_scope_test/01: CompileTimeError -type_variable_scope_test/03: CompileTimeError -type_variable_scope_test/02: CompileTimeError -type_variable_scope_test/04: CompileTimeError -type_variable_scope_test/05: CompileTimeError -invocation_mirror_invoke_on_test: CompileTimeError -method_override3_test/00: CompileTimeError -method_override3_test/01: CompileTimeError -method_override3_test/02: CompileTimeError -type_variable_bounds_test/00: CompileTimeError -type_variable_bounds_test/06: CompileTimeError -type_variable_bounds_test/07: CompileTimeError -type_variable_bounds_test/09: CompileTimeError -type_variable_bounds_test/10: CompileTimeError -type_variable_bounds_test/08: CompileTimeError -factory4_test: CompileTimeError -factory2_test: CompileTimeError -regress_18535_test: CompileTimeError -prefix22_test: CompileTimeError -regress_28255_test: CompileTimeError -enum_mirror_test: CompileTimeError -field_override_test/01: CompileTimeError -override_inheritance_field_test/05: CompileTimeError -override_inheritance_field_test/07: CompileTimeError -override_inheritance_field_test/06: CompileTimeError -override_inheritance_field_test/08: CompileTimeError -override_inheritance_field_test/28: CompileTimeError -override_inheritance_field_test/29: CompileTimeError -override_inheritance_field_test/30: CompileTimeError -override_inheritance_field_test/31: CompileTimeError -override_inheritance_field_test/44: CompileTimeError -override_inheritance_field_test/45: CompileTimeError -override_inheritance_field_test/48: CompileTimeError -override_inheritance_field_test/47: CompileTimeError -override_inheritance_field_test/53: CompileTimeError -override_inheritance_field_test/10: CompileTimeError -override_inheritance_field_test/54: CompileTimeError -override_inheritance_field_test/09: CompileTimeError -override_inheritance_field_test/33a: CompileTimeError -override_inheritance_field_test/34: CompileTimeError -override_inheritance_field_test/32: CompileTimeError -override_inheritance_field_test/11: CompileTimeError -override_inheritance_field_test/33: CompileTimeError -issue_25671b_test/01: CompileTimeError -mixin_super_bound2_test/01: CompileTimeError -override_inheritance_method_test/04: CompileTimeError -override_inheritance_method_test/06: CompileTimeError -override_inheritance_method_test/11: CompileTimeError -override_inheritance_method_test/12: CompileTimeError -override_inheritance_method_test/13: CompileTimeError -override_inheritance_method_test/14: CompileTimeError -override_inheritance_method_test/19: CompileTimeError -override_inheritance_method_test/20: CompileTimeError -override_inheritance_method_test/21: CompileTimeError -override_inheritance_method_test/27: CompileTimeError -override_inheritance_method_test/28: CompileTimeError -override_inheritance_method_test/29: CompileTimeError -override_inheritance_method_test/05: CompileTimeError -override_inheritance_method_test/31: CompileTimeError -override_inheritance_method_test/33: CompileTimeError -override_inheritance_method_test/32: CompileTimeError -override_inheritance_method_test/30: CompileTimeError -redirecting_factory_reflection_test: CompileTimeError -method_override6_test: CompileTimeError -try_catch_syntax_test/08: CompileTimeError -async_return_types_test/tooManyTypeParameters: CompileTimeError -method_override4_test: CompileTimeError -super_call4_test: CompileTimeError -wrong_number_type_arguments_test/00: CompileTimeError -wrong_number_type_arguments_test/02: CompileTimeError -wrong_number_type_arguments_test/01: CompileTimeError -is_malformed_type_test/97: CompileTimeError -class_keyword_test/02: CompileTimeError -is_malformed_type_test/98: CompileTimeError -is_malformed_type_test/99: CompileTimeError -is_malformed_type_test/95: CompileTimeError -is_malformed_type_test/96: CompileTimeError -is_malformed_type_test/94: CompileTimeError -field_increment_bailout_test: CompileTimeError -on_catch_malformed_type_test: CompileTimeError -f_bounded_quantification_test/01: CompileTimeError -f_bounded_quantification_test/02: CompileTimeError -mixin_type_parameters_errors_test/02: CompileTimeError -mixin_type_parameters_errors_test/05: CompileTimeError -mixin_type_parameters_errors_test/01: CompileTimeError -mixin_type_parameters_errors_test/03: CompileTimeError -mixin_type_parameters_errors_test/04: CompileTimeError -issue21079_test: CompileTimeError -f_bounded_quantification5_test: CompileTimeError -malformed_type_test: CompileTimeError -issue_25671a_test/01: CompileTimeError -regress_13462_0_test: CompileTimeError -overridden_no_such_method_test: CompileTimeError -deferred_constraints_type_annotation_test/new_before_load: CompileTimeError -deferred_constraints_type_annotation_test/type_annotation_null: CompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic2: CompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic3: CompileTimeError -deferred_constraints_type_annotation_test/new: CompileTimeError -deferred_constraints_type_annotation_test/new_generic1: CompileTimeError -deferred_constraints_type_annotation_test/new_generic2: CompileTimeError -deferred_constraints_type_annotation_test/new_generic3: CompileTimeError -deferred_constraints_type_annotation_test/is_check: CompileTimeError -deferred_constraints_type_annotation_test/as_operation: CompileTimeError -deferred_constraints_type_annotation_test/catch_check: CompileTimeError -deferred_constraints_type_annotation_test/type_annotation_top_level: CompileTimeError -deferred_constraints_constants_test/none: CompileTimeError -deferred_constraints_constants_test/reference_after_load: CompileTimeError -no_such_method_test: CompileTimeError -conditional_import_string_test: CompileTimeError -try_catch_on_syntax_test/07: CompileTimeError -non_parameterized_factory_test: CompileTimeError -instanceof3_test: CompileTimeError -malbounded_redirecting_factory_test/none: CompileTimeError -malbounded_redirecting_factory_test/01: CompileTimeError -null_test/none: CompileTimeError -check_method_override_test/01: CompileTimeError -check_method_override_test/02: CompileTimeError -malformed_inheritance_test/02: CompileTimeError -malformed_inheritance_test/04: CompileTimeError -malformed_inheritance_test/06: CompileTimeError -call_constructor_on_unresolvable_class_test/01: CompileTimeError -call_constructor_on_unresolvable_class_test/03: CompileTimeError -call_constructor_on_unresolvable_class_test/02: CompileTimeError -call_constructor_on_unresolvable_class_test/07: CompileTimeError -unicode_bom_test: CompileTimeError -prefix16_test: CompileTimeError -deferred_not_loaded_check_test: CompileTimeError -regress_23408_test: CompileTimeError -redirecting_factory_incompatible_signature_test: CompileTimeError -malbounded_instantiation_test/01: CompileTimeError -const_evaluation_test/none: CompileTimeError -mixin_invalid_bound_test/01: CompileTimeError -const_evaluation_test/01: CompileTimeError -mixin_invalid_bound_test/none: CompileTimeError -mixin_invalid_bound_test/05: CompileTimeError -mixin_invalid_bound_test/03: CompileTimeError -malformed2_test/00: CompileTimeError -conditional_import_test: CompileTimeError -non_parameterized_factory2_test: CompileTimeError -private_access_test/03: CompileTimeError -private_access_test/04: CompileTimeError -function_malformed_result_type_test: CompileTimeError -mixin_invalid_bound2_test/none: CompileTimeError -mixin_invalid_bound2_test/01: CompileTimeError -mixin_invalid_bound2_test/04: CompileTimeError -mixin_invalid_bound2_test/07: CompileTimeError -deferred_super_dependency_test/01: CompileTimeError -method_override5_test: CompileTimeError -deferred_static_seperate_test: CompileTimeError -default_factory_test/01: CompileTimeError -internal_library_test/01: CompileTimeError -internal_library_test/02: CompileTimeError -type_variable_scope2_test: CompileTimeError -mixin_super_bound_test: CompileTimeError -bad_override_test/06: CompileTimeError -invocation_mirror2_test: CompileTimeError -deferred_inheritance_constraints_test/redirecting_constructor: CompileTimeError -deferred_no_such_method_test: CompileTimeError -malbounded_type_literal_test: CompileTimeError -deferred_mixin_test: CompileTimeError -many_overridden_no_such_method_test: CompileTimeError -malbounded_redirecting_factory2_test/none: CompileTimeError -malbounded_redirecting_factory2_test/01: CompileTimeError -malbounded_type_cast_test: CompileTimeError -type_parameter_test/none: CompileTimeError -list_literal_syntax_test/03: CompileTimeError -list_literal_syntax_test/01: CompileTimeError -list_literal_syntax_test/02: CompileTimeError -vm/reflect_core_vm_test: CompileTimeError -vm/debug_break_enabled_vm_test/01: CompileTimeError -vm/debug_break_enabled_vm_test/none: CompileTimeError -generic_function_typedef2_test/04: CompileTimeError -class_override_test/00: CompileTimeError -const_types_test/01: CompileTimeError -const_types_test/02: CompileTimeError -const_types_test/03: CompileTimeError -const_types_test/04: CompileTimeError -const_types_test/05: CompileTimeError -const_types_test/06: CompileTimeError -const_types_test/13: CompileTimeError -const_types_test/35: CompileTimeError -const_types_test/40: CompileTimeError -regress_12561_test: CompileTimeError -invocation_mirror_invoke_on2_test: CompileTimeError - -isnot_malformed_type_test: RuntimeError -is_not_class2_test: RuntimeError - -library_env_test/has_no_mirror_support: Pass # No mirrors support in Flutter. -library_env_test/has_mirror_support: RuntimeError, Ok # No mirrors support in Flutter. - -internal_library_test/01: MissingCompileTimeError -internal_library_test/02: MissingCompileTimeError - -deferred_type_dependency_test/is: Skip # Timeout, deferred loading is not supported by Flutter -deferred_type_dependency_test/none: Skip # Timeout, deferred loading is not supported by Flutter -deferred_type_dependency_test/as: Skip # Timeout, deferred loading is not supported by Flutter -deferred_type_dependency_test/type_annotation: Skip # Timeout, deferred loading is not supported by Flutter -deferred_closurize_load_library_test: Skip # Timeout, deferred loading is not supported by Flutter -deferred_constraints_type_annotation_test/none: Skip # Timeout, deferred loading is not supported by Flutter -deferred_constraints_type_annotation_test/static_method: Skip # Timeout, deferred loading is not supported by Flutter -deferred_shared_and_unshared_classes_test: Skip # Timeout, deferred loading is not supported by Flutter -deferred_constant_list_test: Skip # Timeout, deferred loading is not supported by Flutter -deferred_redirecting_factory_test: Skip # Timeout, deferred loading is not supported by Flutter -deferred_shadow_load_library_test: Skip # Timeout, deferred loading is not supported by Flutter -deferred_global_test: Skip # Timeout, deferred loading is not supported by Flutter - -config_import_test: RuntimeError # Flutter Issue 9110 -vm/no_such_method_error_message_callable_vm_test: RuntimeError # Flutter Issue 9110 -vm/regress_27201_test: Fail # Flutter Issue 9110 -async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 -async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 -async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 -async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 -asyncstar_yield_test: Skip # Flutter Issue 9110 -async_star_no_cancel_test: Skip # Flutter Issue 9110 -async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 -await_for_test: Skip # Flutter Issue 9110 -await_for_cancel_test: Skip # Flutter Issue 9110 - -[ $runtime == dart_precompiled && $minified ] -enum_duplicate_test/*: Skip # Uses Enum.toString() -enum_private_test/*: Skip # Uses Enum.toString() -enum_test: Skip # Uses Enum.toString() -no_such_method_dispatcher_test: Skip # Uses new Symbol() -cyclic_type_test/*: Skip # Tests below rely on Type.toString() -f_bounded_quantification4_test: Skip # Tests below rely on Type.toString() -f_bounded_quantification5_test: Skip # Tests below rely on Type.toString() -mixin_generic_test: Skip # Tests below rely on Type.toString() -mixin_mixin2_test: Skip # Tests below rely on Type.toString() -mixin_mixin3_test: Skip # Tests below rely on Type.toString() -mixin_mixin5_test: Skip # Tests below rely on Type.toString() -mixin_mixin6_test: Skip # Tests below rely on Type.toString() -mixin_mixin_bound2_test: Skip # Tests below rely on Type.toString() -mixin_mixin_type_arguments_test: Skip # Tests below rely on Type.toString() -mixin_super_2_test: Skip # Tests below rely on Type.toString() -full_stacktrace1_test: Skip # Tests below rely on Stacktrace.toString() -full_stacktrace2_test: Skip # Tests below rely on Stacktrace.toString() -full_stacktrace3_test: Skip # Tests below rely on Stacktrace.toString() -stacktrace_rethrow_error_test: Skip # Tests below rely on Stacktrace.toString() -stacktrace_rethrow_nonerror_test: Skip # Tests below rely on Stacktrace.toString() -vm/no_such_args_error_message_vm_test: Skip # Tests below rely on Stacktrace.toString() -vm/no_such_method_error_message_callable_vm_test: Skip # Tests below rely on Stacktrace.toString() -vm/no_such_method_error_message_vm_test: Skip # Tests below rely on Stacktrace.toString() -vm/regress_28325_test:Skip # Tests below rely on Stacktrace.toString() - -[ $runtime == vm && $mode == release && $arch == ia32 ] -deep_nesting1_negative_test: Crash, Pass # Issue 31496 diff --git a/tests/language/language_analyzer2.status b/tests/language/language_analyzer2.status index eec8134ad81..21780f3f515 100644 --- a/tests/language/language_analyzer2.status +++ b/tests/language/language_analyzer2.status @@ -3,117 +3,67 @@ # BSD-style license that can be found in the LICENSE file. [ $compiler == dart2analyzer ] - -generic_methods_generic_function_parameter_test: CompileTimeError # Issue 28515 -generic_local_functions_test: CompileTimeError # Issue 28515 - -regress_26668_test: Fail # Issue 26678 -regress_27617_test/1: MissingCompileTimeError -regress_29025_test: StaticWarning # Issue 29081 -regress_29405_test: StaticWarning # Issue 29421 -regress_29349_test: CompileTimeError # Issue 29744 - -closure_call_wrong_argument_count_negative_test: skip # Runtime negative test. No static errors or warnings. - -deep_nesting1_negative_test: CompileTimeError # Issue 25558 -deep_nesting2_negative_test: CompileTimeError # Issue 25558 - -enum_syntax_test/05: Fail # Issue 21649 -enum_syntax_test/06: Fail # Issue 21649 - -regress_17382_test: Skip # don't care about the static warning. -regress_23408_test: Skip # don't care about the static warning. -regress_25246_test: Skip -getter_setter_in_lib_test: Fail # Issue 23286 - -final_attempt_reinitialization_test/01: MissingCompileTimeError # Issue 29657 -final_attempt_reinitialization_test/02: MissingCompileTimeError # Issue 29657 +abstract_beats_arguments_test: StaticWarning +accessor_conflict_export2_test: StaticWarning # Issue 25624 +accessor_conflict_export_test: StaticWarning # Issue 25624 +accessor_conflict_import2_test: StaticWarning # Issue 25624 +accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25624 +accessor_conflict_import_prefixed_test: StaticWarning # Issue 25624 +accessor_conflict_import_test: StaticWarning # Issue 25624 +application_negative_test: CompileTimeError # Issue 14528, The following tests are currently assumed to be failing because the test is wrong. +bad_initializer1_negative_test: CompileTimeError # Issue 14529, The following tests are currently assumed to be failing because the test is wrong. +bad_initializer2_negative_test: Fail # Issue 14880 +bad_named_constructor_negative_test: CompileTimeError # Issue 18693, The following tests are currently assumed to be failing because the test is wrong. +black_listed_test/none: Fail # Issue 14228 +body_less_constructor_wrong_arg_negative_test: CompileTimeError # Issue 18695, The following tests are currently assumed to be failing because the test is wrong. +cascade_test/none: Fail # Issue 11577 +closure_call_wrong_argument_count_negative_test: Skip # Runtime negative test. No static errors or warnings. +conflicting_type_variable_and_setter_test: CompileTimeError # Issue 25525 +const_counter_negative_test: CompileTimeError const_error_multiply_initialized_test/02: MissingCompileTimeError # Issue 29657 const_error_multiply_initialized_test/04: MissingCompileTimeError # Issue 29657 - -override_field_test/03: Fail # Issue 29703 -method_override7_test/03: Fail # Issue 11497 - +const_for_in_variable_test/01: MissingCompileTimeError # Issue 25161 +const_optional_args_negative_test: CompileTimeError +constructor3_negative_test: Fail # Issue 11585 +constructor_call_wrong_argument_count_negative_test: Fail # Issue 11585 +constructor_duplicate_final_test/03: MissingCompileTimeError +constructor_redirect1_negative_test: CompileTimeError +constructor_redirect2_negative_test: CompileTimeError +constructor_setter_negative_test: CompileTimeError +deep_nesting1_negative_test: CompileTimeError # Issue 25558 +deep_nesting2_negative_test: CompileTimeError # Issue 25558 +default_factory2_test/none: Fail # Issue 13956 +duplicate_export_negative_test: CompileTimeError +duplicate_interface_negative_test: CompileTimeError +empty_block_case_test: StaticWarning # Issue 18701, The following tests are currently assumed to be failing because the test is wrong. +enum_syntax_test/05: Fail # Issue 21649 +enum_syntax_test/06: Fail # Issue 21649 +error_stacktrace_test: StaticWarning # Issue 18702, The following tests are currently assumed to be failing because the test is wrong. +export_ambiguous_main_negative_test: CompileTimeError +extend_type_parameter2_negative_test: CompileTimeError +extend_type_parameter_negative_test: CompileTimeError external_test/21: Fail external_test/24: Fail external_test/25: Fail -constructor_duplicate_final_test/03: MissingCompileTimeError -reify_typevar_static_test/00: MissingCompileTimeError # Issue 21565 - -multiline_newline_test/01: CompileTimeError # Issue 23888 -multiline_newline_test/02: CompileTimeError # Issue 23888 -multiline_newline_test/03: CompileTimeError # Issue 23888 -multiline_newline_test/04: MissingCompileTimeError # Issue 23888 -multiline_newline_test/05: MissingCompileTimeError # Issue 23888 -multiline_newline_test/06: MissingCompileTimeError # Issue 23888 -multiline_newline_test/01r: CompileTimeError # Issue 23888 -multiline_newline_test/02r: CompileTimeError # Issue 23888 -multiline_newline_test/03r: CompileTimeError # Issue 23888 -multiline_newline_test/04r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/05r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/06r: MissingCompileTimeError # Issue 23888 - -const_for_in_variable_test/01: MissingCompileTimeError # Issue 25161 - -bad_initializer2_negative_test: fail # Issue 14880 -field3a_negative_test: Fail # Issue 11124 -final_syntax_test/01: Fail # Issue 11124 -final_syntax_test/04: Fail # Issue 11124 -final_syntax_test/02: Fail # Issue 11124 -final_syntax_test/03: Fail # Issue 11124 -get_set_syntax_test/none: fail # Issue 11575 -implicit_this_test/none: fail # Issue 11575 -interface_test/none: fail # Issue 11575 -syntax_test/none: fail # Issue 11575 -cascade_test/none: fail # Issue 11577 -factory5_test/none: fail # Issue 11578 -type_variable_bounds_test/none: fail # Issue 11578 -type_variable_scope_test/none: fail # Issue 11578 -factory_implementation_test/none: fail # Issue 11578 -malbounded_redirecting_factory_test/none: fail # Issue 11578 -malbounded_redirecting_factory2_test/none: fail # Issue 11578 -getter_no_setter_test/none: fail # Issue 11579 -constructor3_negative_test: fail # Issue 11585 -constructor_call_wrong_argument_count_negative_test: fail # Issue 11585 -instance_call_wrong_argument_count_negative_test: fail # Issue 11585 -field_method4_negative_test: fail # Issue 11590 -import_combinators_negative_test: fail # Issue 11594 -interface_static_non_final_fields_negative_test: fail # Issue 11594 -prefix1_negative_test: fail # Issue 11962 -prefix2_negative_test: fail # Issue 11962 -prefix4_negative_test: fail # Issue 11962 -prefix5_negative_test: fail # Issue 11962 -prefix12_negative_test: fail # Issue 11962 -prefix8_negative_test: fail # Issue 11964 -prefix11_negative_test: fail # Issue 11964 -static_call_wrong_argument_count_negative_test: fail # Issue 12156 -type_parameter_test/none: fail # Issue 12160 -type_variable_static_context_negative_test: fail # Issue 12161 -unresolved_in_factory_negative_test: fail # Issue 12163 -unresolved_top_level_var_negative_test: fail # Issue 12163 -prefix3_negative_test: fail # Issue 12191 -issue11724_test: fail # Issue 12381 -static_field_test/01: fail # Issue 12541 -static_field_test/02: fail # Issue 12541 -static_field_test/03: fail # Issue 12541 -static_field_test/04: fail # Issue 12541 -redirecting_factory_infinite_steps_test/01: fail # Issue 13916 -redirecting_factory_default_values_test/none: StaticWarning # Issue 14471 -default_factory2_test/none: fail # Issue 13956 -private_member1_negative_test: fail # Issue 14021 -private_member2_negative_test: fail # Issue 14021 -private_member3_negative_test: fail # Issue 14021 -malformed_test/none: fail # Issue 14079 -malformed_test/05: fail # Issue 14079 -malformed_test/06: fail # Issue 14079 -regress_22438_test: fail # Issue 14079 -black_listed_test/none: fail # Issue 14228 -setter4_test: StaticWarning # Issue 14736 -proxy_test/05: StaticWarning # Issue 15467 -proxy_test/06: StaticWarning # Issue 15467 -proxy3_test/03: StaticWarning # Issue 15467 -proxy3_test/04: StaticWarning # Issue 15467 +f_bounded_quantification4_test: StaticWarning +f_bounded_quantification5_test: StaticWarning +factory1_test/00: StaticWarning # Issue 18726 # Issues to be fixed now that type parameters have been fixed (issues 14221, 15553) +factory1_test/01: StaticWarning # Issue 18726 # Issues to be fixed now that type parameters have been fixed (issues 14221, 15553) +factory1_test/none: StaticWarning # Issue 18726 # Issues to be fixed now that type parameters have been fixed (issues 14221, 15553) +factory2_negative_test: CompileTimeError +factory2_test: StaticWarning # Issue 18727 +factory3_negative_test: CompileTimeError +factory3_test: StaticWarning # Issue 18727 +factory4_test: StaticWarning # Issue 18727 +factory5_test/none: Fail # Issue 11578 +factory_implementation_test/00: StaticWarning +factory_implementation_test/none: Fail # Issue 11578 +factory_negative_test: CompileTimeError +factory_redirection_test/01: StaticWarning # Issue 11578 factory_redirection_test/02: StaticWarning # Issue 18230 +factory_redirection_test/03: StaticWarning # Issue 11578 +factory_redirection_test/05: StaticWarning # Issue 11578 +factory_redirection_test/06: StaticWarning # Issue 11578 factory_redirection_test/08: StaticWarning # Issue 18230 factory_redirection_test/09: StaticWarning # Issue 18230 factory_redirection_test/10: StaticWarning # Issue 18230 @@ -122,46 +72,24 @@ factory_redirection_test/12: StaticWarning # Issue 18230 factory_redirection_test/13: StaticWarning # Issue 18230 factory_redirection_test/14: StaticWarning # Issue 18230 factory_redirection_test/none: StaticWarning # Issue 18230 - -application_negative_test: CompileTimeError # Issue 14528, The following tests are currently assumed to be failing because the test is wrong. -bad_initializer1_negative_test: CompileTimeError # Issue 14529, The following tests are currently assumed to be failing because the test is wrong. -bad_named_constructor_negative_test: CompileTimeError # Issue 18693, The following tests are currently assumed to be failing because the test is wrong. -body_less_constructor_wrong_arg_negative_test: CompileTimeError # Issue 18695, The following tests are currently assumed to be failing because the test is wrong. -empty_block_case_test: StaticWarning # Issue 18701, The following tests are currently assumed to be failing because the test is wrong. -error_stacktrace_test: StaticWarning # Issue 18702, The following tests are currently assumed to be failing because the test is wrong. - -abstract_beats_arguments_test: StaticWarning -const_counter_negative_test: CompileTimeError -const_optional_args_negative_test: CompileTimeError -constructor_redirect1_negative_test: CompileTimeError -constructor_redirect2_negative_test: CompileTimeError -constructor_setter_negative_test: CompileTimeError -duplicate_export_negative_test: CompileTimeError -duplicate_interface_negative_test: CompileTimeError -export_ambiguous_main_negative_test: CompileTimeError -extend_type_parameter2_negative_test: CompileTimeError -extend_type_parameter_negative_test: CompileTimeError -factory2_negative_test: CompileTimeError -factory2_test: StaticWarning # Issue 18727 -factory3_negative_test: CompileTimeError -factory3_test: StaticWarning # Issue 18727 -factory4_test: StaticWarning # Issue 18727 -factory_implementation_test/00: StaticWarning -factory_negative_test: CompileTimeError -factory_redirection_test/01: StaticWarning # Issue 11578 -factory_redirection_test/03: StaticWarning # Issue 11578 -factory_redirection_test/05: StaticWarning # Issue 11578 -factory_redirection_test/06: StaticWarning # Issue 11578 factory_return_type_checked_test: StaticWarning # Issue 18728 -f_bounded_quantification4_test: StaticWarning -f_bounded_quantification5_test: StaticWarning field1_negative_test: CompileTimeError field2_negative_test: CompileTimeError field3_negative_test: CompileTimeError +field3a_negative_test: Fail # Issue 11124 field4_negative_test: CompileTimeError field5_negative_test: CompileTimeError -field6a_negative_test: CompileTimeError field6_negative_test: CompileTimeError +field6a_negative_test: CompileTimeError +field_method4_negative_test: Fail # Issue 11590 +final_attempt_reinitialization_test/01: MissingCompileTimeError # Issue 29657 +final_attempt_reinitialization_test/02: MissingCompileTimeError # Issue 29657 +final_syntax_test/01: Fail # Issue 11124 +final_syntax_test/02: Fail # Issue 11124 +final_syntax_test/03: Fail # Issue 11124 +final_syntax_test/04: Fail # Issue 11124 +for_in3_test: StaticWarning, OK # Test should have warning by design. +for_in_side_effects_test: StaticWarning, OK # Test uses custom class that does not implement Iterable in for-in. function_malformed_result_type_test: StaticWarning function_subtype_bound_closure7_test: StaticWarning function_subtype_checked0_test: StaticWarning @@ -172,34 +100,49 @@ function_subtype_inline1_test: StaticWarning function_type2_test: StaticWarning function_type_parameter2_negative_test: CompileTimeError function_type_parameter_negative_test: CompileTimeError +generalized_void_syntax_test: Skip # TODO, Issue #30177. +generic_closure_test: StaticWarning generic_list_checked_test: StaticWarning -generics_test: StaticWarning +generic_local_functions_test: CompileTimeError # Issue 28515 +generic_methods_generic_function_parameter_test: CompileTimeError # Issue 28515 generic_test: StaticWarning +generics_test: StaticWarning +get_set_syntax_test/none: Fail # Issue 11575 getter_declaration_negative_test: CompileTimeError getter_no_setter2_test/01: StaticWarning getter_no_setter_test/01: StaticWarning +getter_no_setter_test/none: Fail # Issue 11579 +getter_setter_in_lib_test: Fail # Issue 23286 implicit_this_test/02: StaticWarning +implicit_this_test/none: Fail # Issue 11575 implied_interface_test: StaticWarning +import_combinators_negative_test: Fail # Issue 11594 import_combinators_test: StaticWarning import_core_prefix_test: StaticWarning inferrer_this_access_test: StaticWarning +initializing_formal_type_test: StaticWarning # Issue 26658 # Experimental feature: Use initializing formals in initializers and constructor body. inlined_throw_test: StaticWarning +inst_field_initializer1_negative_test: CompileTimeError +instance_call_wrong_argument_count_negative_test: Fail # Issue 11585 instance_method2_negative_test: CompileTimeError instance_method_negative_test: CompileTimeError instanceof3_test: StaticWarning instantiate_type_variable_test/01: StaticWarning -inst_field_initializer1_negative_test: CompileTimeError interceptor6_test: StaticWarning interface2_negative_test: CompileTimeError interface_inherit_field_test: StaticWarning interface_injection1_negative_test: CompileTimeError interface_injection2_negative_test: CompileTimeError interface_static_method_negative_test: CompileTimeError +interface_static_non_final_fields_negative_test: Fail # Issue 11594 +interface_test/none: Fail # Issue 11575 invocation_mirror_test: StaticWarning is_not_class1_negative_test: CompileTimeError is_not_class2_test: StaticWarning is_not_class4_negative_test: CompileTimeError isnot_malformed_type_test: StaticWarning +issue11724_test: Fail # Issue 12381 +issue13474_test: StaticWarning, OK # Issue 13474 issue1363_test: StaticWarning issue1578_negative_test: CompileTimeError label2_negative_test: CompileTimeError @@ -217,10 +160,18 @@ list_literal2_negative_test: CompileTimeError list_literal4_test: StaticWarning list_literal_negative_test: CompileTimeError list_test: StaticWarning -malbounded_type_cast_test: StaticWarning +local_function2_test: StaticWarning +main_not_a_function_test/01: Fail # Issue 20030 +main_test/03: Fail # Issue 20030 +malbounded_redirecting_factory2_test/none: Fail # Issue 11578 +malbounded_redirecting_factory_test/none: Fail # Issue 11578 malbounded_type_cast2_test: StaticWarning +malbounded_type_cast_test: StaticWarning malbounded_type_literal_test: StaticWarning malbounded_type_test2_test: StaticWarning +malformed_test/05: Fail # Issue 14079 +malformed_test/06: Fail # Issue 14079 +malformed_test/none: Fail # Issue 14079 malformed_type_test: StaticWarning map_literal2_negative_test: CompileTimeError map_literal3_test: StaticWarning @@ -231,16 +182,40 @@ map_literal_negative_test: CompileTimeError method_override4_test: StaticWarning method_override5_test: StaticWarning method_override6_test: StaticWarning +method_override7_test/03: Fail # Issue 11497 method_override_test: StaticWarning mixin_illegal_static_access_test: StaticWarning +mixin_invalid_bound2_test/none: StaticWarning # legitimate StaticWarning, cannot be annotated +mixin_invalid_bound_test/none: StaticWarning # legitimate StaticWarning, cannot be annotated +mixin_super_bound_test: StaticWarning # legitimate StaticWarning, cannot be annotated +mixin_supertype_subclass2_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass2_test/05: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass3_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass3_test/05: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/01: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/03: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/04: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/05: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass_test/05: MissingStaticWarning # Issue 25614 mixin_type_parameters_mixin_extends_test: StaticWarning mixin_type_parameters_mixin_test: StaticWarning mixin_type_parameters_super_extends_test: StaticWarning mixin_type_parameters_super_test: StaticWarning mixin_with_two_implicit_constructors_test: StaticWarning -mixin_invalid_bound_test/none: StaticWarning # legitimate StaticWarning, cannot be annotated -mixin_invalid_bound2_test/none: StaticWarning # legitimate StaticWarning, cannot be annotated -mixin_super_bound_test: StaticWarning # legitimate StaticWarning, cannot be annotated +multiline_newline_test/01: CompileTimeError # Issue 23888 +multiline_newline_test/01r: CompileTimeError # Issue 23888 +multiline_newline_test/02: CompileTimeError # Issue 23888 +multiline_newline_test/02r: CompileTimeError # Issue 23888 +multiline_newline_test/03: CompileTimeError # Issue 23888 +multiline_newline_test/03r: CompileTimeError # Issue 23888 +multiline_newline_test/04: MissingCompileTimeError # Issue 23888 +multiline_newline_test/04r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/05: MissingCompileTimeError # Issue 23888 +multiline_newline_test/05r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/06: MissingCompileTimeError # Issue 23888 +multiline_newline_test/06r: MissingCompileTimeError # Issue 23888 named_constructor_test/01: StaticWarning named_constructor_test/03: StaticWarning named_parameters2_test: StaticWarning @@ -260,12 +235,13 @@ named_parameters_type_test/01: StaticWarning new_expression1_negative_test: CompileTimeError new_expression2_negative_test: CompileTimeError new_expression3_negative_test: CompileTimeError -non_const_super_negative_test: CompileTimeError -non_parameterized_factory2_test: StaticWarning -non_parameterized_factory_test: StaticWarning +no_main_test/01: Fail # Issue 20030 no_such_constructor2_test: StaticWarning no_such_method2_test: StaticWarning no_such_method_dispatcher_test: StaticWarning +non_const_super_negative_test: CompileTimeError +non_parameterized_factory2_test: StaticWarning +non_parameterized_factory_test: StaticWarning not_enough_positional_arguments_test/00: StaticWarning not_enough_positional_arguments_test/01: CompileTimeError not_enough_positional_arguments_test/02: StaticWarning @@ -292,6 +268,7 @@ override_field_method1_negative_test: CompileTimeError override_field_method2_negative_test: CompileTimeError override_field_method4_negative_test: CompileTimeError override_field_method5_negative_test: CompileTimeError +override_field_test/03: Fail # Issue 29703 parameter_initializer1_negative_test: CompileTimeError parameter_initializer2_negative_test: CompileTimeError parameter_initializer3_negative_test: CompileTimeError @@ -299,25 +276,62 @@ parameter_initializer4_negative_test: CompileTimeError parameter_initializer6_negative_test: CompileTimeError parser_quirks_test: StaticWarning part2_test: StaticWarning +part_refers_to_core_library_test/01: MissingCompileTimeError # Issue 29709 positional_parameters_type_test/01: StaticWarning +prefix11_negative_test: Fail # Issue 11964 +prefix12_negative_test: Fail # Issue 11962 prefix13_negative_test: CompileTimeError prefix15_negative_test: CompileTimeError prefix15_test: StaticWarning prefix16_test: StaticWarning prefix18_negative_test: CompileTimeError +prefix1_negative_test: Fail # Issue 11962 prefix22_test: StaticWarning prefix23_test: StaticWarning +prefix2_negative_test: Fail # Issue 11962 +prefix3_negative_test: Fail # Issue 12191 +prefix4_negative_test: Fail # Issue 11962 +prefix5_negative_test: Fail # Issue 11962 prefix7_negative_test: CompileTimeError +prefix8_negative_test: Fail # Issue 11964 +private_member1_negative_test: Fail # Issue 14021 +private_member2_negative_test: Fail # Issue 14021 +private_member3_negative_test: Fail # Issue 14021 property_field_override_test: StaticWarning +proxy3_test/03: StaticWarning # Issue 15467 +proxy3_test/04: StaticWarning # Issue 15467 +proxy_test/05: StaticWarning # Issue 15467 +proxy_test/06: StaticWarning # Issue 15467 +redirecting_factory_default_values_test/none: StaticWarning # Issue 14471 redirecting_factory_incompatible_signature_test: StaticWarning +redirecting_factory_infinite_steps_test/01: Fail # Issue 13916 +redirecting_factory_long_test: StaticWarning +regress_12561_test: StaticWarning # This test is expected to have warnings because of noSuchMethod overriding. regress_13494_test: StaticWarning +regress_17382_test: Skip # don't care about the static warning. +regress_22438_test: Fail # Issue 14079 +regress_23408_test: Skip # don't care about the static warning. +regress_25246_test: Skip +regress_26668_test: Fail # Issue 26678 +regress_27572_test: StaticWarning # Warning about undefined method expected. +regress_27617_test/1: MissingCompileTimeError +regress_29025_test: StaticWarning # Issue 29081 +regress_29349_test: CompileTimeError # Issue 29744 +regress_29405_test: StaticWarning # Issue 29421 +reify_typevar_static_test/00: MissingCompileTimeError # Issue 21565 return_type_test: StaticWarning script1_negative_test: CompileTimeError script2_negative_test: CompileTimeError +setter4_test: StaticWarning # Issue 14736 setter_declaration2_negative_test: CompileTimeError setter_declaration_negative_test: CompileTimeError setter_no_getter_call_test/01: StaticWarning source_self_negative_test: CompileTimeError +static_call_wrong_argument_count_negative_test: Fail # Issue 12156 +static_field_test/01: Fail # Issue 12541 +static_field_test/02: Fail # Issue 12541 +static_field_test/03: Fail # Issue 12541 +static_field_test/04: Fail # Issue 12541 static_initializer_type_error_test: StaticWarning string_escape4_negative_test: CompileTimeError string_interpolate1_negative_test: CompileTimeError @@ -349,90 +363,49 @@ switch4_negative_test: CompileTimeError switch5_negative_test: CompileTimeError switch7_negative_test: CompileTimeError switch_fallthru_test: StaticWarning +syntax_test/none: Fail # Issue 11575 test_negative_test: CompileTimeError +transitive_private_library_access_test: StaticWarning # This test is expected to generate a warning, since it's intentionally referring to a variable that's not in scope. try_catch4_test: StaticWarning # Note: test is in error but analyzer doesn't notice due to bug #24502 top_level_non_prefixed_library_test: StaticWarning try_catch5_test: StaticWarning # Note: test is in error but analyzer doesn't notice due to bug #24502 top_level_non_prefixed_library_test: StaticWarning type_argument_in_super_type_test: StaticWarning -typed_selector2_test: StaticWarning -type_variable_identifier_expression_test: StaticWarning -type_variable_scope2_test: StaticWarning +type_parameter_test/none: Fail # Issue 12160 +type_variable_bounds_test/none: Fail # Issue 11578 type_variable_conflict2_test/02: MissingCompileTimeError type_variable_conflict2_test/06: MissingCompileTimeError type_variable_conflict2_test/08: MissingCompileTimeError type_variable_conflict2_test/10: MissingCompileTimeError +type_variable_identifier_expression_test: StaticWarning +type_variable_scope2_test: StaticWarning +type_variable_scope_test/none: Fail # Issue 11578 +type_variable_static_context_negative_test: Fail # Issue 12161 +typed_selector2_test: StaticWarning unary_plus_negative_test: CompileTimeError unbound_getter_test: StaticWarning unhandled_exception_negative_test: CompileTimeError +unresolved_in_factory_negative_test: Fail # Issue 12163 unresolved_top_level_method_negative_test: StaticWarning -vm/debug_break_vm_test/*: Skip +unresolved_top_level_var_negative_test: Fail # Issue 12163 vm/debug_break_enabled_vm_test: Skip +vm/debug_break_vm_test/*: Skip +vm/reflect_core_vm_test: CompileTimeError # This test uses "const Symbol('_setAt')" vm/type_cast_vm_test: StaticWarning vm/type_vm_test: StaticWarning void_type_test: StaticWarning -issue13474_test: StaticWarning, OK # Issue 13474 - -factory1_test/00: StaticWarning # Issue 18726 # Issues to be fixed now that type parameters have been fixed (issues 14221, 15553) -factory1_test/01: StaticWarning # Issue 18726 # Issues to be fixed now that type parameters have been fixed (issues 14221, 15553) -factory1_test/none: StaticWarning # Issue 18726 # Issues to be fixed now that type parameters have been fixed (issues 14221, 15553) -generic_closure_test: StaticWarning -local_function2_test: StaticWarning -redirecting_factory_long_test: StaticWarning - -vm/reflect_core_vm_test: CompileTimeError # This test uses "const Symbol('_setAt')" - -regress_12561_test: StaticWarning # This test is expected to have warnings because of noSuchMethod overriding. - -main_not_a_function_test/01: Fail # Issue 20030 -main_test/03: Fail # Issue 20030 -no_main_test/01: Fail # Issue 20030 - -transitive_private_library_access_test: StaticWarning # This test is expected to generate a warning, since it's intentionally referring to a variable that's not in scope. - -conflicting_type_variable_and_setter_test: CompileTimeError # Issue 25525 - -mixin_supertype_subclass_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass_test/05: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass2_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass2_test/05: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass3_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass3_test/05: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/01: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/03: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/04: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/05: MissingStaticWarning # Issue 25614 - -accessor_conflict_export2_test: StaticWarning # Issue 25624 -accessor_conflict_export_test: StaticWarning # Issue 25624 -accessor_conflict_import2_test: StaticWarning # Issue 25624 -accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25624 -accessor_conflict_import_prefixed_test: StaticWarning # Issue 25624 -accessor_conflict_import_test: StaticWarning # Issue 25624 - -for_in3_test: StaticWarning, OK # Test should have warning by design. -for_in_side_effects_test: StaticWarning, OK # Test uses custom class that does not implement Iterable in for-in. - -initializing_formal_type_test: StaticWarning # Issue 26658 # Experimental feature: Use initializing formals in initializers and constructor body. - -regress_27572_test: StaticWarning # Warning about undefined method expected. - -part_refers_to_core_library_test/01: MissingCompileTimeError # Issue 29709 - -generalized_void_syntax_test: Skip # TODO, Issue #30177. - -[ $compiler == dart2analyzer && $builder_tag == strong ] +[ $builder_tag == strong && $compiler == dart2analyzer ] *: Skip # Issue 28649 -[$compiler == dart2analyzer && $runtime == none] +[ $compiler == dart2analyzer && $runtime == none ] assertion_initializer_const_error2_test/cc10: CompileTimeError # Issue #31320 assertion_initializer_const_error2_test/cc11: CompileTimeError # Issue #31320 assertion_initializer_const_function_error_test/01: MissingCompileTimeError assertion_initializer_const_function_test/01: MissingStaticWarning assertion_initializer_test: CompileTimeError -[$compiler == dart2analyzer && $runtime == none && $checked] -assertion_initializer_const_error2_test/none: Pass +[ $compiler == dart2analyzer && $runtime == none && $checked ] assertion_initializer_const_error2_test/*: MissingCompileTimeError # Issue # assertion_initializer_const_error2_test/cc10: Pass # Issue #31321 assertion_initializer_const_error2_test/cc11: Pass # Issue #31321 +assertion_initializer_const_error2_test/none: Pass + diff --git a/tests/language/language_dart2js.status b/tests/language/language_dart2js.status index 002d1805fd6..96b01ad3898 100644 --- a/tests/language/language_dart2js.status +++ b/tests/language/language_dart2js.status @@ -2,264 +2,36 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -# VM specific tests that should not be run by dart2js. -[ $compiler == dart2js ] -vm/*: Skip # Issue 12699 +[ $compiler != dart2analyzer ] +switch_case_warn_test: Skip # Analyzer only, see language_analyzer2.status +# VM specific tests that should not be run by dart2js. [ $compiler == dart2js ] assertion_initializer_test: Crash generalized_void_syntax_test: CompileTimeError +vm/*: Skip # Issue 12699 -[ $compiler == dart2js && $arch == ia32 && $runtime == d8 ] +[ $arch == ia32 && $compiler == dart2js && $runtime == d8 ] new_expression2_negative_test: Pass, Crash # Flaky, issue 31131 -[ $compiler == dart2js && !$dart2js_with_kernel ] -accessor_conflict_export2_test: Crash # Issue 25626 -accessor_conflict_export_test: Crash # Issue 25626 -accessor_conflict_import2_test: RuntimeError # Issue 25626 -accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25626 -accessor_conflict_import_prefixed_test: RuntimeError # Issue 25626 -accessor_conflict_import_test: RuntimeError # Issue 25626 -assertion_initializer_const_error2_test/none: Pass -assertion_initializer_const_error2_test/*: Crash -assertion_initializer_const_function_test/01: CompileTimeError -assertion_initializer_const_function_error_test/01: Crash -async_star_cancel_while_paused_test: RuntimeError # Issue 22853 -bad_constructor_test/05: CompileTimeError # Issue 13639 -bad_typedef_test/00: Crash # Issue 28214 -bit_operations_test: RuntimeError, OK # Issue 1533 -branch_canonicalization_test: RuntimeError # Issue 638. -call_function_apply_test: RuntimeError # Issue 23873 -canonical_const2_test: RuntimeError, OK # Issue 1533 -closure_in_field_test/01: RuntimeError # Issue 30467 -closure_in_field_test/02: RuntimeError # Issue 30467 -const_dynamic_type_literal_test/02: CompileTimeError # Issue 23009 -const_dynamic_type_literal_test/03: CompileTimeError # Issue 23009 -const_switch_test/02: RuntimeError # Issue 17960 -const_switch_test/04: RuntimeError # Issue 17960 -constructor_duplicate_final_test/01: Fail # Issue 13363 -constructor_duplicate_final_test/02: Fail # Issue 13363 -constructor_named_arguments_test/01: CompileTimeError # Issue 25225 -deferred_not_loaded_check_test: Fail # Issue 27577 -double_int_to_string_test: RuntimeError # Issue 1533 -duplicate_part_test/01: MissingCompileTimeError # Issue 27517 -enum_test: Fail # Issue 28340 -expect_test: RuntimeError, OK # Issue 13080 -external_test/10: CompileTimeError # Issue 12887 -external_test/13: CompileTimeError # Issue 12887 -external_test/20: CompileTimeError # Issue 12887 -final_attempt_reinitialization_test.dart: Skip # Issue 29659 -full_stacktrace1_test: Pass, RuntimeError # Issue 12698 -full_stacktrace2_test: Pass, RuntimeError # Issue 12698 -full_stacktrace3_test: Pass, RuntimeError # Issue 12698 -generic_field_mixin4_test: Crash # Issue 18651 -generic_field_mixin5_test: Crash # Issue 18651 -generic_function_typedef2_test/00: Crash # Issue 28214 -generic_function_typedef2_test/01: Crash # Issue 28214 -generic_function_typedef2_test/02: Crash # Issue 28214 -generic_function_typedef2_test/03: Crash # Issue 28214 -generic_function_typedef2_test/05: Crash # Issue 28214 -generic_function_typedef2_test/06: Crash # Issue 28214 -getter_setter_in_lib_test: Fail # Issue 23288 -identical_closure2_test: RuntimeError # Issue 1533, Issue 12596 -if_null_assignment_behavior_test/13: Crash # Issue 23491 -if_null_assignment_behavior_test/14: Crash # Issue 23491 -infinity_test: RuntimeError # Issue 4984 -integer_division_by_zero_test: RuntimeError # Issue 8301 -invocation_mirror2_test: RuntimeError # Issue 6490 (wrong retval). -invocation_mirror_empty_arguments_test: Fail # Issue 24331 -left_shift_test: RuntimeError # Issue 1533 -list_literal4_test: RuntimeError # Issue 12890 -malformed_test/none: Fail # Expect failure in lib/_internal/js_runtime/lib/preambles/d8.js -method_name_test: Fail # issue 25574 -method_override5_test: RuntimeError # Issue 12809 -mint_arithmetic_test: RuntimeError # Issue 1533 -mixin_forwarding_constructor4_test/01: MissingCompileTimeError # Issue 15101 -mixin_forwarding_constructor4_test/02: MissingCompileTimeError # Issue 15101 -mixin_forwarding_constructor4_test/03: MissingCompileTimeError # Issue 15101 -mixin_mixin2_test: RuntimeError # Issue 13109. -mixin_mixin3_test: RuntimeError # Issue 13109. -mixin_mixin_type_arguments_test: RuntimeError # Issue 29587 -mixin_of_mixin_test: CompileTimeError # Issue 23773 -mixin_super_2_test: CompileTimeError # Issue 23773 -mixin_super_bound2_test: CompileTimeError # Issue 23773 -mixin_super_constructor_named_test/01: Fail # Issue 15101 -mixin_super_constructor_positionals_test/01: Fail # Issue 15101 -mixin_super_test: CompileTimeError # Issue 23773 -mixin_super_use_test: CompileTimeError # Issue 23773 -mixin_superclass_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass2_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass3_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass4_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass_test: CompileTimeError # Issue 23773 -modulo_test: RuntimeError # Issue 15246 -multiline_newline_test/01: CompileTimeError # Issue 23888 -multiline_newline_test/01r: CompileTimeError # Issue 23888 -multiline_newline_test/02: CompileTimeError # Issue 23888 -multiline_newline_test/02r: CompileTimeError # Issue 23888 -multiline_newline_test/03: CompileTimeError # Issue 23888 -multiline_newline_test/03r: CompileTimeError # Issue 23888 -multiline_newline_test/04: MissingCompileTimeError # Issue 23888 -multiline_newline_test/04r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/05: MissingCompileTimeError # Issue 23888 -multiline_newline_test/05r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/06: MissingCompileTimeError # Issue 23888 -multiline_newline_test/06r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/none: RuntimeError # Issue 23888 -nan_identical_test: Fail # Issue 11551 -not_enough_positional_arguments_test/01: CompileTimeError # Issue 12838 -not_enough_positional_arguments_test/02: CompileTimeError # Issue 12838 -not_enough_positional_arguments_test/05: CompileTimeError # Issue 12838 -number_identity2_test: RuntimeError # Issue 12596 -numbers_test: RuntimeError, OK # Issue 1533 -override_inheritance_mixed_test/08: Fail # Issue 18124 -override_inheritance_mixed_test/09: Fail # Issue 18124 -ref_before_declaration_test/00: MissingCompileTimeError -ref_before_declaration_test/01: MissingCompileTimeError -ref_before_declaration_test/02: MissingCompileTimeError -ref_before_declaration_test/03: MissingCompileTimeError -ref_before_declaration_test/04: MissingCompileTimeError -ref_before_declaration_test/05: MissingCompileTimeError -ref_before_declaration_test/06: MissingCompileTimeError -regress_22976_test: CompileTimeError # Issue 23132 -regress_24283_test: RuntimeError # Issue 1533 -regress_28341_test: Fail # Issue 28340 -regress_29481_test: Crash # Issue 29754 -scope_variable_test/01: MissingCompileTimeError # Issue 13016 -setter4_test: CompileTimeError # issue 13639 -stacktrace_demangle_ctors_test: Fail # dart2js stack traces are not always compliant. -stacktrace_rethrow_error_test: Pass, RuntimeError # Issue 12698 -stacktrace_rethrow_nonerror_test: Pass, RuntimeError # Issue 12698 -stacktrace_test: Pass, RuntimeError # # Issue 12698 -symbol_literal_test/*: Fail # Issue 21825 -truncdiv_test: RuntimeError # Issue 15246 -try_catch_on_syntax_test/10: Fail # Issue 19823 -try_catch_on_syntax_test/11: Fail # Issue 19823 -type_variable_conflict_test/01: Fail # Issue 13702 -type_variable_conflict_test/02: Fail # Issue 13702 -type_variable_conflict_test/03: Fail # Issue 13702 -type_variable_conflict_test/04: Fail # Issue 13702 -type_variable_conflict_test/05: Fail # Issue 13702 -type_variable_conflict_test/06: Fail # Issue 13702 -syntax_test/none: CompileTimeError # Issue #30176. +[ $compiler == dart2js && $runtime == chrome && $system == macos ] +await_future_test: Pass, Timeout # Issue 26735 -library_env_test/has_no_html_support: RuntimeError, OK # The following tests are supposed to fail. In testing-mode, dart2js supports all dart:X libraries (because it uses '--categories=all'). -library_env_test/has_no_io_support: RuntimeError, OK # The following tests are supposed to fail. In testing-mode, dart2js supports all dart:X libraries (because it uses '--categories=all'). -library_env_test/has_no_mirror_support: RuntimeError, OK # The following tests are supposed to fail. In testing-mode, dart2js supports all dart:X libraries (because it uses '--categories=all'). +[ $compiler == dart2js && $runtime == chromeOnAndroid ] +override_field_test/02: Pass, Slow # TODO(kasperl): Please triage. +[ $compiler == dart2js && $runtime != drt ] +issue23244_test: RuntimeError # 23244 -[ $compiler == dart2js && $csp && $browser && !$fast_startup ] -conditional_import_string_test: Fail # Issue 30615 -conditional_import_test: Fail # Issue 30615 - -[ $compiler == dart2js && $fast_startup && !$dart2js_with_kernel ] -assertion_initializer_const_error2_test/none: Pass -assertion_initializer_const_error2_test/*: Crash -assertion_initializer_const_error2_test/cc10: CompileTimeError # Issue #31321 -assertion_initializer_const_error2_test/cc11: CompileTimeError # Issue #31321 -assertion_initializer_const_function_error_test/01: Crash -assertion_initializer_const_function_test/01: CompileTimeError -assertion_initializer_test: Crash -const_evaluation_test/*: Fail # mirrors not supported -deferred_constraints_constants_test/none: Fail # mirrors not supported -deferred_constraints_constants_test/reference_after_load: Fail # mirrors not supported -deferred_constraints_constants_test: Pass # mirrors not supported, passes for the wrong reason -enum_mirror_test: Fail # mirrors not supported -field_increment_bailout_test: Fail # mirrors not supported -instance_creation_in_function_annotation_test: Fail # mirrors not supported -invocation_mirror2_test: Fail # mirrors not supported -invocation_mirror_invoke_on2_test: Fail # mirrors not supported -invocation_mirror_invoke_on_test: Fail # mirrors not supported -issue21079_test: Fail # mirrors not supported -library_env_test/has_mirror_support: Fail # mirrors not supported -library_env_test/has_no_mirror_support: Pass # fails for the wrong reason. -many_overridden_no_such_method_test: Fail # mirrors not supported -no_such_method_test: Fail # mirrors not supported -null_test/0*: Pass # mirrors not supported, fails for the wrong reason -null_test/none: Fail # mirrors not supported -overridden_no_such_method_test: Fail # mirrors not supported -redirecting_factory_reflection_test: Fail # mirrors not supported -regress_13462_0_test: Fail # mirrors not supported -regress_13462_1_test: Fail # mirrors not supported -regress_18535_test: Fail # mirrors not supported -regress_28255_test: Fail # mirrors not supported -super_call4_test: Fail # mirrors not supported -super_getter_setter_test: Fail # mirrors not supported -vm/reflect_core_vm_test: Fail # mirrors not supported +[ $compiler == dart2js && $runtime == ff ] +round_test: Pass, Fail, OK # Fixed in ff 35. Common JavaScript engine Math.round bug. [ $compiler == dart2js && $runtime == jsshell && !$dart2js_with_kernel ] -await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728 -async_star_test: RuntimeError # Jsshell does not provide non-zero timers, Issue 7728 -regress_23996_test: RuntimeError # Jsshell does not provide non-zero timers, Issue 7728 -async_star_no_cancel_test: RuntimeError # Need triage async_star_no_cancel2_test: RuntimeError # Need triage - -[ $compiler == dart2js && $browser && !$dart2js_with_kernel ] -config_import_test: Fail # Test flag is not passed to the compiler. - -library_env_test/has_no_io_support: Pass # Issue 27398 -library_env_test/has_io_support: RuntimeError # Issue 27398 - - -[ $compiler == dart2js && $checked && !$dart2js_with_kernel ] -async_return_types_test/nestedFuture: Fail # Issue 26429 -async_return_types_test/wrongTypeParameter: Fail # Issue 26429 -regress_26133_test: RuntimeError # Issue 26429 -regress_29405_test: Fail # Issue 29422 -type_variable_bounds_test/02: Fail # Issue 12702 -type_variable_bounds2_test/01: Fail # Issue 12702 -type_variable_bounds2_test/04: Fail # Issue 12702 -type_variable_bounds2_test/06: Pass # Issue 12702 (pass for the wrong reasons). -type_variable_bounds3_test/00: Fail # Issue 12702 -closure_type_test: Fail # Issue 12745 -malbounded_redirecting_factory_test/02: Fail # Issue 12825 -malbounded_redirecting_factory_test/03: Fail # Issue 12825 -malbounded_redirecting_factory2_test/02: Fail # Issue 12825 -malbounded_redirecting_factory2_test/03: Fail # Issue 12825 -malbounded_instantiation_test/01: Fail # Issue 12702 -malbounded_type_cast_test: Fail # Issue 14121 -malbounded_type_cast2_test: Fail # Issue 14121 -malbounded_type_test_test/03: Fail # Issue 14121 -malbounded_type_test_test/04: Fail # Issue 14121 -malbounded_type_test2_test: Fail # Issue 14121 -default_factory2_test/01: Fail # Issue 14121 - -[ $compiler == dart2js && !$checked && !$dart2js_with_kernel ] -assertion_test: RuntimeError -type_checks_in_factory_method_test: RuntimeError # Issue 12746 -generic_test: RuntimeError, OK -map_literal4_test: RuntimeError, OK # Checked mode required. -named_parameters_type_test/01: MissingRuntimeError, OK -named_parameters_type_test/02: MissingRuntimeError, OK -named_parameters_type_test/03: MissingRuntimeError, OK -positional_parameters_type_test/01: MissingRuntimeError, OK -positional_parameters_type_test/02: MissingRuntimeError, OK -issue13474_test: RuntimeError, OK - -[ $compiler == dart2js && !$checked && $enable_asserts && !$dart2js_with_kernel ] -assertion_test: RuntimeError # Issue 12748 - -[ $compiler == dart2js && !$checked && $enable_asserts ] -bool_check_test: RuntimeError # Issue 29647 - -[ $compiler == dart2js && !$checked && $minified && !$dart2js_with_kernel ] -f_bounded_quantification5_test: Fail, OK # Issue 12605 - -[ $compiler == dart2js && $minified && !$dart2js_with_kernel ] -cyclic_type_test/0*: Fail # Issue 12605 -cyclic_type2_test: Fail # Issue 12605 -f_bounded_quantification4_test: Fail, Pass # Issue 12605 -generic_closure_test: Fail # Issue 12605 -mixin_generic_test: Fail # Issue 12605 -mixin_mixin2_test: Fail # Issue 12605 -mixin_mixin3_test: Fail # Issue 12605 -mixin_mixin4_test: Fail # Issue 12605 -mixin_mixin5_test: Fail # Issue 12605 -mixin_mixin6_test: Fail # Issue 12605 -mixin_mixin_bound_test: RuntimeError # Issue 12605 -mixin_mixin_bound2_test: RuntimeError # Issue 12605 -symbol_conflict_test: RuntimeError # Issue 23857 - +async_star_no_cancel_test: RuntimeError # Need triage +async_star_test: RuntimeError # Jsshell does not provide non-zero timers, Issue 7728 +await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728 +regress_23996_test: RuntimeError # Jsshell does not provide non-zero timers, Issue 7728 [ $compiler == dart2js && $runtime == none ] *: Fail, Pass # TODO(ahe): Triage these tests. @@ -267,57 +39,768 @@ symbol_conflict_test: RuntimeError # Issue 23857 [ $compiler == dart2js && $runtime == none && $dart2js_with_kernel ] *: Fail, Pass, Crash # TODO(sigmund): we should have no crashes when migration completes -[ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim) ] -round_test: Fail, OK # Common JavaScript engine Math.round bug. - -[ $compiler == dart2js && $runtime == ff ] -round_test: Pass, Fail, OK # Fixed in ff 35. Common JavaScript engine Math.round bug. - -[ $compiler == dart2js && $runtime == chrome && $system == macos ] -await_future_test: Pass, Timeout # Issue 26735 - -[ $compiler == dart2js && ($runtime == chrome || $runtime == ff) && $system == windows ] -string_literals_test: RuntimeError # Issue 27533 - [ $compiler == dart2js && $runtime == safarimobilesim ] call_through_getter_test: Fail, OK # Safari codegen bug, fixed on some versions of Safari 7.1 (Version 7.1 (9537.85.10.17.1)) -[ $compiler == dart2js && $runtime == chromeOnAndroid ] -override_field_test/02: Pass, Slow # TODO(kasperl): Please triage. +[ $compiler == dart2js && $system == windows && ($runtime == chrome || $runtime == ff) ] +string_literals_test: RuntimeError # Issue 27533 -[ $minified && !$dart2js_with_kernel ] -stack_trace_test: Fail, OK # Stack trace not preserved in minified code. -regress_21795_test: RuntimeError # Issue 12605 +[ $compiler == dart2js && $browser && $csp && !$fast_startup ] +conditional_import_string_test: Fail # Issue 30615 +conditional_import_test: Fail # Issue 30615 -[ $compiler == dart2js && $runtime != drt ] -issue23244_test: RuntimeError # 23244 +[ $compiler == dart2js && $browser && !$dart2js_with_kernel ] +config_import_test: Fail # Test flag is not passed to the compiler. +library_env_test/has_io_support: RuntimeError # Issue 27398 +library_env_test/has_no_io_support: Pass # Issue 27398 -[ $compiler == dart2js && $host_checked && !$dart2js_with_kernel ] -assertion_initializer_const_error2_test/cc01: Crash -assertion_initializer_const_error2_test/cc02: Crash -assertion_initializer_const_error2_test/cc03: Crash -assertion_initializer_const_error2_test/cc04: Crash -assertion_initializer_const_error2_test/cc05: Crash -assertion_initializer_const_error2_test/cc06: Crash -assertion_initializer_const_error2_test/cc07: Crash -assertion_initializer_const_error2_test/cc08: Crash -assertion_initializer_const_error2_test/cc09: Crash -assertion_initializer_const_error2_test/cc10: Crash -assertion_initializer_const_error2_test/cc11: Crash -assertion_initializer_const_function_error_test/01: Crash -assertion_initializer_const_function_test/01: Crash -assertion_initializer_test: Crash -regress_26855_test/1: Crash # Issue 26867 -regress_26855_test/2: Crash # Issue 26867 -regress_26855_test/3: Crash # Issue 26867 -regress_26855_test/4: Crash # Issue 26867 +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] +arithmetic_canonicalization_test: RuntimeError +assertion_initializer_const_function_test/01: RuntimeError +assertion_initializer_test: CompileTimeError +assign_static_type_test/01: Fail +assign_static_type_test/02: MissingCompileTimeError +async_await_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +async_return_types_test/nestedFuture: Fail # Issue 26429 +async_return_types_test/wrongTypeParameter: Fail # Issue 26429 +async_star_cancel_while_paused_test: RuntimeError +bad_constructor_test/06: Crash # NoSuchMethodError: The getter 'iterator' was called on null. +bad_override_test/03: MissingCompileTimeError +bad_override_test/04: MissingCompileTimeError +bad_override_test/05: MissingCompileTimeError +bit_operations_test/01: RuntimeError +bit_operations_test/02: RuntimeError +bit_operations_test/03: RuntimeError +bit_operations_test/04: RuntimeError +bit_operations_test/none: RuntimeError +branch_canonicalization_test: RuntimeError +call_function_apply_test: RuntimeError +call_nonexistent_constructor_test/01: RuntimeError +canonical_const2_test: RuntimeError +canonical_const3_test: CompileTimeError +check_member_static_test/02: MissingCompileTimeError +class_cycle_test/02: MissingCompileTimeError +class_cycle_test/03: MissingCompileTimeError +closure_in_field_test/01: RuntimeError +closure_in_field_test/02: RuntimeError +closure_type_test/01: RuntimeError # Issue 12745 +closure_type_test/none: RuntimeError # Issue 12745 +compile_time_constant_checked2_test/01: MissingCompileTimeError +compile_time_constant_checked2_test/02: MissingCompileTimeError +compile_time_constant_checked2_test/03: MissingCompileTimeError +compile_time_constant_checked2_test/04: MissingCompileTimeError +compile_time_constant_checked2_test/05: MissingCompileTimeError +compile_time_constant_checked2_test/06: MissingCompileTimeError +compile_time_constant_checked3_test/01: MissingCompileTimeError +compile_time_constant_checked3_test/02: MissingCompileTimeError +compile_time_constant_checked3_test/03: MissingCompileTimeError +compile_time_constant_checked3_test/04: MissingCompileTimeError +compile_time_constant_checked3_test/05: MissingCompileTimeError +compile_time_constant_checked3_test/06: MissingCompileTimeError +compile_time_constant_checked4_test/01: MissingCompileTimeError +compile_time_constant_checked4_test/02: MissingCompileTimeError +compile_time_constant_checked4_test/03: MissingCompileTimeError +compile_time_constant_checked5_test/03: MissingCompileTimeError +compile_time_constant_checked5_test/04: MissingCompileTimeError +compile_time_constant_checked5_test/08: MissingCompileTimeError +compile_time_constant_checked5_test/09: MissingCompileTimeError +compile_time_constant_checked5_test/13: MissingCompileTimeError +compile_time_constant_checked5_test/14: MissingCompileTimeError +compile_time_constant_checked5_test/18: MissingCompileTimeError +compile_time_constant_checked5_test/19: MissingCompileTimeError +compile_time_constant_checked_test/01: Fail +compile_time_constant_checked_test/02: MissingCompileTimeError +compile_time_constant_checked_test/03: Fail +conditional_import_string_test: RuntimeError +conditional_import_test: RuntimeError +config_import_corelib_test: RuntimeError +config_import_test: RuntimeError +const_constructor2_test/13: MissingCompileTimeError +const_constructor2_test/14: MissingCompileTimeError +const_constructor2_test/15: MissingCompileTimeError +const_constructor2_test/16: MissingCompileTimeError +const_constructor2_test/17: MissingCompileTimeError +const_constructor2_test/20: MissingCompileTimeError +const_constructor2_test/22: MissingCompileTimeError +const_constructor2_test/24: MissingCompileTimeError +const_constructor3_test/02: MissingCompileTimeError +const_constructor3_test/04: MissingCompileTimeError +const_error_multiply_initialized_test/02: MissingCompileTimeError +const_error_multiply_initialized_test/04: MissingCompileTimeError +const_evaluation_test/01: RuntimeError +const_factory_with_body_test/01: MissingCompileTimeError +const_init2_test/02: MissingCompileTimeError +const_instance_field_test/01: MissingCompileTimeError +const_map2_test/00: MissingCompileTimeError +const_map3_test/00: MissingCompileTimeError +const_switch2_test/01: MissingCompileTimeError +const_switch_test/02: RuntimeError +const_switch_test/04: RuntimeError +constants_test/05: MissingCompileTimeError +constructor2_test: RuntimeError +constructor3_test: RuntimeError +constructor5_test: RuntimeError +constructor6_test: RuntimeError +constructor_named_arguments_test/none: RuntimeError +constructor_redirect1_negative_test: Crash # Issue 30856 +constructor_redirect2_negative_test: Crash # Issue 30856 +constructor_redirect2_test/01: MissingCompileTimeError +constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). +cyclic_constructor_test/01: Crash # Issue 30856 +deferred_closurize_load_library_test: RuntimeError +deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_type_annotation_test/as_operation: RuntimeError +deferred_constraints_type_annotation_test/catch_check: RuntimeError +deferred_constraints_type_annotation_test/is_check: RuntimeError +deferred_constraints_type_annotation_test/type_annotation1: Fail +deferred_constraints_type_annotation_test/type_annotation_generic1: Fail +deferred_constraints_type_annotation_test/type_annotation_generic4: Fail +deferred_inheritance_constraints_test/extends: MissingCompileTimeError +deferred_inheritance_constraints_test/implements: MissingCompileTimeError +deferred_inheritance_constraints_test/mixin: MissingCompileTimeError +deferred_load_constants_test/none: RuntimeError +deferred_load_library_wrong_args_test/01: MissingRuntimeError +deferred_not_loaded_check_test: RuntimeError +deferred_redirecting_factory_test: RuntimeError +double_int_to_string_test: RuntimeError +duplicate_export_negative_test: Fail +duplicate_implements_test/01: MissingCompileTimeError +duplicate_implements_test/02: MissingCompileTimeError +duplicate_implements_test/03: MissingCompileTimeError +duplicate_implements_test/04: MissingCompileTimeError +dynamic_prefix_core_test/01: RuntimeError +dynamic_prefix_core_test/none: RuntimeError +enum_mirror_test: RuntimeError +example_constructor_test: RuntimeError +expect_test: RuntimeError +external_test/10: MissingRuntimeError +external_test/13: MissingRuntimeError +external_test/20: MissingRuntimeError +factory_redirection_test/07: MissingCompileTimeError +factory_redirection_test/08: Fail +factory_redirection_test/09: Fail +factory_redirection_test/10: Fail +factory_redirection_test/12: Fail +factory_redirection_test/13: Fail +factory_redirection_test/14: Fail +fauxverride_test/03: MissingCompileTimeError +fauxverride_test/05: MissingCompileTimeError +field_initialization_order_test: RuntimeError +field_override3_test/00: MissingCompileTimeError +field_override3_test/01: MissingCompileTimeError +field_override3_test/02: MissingCompileTimeError +field_override3_test/03: MissingCompileTimeError +field_override4_test/02: MissingCompileTimeError +final_attempt_reinitialization_test/01: MissingCompileTimeError +final_attempt_reinitialization_test/02: MissingCompileTimeError +final_field_initialization_order_test: RuntimeError +generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in (Instance of 'ThisLocal') for j:field(M.field). +generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in (Instance of 'ThisLocal') for j:field(M.field). +generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. +generic_methods_type_expression_test/01: RuntimeError +generic_methods_type_expression_test/03: RuntimeError +generic_methods_type_expression_test/none: RuntimeError +getter_override2_test/02: MissingCompileTimeError +getter_override_test/00: MissingCompileTimeError +getter_override_test/01: MissingCompileTimeError +getter_override_test/02: MissingCompileTimeError +identical_closure2_test: RuntimeError +if_null_assignment_behavior_test/14: RuntimeError +infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +infinity_test: RuntimeError +instance_creation_in_function_annotation_test: RuntimeError +integer_division_by_zero_test: RuntimeError +internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. +invocation_mirror2_test: RuntimeError +invocation_mirror_empty_arguments_test: RuntimeError +invocation_mirror_test: RuntimeError +issue21079_test: RuntimeError +left_shift_test: RuntimeError +library_env_test/has_mirror_support: RuntimeError +library_env_test/has_no_html_support: RuntimeError +library_env_test/has_no_io_support: RuntimeError +list_literal1_test/01: MissingCompileTimeError +list_literal4_test: RuntimeError +main_not_a_function_test/01: CompileTimeError +malbounded_instantiation_test/01: RuntimeError # Issue 12702 +malbounded_type_cast2_test: RuntimeError # Issue 14121 +malbounded_type_cast_test: RuntimeError # Issue 14121 +malbounded_type_test2_test: RuntimeError # Issue 14121 +malbounded_type_test_test/03: Fail # Issue 14121 +malbounded_type_test_test/04: Fail # Issue 14121 +malformed2_test/00: RuntimeError +malformed2_test/01: MissingCompileTimeError +map_literal1_test/01: MissingCompileTimeError +method_name_test: CompileTimeError +method_override5_test: RuntimeError +method_override7_test/00: MissingCompileTimeError +method_override7_test/01: MissingCompileTimeError +method_override7_test/02: MissingCompileTimeError +method_override8_test/00: MissingCompileTimeError +method_override8_test/01: MissingCompileTimeError +mint_arithmetic_test: RuntimeError +mixin_black_listed_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError +mixin_forwarding_constructor4_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/01: MissingCompileTimeError +mixin_illegal_super_use_test/02: MissingCompileTimeError +mixin_illegal_super_use_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/04: MissingCompileTimeError +mixin_illegal_super_use_test/05: MissingCompileTimeError +mixin_illegal_super_use_test/06: MissingCompileTimeError +mixin_illegal_super_use_test/07: MissingCompileTimeError +mixin_illegal_super_use_test/08: MissingCompileTimeError +mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError +mixin_mixin2_test: RuntimeError +mixin_mixin3_test: RuntimeError +mixin_mixin4_test: RuntimeError +mixin_mixin5_test: RuntimeError +mixin_mixin6_test: RuntimeError +mixin_mixin7_test: RuntimeError +mixin_mixin_bound2_test: RuntimeError +mixin_mixin_bound_test: RuntimeError +mixin_mixin_test: RuntimeError +mixin_mixin_type_arguments_test: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +mixin_of_mixin_test/01: CompileTimeError +mixin_of_mixin_test/02: CompileTimeError +mixin_of_mixin_test/03: CompileTimeError +mixin_of_mixin_test/04: CompileTimeError +mixin_of_mixin_test/05: CompileTimeError +mixin_of_mixin_test/06: CompileTimeError +mixin_of_mixin_test/07: CompileTimeError +mixin_of_mixin_test/08: CompileTimeError +mixin_of_mixin_test/09: CompileTimeError +mixin_of_mixin_test/10: CompileTimeError +mixin_of_mixin_test/11: CompileTimeError +mixin_of_mixin_test/12: CompileTimeError +mixin_of_mixin_test/13: CompileTimeError +mixin_of_mixin_test/14: CompileTimeError +mixin_of_mixin_test/15: CompileTimeError +mixin_of_mixin_test/16: CompileTimeError +mixin_of_mixin_test/17: CompileTimeError +mixin_of_mixin_test/18: CompileTimeError +mixin_of_mixin_test/19: CompileTimeError +mixin_of_mixin_test/20: CompileTimeError +mixin_of_mixin_test/21: CompileTimeError +mixin_of_mixin_test/22: CompileTimeError +mixin_of_mixin_test/none: CompileTimeError +mixin_super_2_test: CompileTimeError +mixin_super_bound2_test/01: CompileTimeError +mixin_super_bound2_test/none: CompileTimeError +mixin_super_constructor_named_test/01: MissingCompileTimeError +mixin_super_constructor_positionals_test/01: MissingCompileTimeError +mixin_super_test: CompileTimeError +mixin_super_use_test: CompileTimeError +mixin_superclass_test: CompileTimeError +mixin_supertype_subclass2_test/01: CompileTimeError +mixin_supertype_subclass2_test/02: CompileTimeError +mixin_supertype_subclass2_test/03: CompileTimeError +mixin_supertype_subclass2_test/04: CompileTimeError +mixin_supertype_subclass2_test/05: CompileTimeError +mixin_supertype_subclass2_test/none: CompileTimeError +mixin_supertype_subclass3_test/01: CompileTimeError +mixin_supertype_subclass3_test/02: CompileTimeError +mixin_supertype_subclass3_test/03: CompileTimeError +mixin_supertype_subclass3_test/04: CompileTimeError +mixin_supertype_subclass3_test/05: CompileTimeError +mixin_supertype_subclass3_test/none: CompileTimeError +mixin_supertype_subclass4_test/01: CompileTimeError +mixin_supertype_subclass4_test/02: CompileTimeError +mixin_supertype_subclass4_test/03: CompileTimeError +mixin_supertype_subclass4_test/04: CompileTimeError +mixin_supertype_subclass4_test/05: CompileTimeError +mixin_supertype_subclass4_test/none: CompileTimeError +mixin_supertype_subclass_test/01: CompileTimeError +mixin_supertype_subclass_test/02: CompileTimeError +mixin_supertype_subclass_test/03: CompileTimeError +mixin_supertype_subclass_test/04: CompileTimeError +mixin_supertype_subclass_test/05: CompileTimeError +mixin_supertype_subclass_test/none: CompileTimeError +modulo_test: RuntimeError +multiline_newline_test/04: MissingCompileTimeError +multiline_newline_test/04r: MissingCompileTimeError +multiline_newline_test/05: MissingCompileTimeError +multiline_newline_test/05r: MissingCompileTimeError +multiline_newline_test/06: MissingCompileTimeError +multiline_newline_test/06r: MissingCompileTimeError +named_constructor_test/01: MissingRuntimeError +named_parameters_default_eq_test/02: MissingCompileTimeError +nan_identical_test: RuntimeError +nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +no_main_test/01: CompileTimeError +null_test/02: MissingCompileTimeError +null_test/03: MissingCompileTimeError +null_test/none: RuntimeError +number_identity2_test: RuntimeError +numbers_test: RuntimeError +override_field_method1_negative_test: Fail +override_field_method2_negative_test: Fail +override_field_method4_negative_test: Fail +override_field_method5_negative_test: Fail +override_field_test/01: MissingCompileTimeError +override_inheritance_mixed_test/01: MissingCompileTimeError +override_inheritance_mixed_test/02: MissingCompileTimeError +override_inheritance_mixed_test/03: MissingCompileTimeError +override_inheritance_mixed_test/04: MissingCompileTimeError +override_method_with_field_test/01: MissingCompileTimeError +private_super_constructor_test/01: MissingCompileTimeError +redirecting_constructor_initializer_test: RuntimeError +redirecting_factory_default_values_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/02: MissingCompileTimeError +redirecting_factory_infinite_steps_test/01: Fail +redirecting_factory_long_test: RuntimeError +redirecting_factory_reflection_test: RuntimeError +regress_13494_test: RuntimeError +regress_17382_test: RuntimeError +regress_20394_test/01: MissingCompileTimeError +regress_22936_test/01: RuntimeError +regress_22976_test/01: CompileTimeError +regress_22976_test/02: CompileTimeError +regress_22976_test/none: CompileTimeError +regress_24283_test: RuntimeError +regress_26133_test: RuntimeError # Issue 26429 +regress_27572_test: RuntimeError +regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant +regress_28217_test/01: MissingCompileTimeError +regress_28217_test/none: MissingCompileTimeError +regress_28255_test: RuntimeError +regress_29405_test: RuntimeError # Issue 29422 +setter_override_test/00: MissingCompileTimeError +setter_override_test/03: MissingCompileTimeError +stacktrace_demangle_ctors_test: RuntimeError +stacktrace_test: RuntimeError +static_getter_no_setter1_test/01: RuntimeError +static_getter_no_setter2_test/01: RuntimeError +static_getter_no_setter3_test/01: RuntimeError +super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. +super_test: RuntimeError +switch_bad_case_test/01: MissingCompileTimeError +switch_bad_case_test/02: MissingCompileTimeError +switch_case_test/00: MissingCompileTimeError +switch_case_test/01: MissingCompileTimeError +switch_case_test/02: MissingCompileTimeError +syntax_test/none: CompileTimeError +top_level_getter_no_setter1_test/01: RuntimeError +top_level_getter_no_setter2_test/01: RuntimeError +truncdiv_test: RuntimeError +try_catch_test/01: MissingCompileTimeError +type_check_const_function_typedef2_test/00: MissingCompileTimeError +type_parameter_test/01: Crash # Internal Error: Unexpected type variable in static context. +type_parameter_test/02: Crash # Internal Error: Unexpected type variable in static context. +type_parameter_test/03: Crash # Internal Error: Unexpected type variable in static context. +type_parameter_test/04: Crash # Internal Error: Unexpected type variable in static context. +type_parameter_test/05: Crash # Internal Error: Unexpected type variable in static context. +type_parameter_test/06: Crash # Internal Error: Unexpected type variable in static context. +type_parameter_test/none: Crash # Internal Error: Unexpected type variable in static context. +type_variable_bounds2_test/01: RuntimeError # Issue 12702 +type_variable_bounds2_test/04: RuntimeError # Issue 12702 +type_variable_bounds3_test/00: Fail # Issue 12702 +type_variable_bounds_test/02: Fail # Issue 12702 +type_variable_scope_test/03: Crash # Internal Error: Unexpected type variable in static context. -[ $compiler != dart2analyzer ] -switch_case_warn_test: SKIP # Analyzer only, see language_analyzer2.status +[ $compiler == dart2js && $checked && !$dart2js_with_kernel ] +async_return_types_test/nestedFuture: Fail # Issue 26429 +async_return_types_test/wrongTypeParameter: Fail # Issue 26429 +closure_type_test: Fail # Issue 12745 +default_factory2_test/01: Fail # Issue 14121 +malbounded_instantiation_test/01: Fail # Issue 12702 +malbounded_redirecting_factory2_test/02: Fail # Issue 12825 +malbounded_redirecting_factory2_test/03: Fail # Issue 12825 +malbounded_redirecting_factory_test/02: Fail # Issue 12825 +malbounded_redirecting_factory_test/03: Fail # Issue 12825 +malbounded_type_cast2_test: Fail # Issue 14121 +malbounded_type_cast_test: Fail # Issue 14121 +malbounded_type_test2_test: Fail # Issue 14121 +malbounded_type_test_test/03: Fail # Issue 14121 +malbounded_type_test_test/04: Fail # Issue 14121 +regress_26133_test: RuntimeError # Issue 26429 +regress_29405_test: Fail # Issue 29422 +type_variable_bounds2_test/01: Fail # Issue 12702 +type_variable_bounds2_test/04: Fail # Issue 12702 +type_variable_bounds2_test/06: Pass # Issue 12702 (pass for the wrong reasons). +type_variable_bounds3_test/00: Fail # Issue 12702 +type_variable_bounds_test/02: Fail # Issue 12702 -[ $compiler == dart2js && $dart2js_with_kernel && !$checked ] -assertion_initializer_const_error2_test/none: Pass +[ $compiler == dart2js && !$checked && $dart2js_with_kernel ] assertion_initializer_const_error2_test/*: CompileTimeError # Issue #31321 +assertion_initializer_const_error2_test/none: Pass + +[ $compiler == dart2js && !$checked && !$dart2js_with_kernel ] +assertion_test: RuntimeError +generic_test: RuntimeError, OK +issue13474_test: RuntimeError, OK +map_literal4_test: RuntimeError, OK # Checked mode required. +named_parameters_type_test/01: MissingRuntimeError, OK +named_parameters_type_test/02: MissingRuntimeError, OK +named_parameters_type_test/03: MissingRuntimeError, OK +positional_parameters_type_test/01: MissingRuntimeError, OK +positional_parameters_type_test/02: MissingRuntimeError, OK +type_checks_in_factory_method_test: RuntimeError # Issue 12746 + +[ $compiler == dart2js && !$checked && !$dart2js_with_kernel && $enable_asserts ] +assertion_test: RuntimeError # Issue 12748 + +[ $compiler == dart2js && !$checked && !$dart2js_with_kernel && $minified ] +f_bounded_quantification5_test: Fail, OK # Issue 12605 + +[ $compiler == dart2js && !$checked && $enable_asserts ] +bool_check_test: RuntimeError # Issue 29647 + +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +arithmetic_canonicalization_test: RuntimeError +assertion_initializer_const_error2_test/none: CompileTimeError +assertion_initializer_test: CompileTimeError +assertion_test: RuntimeError +async_await_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +async_star_cancel_while_paused_test: RuntimeError +bad_constructor_test/06: Crash # NoSuchMethodError: The getter 'iterator' was called on null. +bad_override_test/03: MissingCompileTimeError +bad_override_test/04: MissingCompileTimeError +bad_override_test/05: MissingCompileTimeError +bit_operations_test/01: RuntimeError +bit_operations_test/02: RuntimeError +bit_operations_test/03: RuntimeError +bit_operations_test/04: RuntimeError +bit_operations_test/none: RuntimeError +branch_canonicalization_test: RuntimeError +call_function_apply_test: RuntimeError +call_nonexistent_constructor_test/01: RuntimeError +canonical_const2_test: RuntimeError +canonical_const3_test: CompileTimeError +check_member_static_test/02: MissingCompileTimeError +class_cycle_test/02: MissingCompileTimeError +class_cycle_test/03: MissingCompileTimeError +closure_in_field_test/01: RuntimeError +closure_in_field_test/02: RuntimeError +conditional_import_string_test: RuntimeError +conditional_import_test: RuntimeError +config_import_corelib_test: RuntimeError +config_import_test: RuntimeError +const_error_multiply_initialized_test/02: MissingCompileTimeError +const_error_multiply_initialized_test/04: MissingCompileTimeError +const_evaluation_test/01: RuntimeError +const_factory_with_body_test/01: MissingCompileTimeError +const_instance_field_test/01: MissingCompileTimeError +const_map2_test/00: MissingCompileTimeError +const_map3_test/00: MissingCompileTimeError +const_switch2_test/01: MissingCompileTimeError +const_switch_test/02: RuntimeError +const_switch_test/04: RuntimeError +constants_test/05: MissingCompileTimeError +constructor2_test: RuntimeError +constructor3_test: RuntimeError +constructor5_test: RuntimeError +constructor6_test: RuntimeError +constructor_named_arguments_test/none: RuntimeError +constructor_redirect1_negative_test: Crash # Stack Overflow +constructor_redirect2_negative_test: Crash # Stack Overflow +constructor_redirect2_test/01: MissingCompileTimeError +constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). +cyclic_constructor_test/01: Crash # Stack Overflow +deferred_closurize_load_library_test: RuntimeError +deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_type_annotation_test/as_operation: RuntimeError +deferred_constraints_type_annotation_test/catch_check: RuntimeError +deferred_constraints_type_annotation_test/is_check: RuntimeError +deferred_inheritance_constraints_test/extends: MissingCompileTimeError +deferred_inheritance_constraints_test/implements: MissingCompileTimeError +deferred_inheritance_constraints_test/mixin: MissingCompileTimeError +deferred_load_constants_test/none: RuntimeError +deferred_load_library_wrong_args_test/01: MissingRuntimeError +deferred_not_loaded_check_test: RuntimeError +deferred_redirecting_factory_test: RuntimeError +double_int_to_string_test: RuntimeError +duplicate_export_negative_test: Fail +duplicate_implements_test/01: MissingCompileTimeError +duplicate_implements_test/02: MissingCompileTimeError +duplicate_implements_test/03: MissingCompileTimeError +duplicate_implements_test/04: MissingCompileTimeError +dynamic_prefix_core_test/01: RuntimeError +dynamic_prefix_core_test/none: RuntimeError +enum_mirror_test: RuntimeError +example_constructor_test: RuntimeError +expect_test: RuntimeError +external_test/10: MissingRuntimeError +external_test/13: MissingRuntimeError +external_test/20: MissingRuntimeError +factory_redirection_test/07: MissingCompileTimeError +fauxverride_test/03: MissingCompileTimeError +fauxverride_test/05: MissingCompileTimeError +field_increment_bailout_test: RuntimeError +field_initialization_order_test: RuntimeError +field_override3_test/00: MissingCompileTimeError +field_override3_test/01: MissingCompileTimeError +field_override3_test/02: MissingCompileTimeError +field_override3_test/03: MissingCompileTimeError +field_override4_test/02: MissingCompileTimeError +final_attempt_reinitialization_test/01: MissingCompileTimeError +final_attempt_reinitialization_test/02: MissingCompileTimeError +final_field_initialization_order_test: RuntimeError +generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. +generic_methods_type_expression_test/01: RuntimeError +generic_methods_type_expression_test/03: RuntimeError +generic_methods_type_expression_test/none: RuntimeError +generic_test: RuntimeError +getter_override2_test/02: MissingCompileTimeError +getter_override_test/00: MissingCompileTimeError +getter_override_test/01: MissingCompileTimeError +getter_override_test/02: MissingCompileTimeError +identical_closure2_test: RuntimeError +if_null_assignment_behavior_test/14: RuntimeError +infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +infinity_test: RuntimeError +instance_creation_in_function_annotation_test: RuntimeError +integer_division_by_zero_test: RuntimeError +internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. +invocation_mirror2_test: RuntimeError +invocation_mirror_empty_arguments_test: RuntimeError +invocation_mirror_invoke_on2_test: RuntimeError +invocation_mirror_invoke_on_test: RuntimeError +invocation_mirror_test: RuntimeError +issue13474_test: RuntimeError +issue21079_test: RuntimeError +left_shift_test: RuntimeError +library_env_test/has_mirror_support: RuntimeError +library_env_test/has_no_html_support: RuntimeError +library_env_test/has_no_io_support: RuntimeError +list_literal4_test: RuntimeError +main_not_a_function_test/01: CompileTimeError +many_overridden_no_such_method_test: RuntimeError +map_literal4_test: RuntimeError +method_name_test: CompileTimeError +method_override5_test: RuntimeError +method_override7_test/00: MissingCompileTimeError +method_override7_test/01: MissingCompileTimeError +method_override7_test/02: MissingCompileTimeError +method_override8_test/00: MissingCompileTimeError +method_override8_test/01: MissingCompileTimeError +mint_arithmetic_test: RuntimeError +mixin_black_listed_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError +mixin_forwarding_constructor4_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/01: MissingCompileTimeError +mixin_illegal_super_use_test/02: MissingCompileTimeError +mixin_illegal_super_use_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/04: MissingCompileTimeError +mixin_illegal_super_use_test/05: MissingCompileTimeError +mixin_illegal_super_use_test/06: MissingCompileTimeError +mixin_illegal_super_use_test/07: MissingCompileTimeError +mixin_illegal_super_use_test/08: MissingCompileTimeError +mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError +mixin_mixin2_test: RuntimeError +mixin_mixin3_test: RuntimeError +mixin_mixin4_test: RuntimeError +mixin_mixin5_test: RuntimeError +mixin_mixin6_test: RuntimeError +mixin_mixin7_test: RuntimeError +mixin_mixin_bound2_test: RuntimeError +mixin_mixin_bound_test: RuntimeError +mixin_mixin_test: RuntimeError +mixin_mixin_type_arguments_test: RuntimeError +mixin_of_mixin_test/01: CompileTimeError +mixin_of_mixin_test/02: CompileTimeError +mixin_of_mixin_test/03: CompileTimeError +mixin_of_mixin_test/04: CompileTimeError +mixin_of_mixin_test/05: CompileTimeError +mixin_of_mixin_test/06: CompileTimeError +mixin_of_mixin_test/07: CompileTimeError +mixin_of_mixin_test/08: CompileTimeError +mixin_of_mixin_test/09: CompileTimeError +mixin_of_mixin_test/10: CompileTimeError +mixin_of_mixin_test/11: CompileTimeError +mixin_of_mixin_test/12: CompileTimeError +mixin_of_mixin_test/13: CompileTimeError +mixin_of_mixin_test/14: CompileTimeError +mixin_of_mixin_test/15: CompileTimeError +mixin_of_mixin_test/16: CompileTimeError +mixin_of_mixin_test/17: CompileTimeError +mixin_of_mixin_test/18: CompileTimeError +mixin_of_mixin_test/19: CompileTimeError +mixin_of_mixin_test/20: CompileTimeError +mixin_of_mixin_test/21: CompileTimeError +mixin_of_mixin_test/22: CompileTimeError +mixin_of_mixin_test/none: CompileTimeError +mixin_super_2_test: CompileTimeError +mixin_super_bound2_test/01: CompileTimeError +mixin_super_bound2_test/none: CompileTimeError +mixin_super_constructor_named_test/01: MissingCompileTimeError +mixin_super_constructor_positionals_test/01: MissingCompileTimeError +mixin_super_test: CompileTimeError +mixin_super_use_test: CompileTimeError +mixin_superclass_test: CompileTimeError +mixin_supertype_subclass2_test/01: CompileTimeError +mixin_supertype_subclass2_test/02: CompileTimeError +mixin_supertype_subclass2_test/03: CompileTimeError +mixin_supertype_subclass2_test/04: CompileTimeError +mixin_supertype_subclass2_test/05: CompileTimeError +mixin_supertype_subclass2_test/none: CompileTimeError +mixin_supertype_subclass3_test/01: CompileTimeError +mixin_supertype_subclass3_test/02: CompileTimeError +mixin_supertype_subclass3_test/03: CompileTimeError +mixin_supertype_subclass3_test/04: CompileTimeError +mixin_supertype_subclass3_test/05: CompileTimeError +mixin_supertype_subclass3_test/none: CompileTimeError +mixin_supertype_subclass4_test/01: CompileTimeError +mixin_supertype_subclass4_test/02: CompileTimeError +mixin_supertype_subclass4_test/03: CompileTimeError +mixin_supertype_subclass4_test/04: CompileTimeError +mixin_supertype_subclass4_test/05: CompileTimeError +mixin_supertype_subclass4_test/none: CompileTimeError +mixin_supertype_subclass_test/01: CompileTimeError +mixin_supertype_subclass_test/02: CompileTimeError +mixin_supertype_subclass_test/03: CompileTimeError +mixin_supertype_subclass_test/04: CompileTimeError +mixin_supertype_subclass_test/05: CompileTimeError +mixin_supertype_subclass_test/none: CompileTimeError +modulo_test: RuntimeError +multiline_newline_test/04: MissingCompileTimeError +multiline_newline_test/04r: MissingCompileTimeError +multiline_newline_test/05: MissingCompileTimeError +multiline_newline_test/05r: MissingCompileTimeError +multiline_newline_test/06: MissingCompileTimeError +multiline_newline_test/06r: MissingCompileTimeError +named_constructor_test/01: MissingRuntimeError +named_parameters_default_eq_test/02: MissingCompileTimeError +named_parameters_type_test/01: MissingRuntimeError +named_parameters_type_test/02: MissingRuntimeError +named_parameters_type_test/03: MissingRuntimeError +nan_identical_test: RuntimeError +nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +no_main_test/01: CompileTimeError +no_such_method_test: RuntimeError +null_test/02: MissingCompileTimeError +null_test/03: MissingCompileTimeError +null_test/none: RuntimeError +number_identity2_test: RuntimeError +numbers_test: RuntimeError +overridden_no_such_method_test: RuntimeError +override_field_method1_negative_test: Fail +override_field_method2_negative_test: Fail +override_field_method4_negative_test: Fail +override_field_method5_negative_test: Fail +override_field_test/01: MissingCompileTimeError +override_inheritance_mixed_test/01: MissingCompileTimeError +override_inheritance_mixed_test/02: MissingCompileTimeError +override_inheritance_mixed_test/03: MissingCompileTimeError +override_inheritance_mixed_test/04: MissingCompileTimeError +override_method_with_field_test/01: MissingCompileTimeError +positional_parameters_type_test/01: MissingRuntimeError +positional_parameters_type_test/02: MissingRuntimeError +private_super_constructor_test/01: MissingCompileTimeError +redirecting_constructor_initializer_test: RuntimeError +redirecting_factory_default_values_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/02: MissingCompileTimeError +redirecting_factory_long_test: RuntimeError +redirecting_factory_reflection_test: RuntimeError +regress_13494_test: RuntimeError +regress_17382_test: RuntimeError +regress_20394_test/01: MissingCompileTimeError +regress_22936_test/01: RuntimeError +regress_22976_test/01: CompileTimeError +regress_22976_test/02: CompileTimeError +regress_22976_test/none: CompileTimeError +regress_24283_test: RuntimeError +regress_27572_test: RuntimeError +regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant +regress_28217_test/01: MissingCompileTimeError +regress_28217_test/none: MissingCompileTimeError +regress_28255_test: RuntimeError +setter_override_test/00: MissingCompileTimeError +setter_override_test/03: MissingCompileTimeError +stacktrace_demangle_ctors_test: RuntimeError +stacktrace_test: RuntimeError +static_getter_no_setter1_test/01: RuntimeError +static_getter_no_setter2_test/01: RuntimeError +static_getter_no_setter3_test/01: RuntimeError +super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. +super_test: RuntimeError +switch_bad_case_test/01: MissingCompileTimeError +switch_bad_case_test/02: MissingCompileTimeError +switch_case_test/00: MissingCompileTimeError +switch_case_test/01: MissingCompileTimeError +switch_case_test/02: MissingCompileTimeError +syntax_test/none: CompileTimeError +top_level_getter_no_setter1_test/01: RuntimeError +top_level_getter_no_setter2_test/01: RuntimeError +truncdiv_test: RuntimeError +try_catch_test/01: MissingCompileTimeError +type_checks_in_factory_method_test: RuntimeError [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] arithmetic_canonicalization_test: RuntimeError @@ -980,703 +1463,213 @@ truncdiv_test: RuntimeError try_catch_test/01: MissingCompileTimeError type_checks_in_factory_method_test: RuntimeError -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -arithmetic_canonicalization_test: RuntimeError -assertion_initializer_const_error2_test/none: CompileTimeError -assertion_initializer_test: CompileTimeError -assertion_test: RuntimeError -async_await_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -async_star_cancel_while_paused_test: RuntimeError -bad_constructor_test/06: Crash # NoSuchMethodError: The getter 'iterator' was called on null. -bad_override_test/03: MissingCompileTimeError -bad_override_test/04: MissingCompileTimeError -bad_override_test/05: MissingCompileTimeError -bit_operations_test/01: RuntimeError -bit_operations_test/02: RuntimeError -bit_operations_test/03: RuntimeError -bit_operations_test/04: RuntimeError -bit_operations_test/none: RuntimeError -branch_canonicalization_test: RuntimeError -call_function_apply_test: RuntimeError -call_nonexistent_constructor_test/01: RuntimeError -canonical_const2_test: RuntimeError -canonical_const3_test: CompileTimeError -check_member_static_test/02: MissingCompileTimeError -class_cycle_test/02: MissingCompileTimeError -class_cycle_test/03: MissingCompileTimeError -closure_in_field_test/01: RuntimeError -closure_in_field_test/02: RuntimeError -conditional_import_string_test: RuntimeError -conditional_import_test: RuntimeError -config_import_corelib_test: RuntimeError -config_import_test: RuntimeError -const_error_multiply_initialized_test/02: MissingCompileTimeError -const_error_multiply_initialized_test/04: MissingCompileTimeError -const_evaluation_test/01: RuntimeError -const_factory_with_body_test/01: MissingCompileTimeError -const_instance_field_test/01: MissingCompileTimeError -const_map2_test/00: MissingCompileTimeError -const_map3_test/00: MissingCompileTimeError -const_switch2_test/01: MissingCompileTimeError -const_switch_test/02: RuntimeError -const_switch_test/04: RuntimeError -constants_test/05: MissingCompileTimeError -constructor2_test: RuntimeError -constructor3_test: RuntimeError -constructor5_test: RuntimeError -constructor6_test: RuntimeError -constructor_named_arguments_test/none: RuntimeError -constructor_redirect1_negative_test: Crash # Stack Overflow -constructor_redirect2_negative_test: Crash # Stack Overflow -constructor_redirect2_test/01: MissingCompileTimeError -constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). -cyclic_constructor_test/01: Crash # Stack Overflow -deferred_closurize_load_library_test: RuntimeError -deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_type_annotation_test/as_operation: RuntimeError -deferred_constraints_type_annotation_test/catch_check: RuntimeError -deferred_constraints_type_annotation_test/is_check: RuntimeError -deferred_inheritance_constraints_test/extends: MissingCompileTimeError -deferred_inheritance_constraints_test/implements: MissingCompileTimeError -deferred_inheritance_constraints_test/mixin: MissingCompileTimeError -deferred_load_constants_test/none: RuntimeError -deferred_load_library_wrong_args_test/01: MissingRuntimeError -deferred_not_loaded_check_test: RuntimeError -deferred_redirecting_factory_test: RuntimeError -double_int_to_string_test: RuntimeError -duplicate_export_negative_test: Fail -duplicate_implements_test/01: MissingCompileTimeError -duplicate_implements_test/02: MissingCompileTimeError -duplicate_implements_test/03: MissingCompileTimeError -duplicate_implements_test/04: MissingCompileTimeError -dynamic_prefix_core_test/01: RuntimeError -dynamic_prefix_core_test/none: RuntimeError -enum_mirror_test: RuntimeError -example_constructor_test: RuntimeError -expect_test: RuntimeError -external_test/10: MissingRuntimeError -external_test/13: MissingRuntimeError -external_test/20: MissingRuntimeError -factory_redirection_test/07: MissingCompileTimeError -fauxverride_test/03: MissingCompileTimeError -fauxverride_test/05: MissingCompileTimeError -field_increment_bailout_test: RuntimeError -field_initialization_order_test: RuntimeError -field_override3_test/00: MissingCompileTimeError -field_override3_test/01: MissingCompileTimeError -field_override3_test/02: MissingCompileTimeError -field_override3_test/03: MissingCompileTimeError -field_override4_test/02: MissingCompileTimeError -final_attempt_reinitialization_test/01: MissingCompileTimeError -final_attempt_reinitialization_test/02: MissingCompileTimeError -final_field_initialization_order_test: RuntimeError -generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. -generic_methods_type_expression_test/01: RuntimeError -generic_methods_type_expression_test/03: RuntimeError -generic_methods_type_expression_test/none: RuntimeError -generic_test: RuntimeError -getter_override2_test/02: MissingCompileTimeError -getter_override_test/00: MissingCompileTimeError -getter_override_test/01: MissingCompileTimeError -getter_override_test/02: MissingCompileTimeError -identical_closure2_test: RuntimeError -if_null_assignment_behavior_test/14: RuntimeError -infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -infinity_test: RuntimeError -instance_creation_in_function_annotation_test: RuntimeError -integer_division_by_zero_test: RuntimeError -internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. -invocation_mirror2_test: RuntimeError -invocation_mirror_empty_arguments_test: RuntimeError -invocation_mirror_invoke_on2_test: RuntimeError -invocation_mirror_invoke_on_test: RuntimeError -invocation_mirror_test: RuntimeError -issue13474_test: RuntimeError -issue21079_test: RuntimeError -left_shift_test: RuntimeError -library_env_test/has_mirror_support: RuntimeError -library_env_test/has_no_html_support: RuntimeError -library_env_test/has_no_io_support: RuntimeError -list_literal4_test: RuntimeError -main_not_a_function_test/01: CompileTimeError -many_overridden_no_such_method_test: RuntimeError -map_literal4_test: RuntimeError -method_name_test: CompileTimeError -method_override5_test: RuntimeError -method_override7_test/00: MissingCompileTimeError -method_override7_test/01: MissingCompileTimeError -method_override7_test/02: MissingCompileTimeError -method_override8_test/00: MissingCompileTimeError -method_override8_test/01: MissingCompileTimeError -mint_arithmetic_test: RuntimeError -mixin_black_listed_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError -mixin_forwarding_constructor4_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/01: MissingCompileTimeError -mixin_illegal_super_use_test/02: MissingCompileTimeError -mixin_illegal_super_use_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/04: MissingCompileTimeError -mixin_illegal_super_use_test/05: MissingCompileTimeError -mixin_illegal_super_use_test/06: MissingCompileTimeError -mixin_illegal_super_use_test/07: MissingCompileTimeError -mixin_illegal_super_use_test/08: MissingCompileTimeError -mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError -mixin_mixin2_test: RuntimeError -mixin_mixin3_test: RuntimeError -mixin_mixin4_test: RuntimeError -mixin_mixin5_test: RuntimeError -mixin_mixin6_test: RuntimeError -mixin_mixin7_test: RuntimeError -mixin_mixin_bound2_test: RuntimeError -mixin_mixin_bound_test: RuntimeError -mixin_mixin_test: RuntimeError -mixin_mixin_type_arguments_test: RuntimeError -mixin_of_mixin_test/01: CompileTimeError -mixin_of_mixin_test/02: CompileTimeError -mixin_of_mixin_test/03: CompileTimeError -mixin_of_mixin_test/04: CompileTimeError -mixin_of_mixin_test/05: CompileTimeError -mixin_of_mixin_test/06: CompileTimeError -mixin_of_mixin_test/07: CompileTimeError -mixin_of_mixin_test/08: CompileTimeError -mixin_of_mixin_test/09: CompileTimeError -mixin_of_mixin_test/10: CompileTimeError -mixin_of_mixin_test/11: CompileTimeError -mixin_of_mixin_test/12: CompileTimeError -mixin_of_mixin_test/13: CompileTimeError -mixin_of_mixin_test/14: CompileTimeError -mixin_of_mixin_test/15: CompileTimeError -mixin_of_mixin_test/16: CompileTimeError -mixin_of_mixin_test/17: CompileTimeError -mixin_of_mixin_test/18: CompileTimeError -mixin_of_mixin_test/19: CompileTimeError -mixin_of_mixin_test/20: CompileTimeError -mixin_of_mixin_test/21: CompileTimeError -mixin_of_mixin_test/22: CompileTimeError -mixin_of_mixin_test/none: CompileTimeError -mixin_super_2_test: CompileTimeError -mixin_super_bound2_test/01: CompileTimeError -mixin_super_bound2_test/none: CompileTimeError -mixin_super_constructor_named_test/01: MissingCompileTimeError -mixin_super_constructor_positionals_test/01: MissingCompileTimeError -mixin_super_test: CompileTimeError -mixin_super_use_test: CompileTimeError -mixin_superclass_test: CompileTimeError -mixin_supertype_subclass2_test/01: CompileTimeError -mixin_supertype_subclass2_test/02: CompileTimeError -mixin_supertype_subclass2_test/03: CompileTimeError -mixin_supertype_subclass2_test/04: CompileTimeError -mixin_supertype_subclass2_test/05: CompileTimeError -mixin_supertype_subclass2_test/none: CompileTimeError -mixin_supertype_subclass3_test/01: CompileTimeError -mixin_supertype_subclass3_test/02: CompileTimeError -mixin_supertype_subclass3_test/03: CompileTimeError -mixin_supertype_subclass3_test/04: CompileTimeError -mixin_supertype_subclass3_test/05: CompileTimeError -mixin_supertype_subclass3_test/none: CompileTimeError -mixin_supertype_subclass4_test/01: CompileTimeError -mixin_supertype_subclass4_test/02: CompileTimeError -mixin_supertype_subclass4_test/03: CompileTimeError -mixin_supertype_subclass4_test/04: CompileTimeError -mixin_supertype_subclass4_test/05: CompileTimeError -mixin_supertype_subclass4_test/none: CompileTimeError -mixin_supertype_subclass_test/01: CompileTimeError -mixin_supertype_subclass_test/02: CompileTimeError -mixin_supertype_subclass_test/03: CompileTimeError -mixin_supertype_subclass_test/04: CompileTimeError -mixin_supertype_subclass_test/05: CompileTimeError -mixin_supertype_subclass_test/none: CompileTimeError -modulo_test: RuntimeError -multiline_newline_test/04: MissingCompileTimeError -multiline_newline_test/04r: MissingCompileTimeError -multiline_newline_test/05: MissingCompileTimeError -multiline_newline_test/05r: MissingCompileTimeError -multiline_newline_test/06: MissingCompileTimeError -multiline_newline_test/06r: MissingCompileTimeError -named_constructor_test/01: MissingRuntimeError -named_parameters_default_eq_test/02: MissingCompileTimeError -named_parameters_type_test/01: MissingRuntimeError -named_parameters_type_test/02: MissingRuntimeError -named_parameters_type_test/03: MissingRuntimeError -nan_identical_test: RuntimeError -nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -no_main_test/01: CompileTimeError -no_such_method_test: RuntimeError -null_test/02: MissingCompileTimeError -null_test/03: MissingCompileTimeError -null_test/none: RuntimeError -number_identity2_test: RuntimeError -numbers_test: RuntimeError -overridden_no_such_method_test: RuntimeError -override_field_method1_negative_test: Fail -override_field_method2_negative_test: Fail -override_field_method4_negative_test: Fail -override_field_method5_negative_test: Fail -override_field_test/01: MissingCompileTimeError -override_inheritance_mixed_test/01: MissingCompileTimeError -override_inheritance_mixed_test/02: MissingCompileTimeError -override_inheritance_mixed_test/03: MissingCompileTimeError -override_inheritance_mixed_test/04: MissingCompileTimeError -override_method_with_field_test/01: MissingCompileTimeError -positional_parameters_type_test/01: MissingRuntimeError -positional_parameters_type_test/02: MissingRuntimeError -private_super_constructor_test/01: MissingCompileTimeError -redirecting_constructor_initializer_test: RuntimeError -redirecting_factory_default_values_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/02: MissingCompileTimeError -redirecting_factory_long_test: RuntimeError -redirecting_factory_reflection_test: RuntimeError -regress_13494_test: RuntimeError -regress_17382_test: RuntimeError -regress_20394_test/01: MissingCompileTimeError -regress_22936_test/01: RuntimeError -regress_22976_test/01: CompileTimeError -regress_22976_test/02: CompileTimeError -regress_22976_test/none: CompileTimeError -regress_24283_test: RuntimeError -regress_27572_test: RuntimeError -regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant -regress_28217_test/01: MissingCompileTimeError -regress_28217_test/none: MissingCompileTimeError -regress_28255_test: RuntimeError -setter_override_test/00: MissingCompileTimeError -setter_override_test/03: MissingCompileTimeError -stacktrace_demangle_ctors_test: RuntimeError -stacktrace_test: RuntimeError -static_getter_no_setter1_test/01: RuntimeError -static_getter_no_setter2_test/01: RuntimeError -static_getter_no_setter3_test/01: RuntimeError -super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. -super_test: RuntimeError -switch_bad_case_test/01: MissingCompileTimeError -switch_bad_case_test/02: MissingCompileTimeError -switch_case_test/00: MissingCompileTimeError -switch_case_test/01: MissingCompileTimeError -switch_case_test/02: MissingCompileTimeError -syntax_test/none: CompileTimeError -top_level_getter_no_setter1_test/01: RuntimeError -top_level_getter_no_setter2_test/01: RuntimeError -truncdiv_test: RuntimeError -try_catch_test/01: MissingCompileTimeError -type_checks_in_factory_method_test: RuntimeError +[ $compiler == dart2js && !$dart2js_with_kernel ] +accessor_conflict_export2_test: Crash # Issue 25626 +accessor_conflict_export_test: Crash # Issue 25626 +accessor_conflict_import2_test: RuntimeError # Issue 25626 +accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25626 +accessor_conflict_import_prefixed_test: RuntimeError # Issue 25626 +accessor_conflict_import_test: RuntimeError # Issue 25626 +assertion_initializer_const_error2_test/*: Crash +assertion_initializer_const_error2_test/none: Pass +assertion_initializer_const_function_error_test/01: Crash +assertion_initializer_const_function_test/01: CompileTimeError +async_star_cancel_while_paused_test: RuntimeError # Issue 22853 +bad_constructor_test/05: CompileTimeError # Issue 13639 +bad_typedef_test/00: Crash # Issue 28214 +bit_operations_test: RuntimeError, OK # Issue 1533 +branch_canonicalization_test: RuntimeError # Issue 638. +call_function_apply_test: RuntimeError # Issue 23873 +canonical_const2_test: RuntimeError, OK # Issue 1533 +closure_in_field_test/01: RuntimeError # Issue 30467 +closure_in_field_test/02: RuntimeError # Issue 30467 +const_dynamic_type_literal_test/02: CompileTimeError # Issue 23009 +const_dynamic_type_literal_test/03: CompileTimeError # Issue 23009 +const_switch_test/02: RuntimeError # Issue 17960 +const_switch_test/04: RuntimeError # Issue 17960 +constructor_duplicate_final_test/01: Fail # Issue 13363 +constructor_duplicate_final_test/02: Fail # Issue 13363 +constructor_named_arguments_test/01: CompileTimeError # Issue 25225 +deferred_not_loaded_check_test: Fail # Issue 27577 +double_int_to_string_test: RuntimeError # Issue 1533 +duplicate_part_test/01: MissingCompileTimeError # Issue 27517 +enum_test: Fail # Issue 28340 +expect_test: RuntimeError, OK # Issue 13080 +external_test/10: CompileTimeError # Issue 12887 +external_test/13: CompileTimeError # Issue 12887 +external_test/20: CompileTimeError # Issue 12887 +final_attempt_reinitialization_test.dart: Skip # Issue 29659 +full_stacktrace1_test: Pass, RuntimeError # Issue 12698 +full_stacktrace2_test: Pass, RuntimeError # Issue 12698 +full_stacktrace3_test: Pass, RuntimeError # Issue 12698 +generic_field_mixin4_test: Crash # Issue 18651 +generic_field_mixin5_test: Crash # Issue 18651 +generic_function_typedef2_test/00: Crash # Issue 28214 +generic_function_typedef2_test/01: Crash # Issue 28214 +generic_function_typedef2_test/02: Crash # Issue 28214 +generic_function_typedef2_test/03: Crash # Issue 28214 +generic_function_typedef2_test/05: Crash # Issue 28214 +generic_function_typedef2_test/06: Crash # Issue 28214 +getter_setter_in_lib_test: Fail # Issue 23288 +identical_closure2_test: RuntimeError # Issue 1533, Issue 12596 +if_null_assignment_behavior_test/13: Crash # Issue 23491 +if_null_assignment_behavior_test/14: Crash # Issue 23491 +infinity_test: RuntimeError # Issue 4984 +integer_division_by_zero_test: RuntimeError # Issue 8301 +invocation_mirror2_test: RuntimeError # Issue 6490 (wrong retval). +invocation_mirror_empty_arguments_test: Fail # Issue 24331 +left_shift_test: RuntimeError # Issue 1533 +library_env_test/has_no_html_support: RuntimeError, OK # The following tests are supposed to fail. In testing-mode, dart2js supports all dart:X libraries (because it uses '--categories=all'). +library_env_test/has_no_io_support: RuntimeError, OK # The following tests are supposed to fail. In testing-mode, dart2js supports all dart:X libraries (because it uses '--categories=all'). +library_env_test/has_no_mirror_support: RuntimeError, OK # The following tests are supposed to fail. In testing-mode, dart2js supports all dart:X libraries (because it uses '--categories=all'). +list_literal4_test: RuntimeError # Issue 12890 +malformed_test/none: Fail # Expect failure in lib/_internal/js_runtime/lib/preambles/d8.js +method_name_test: Fail # issue 25574 +method_override5_test: RuntimeError # Issue 12809 +mint_arithmetic_test: RuntimeError # Issue 1533 +mixin_forwarding_constructor4_test/01: MissingCompileTimeError # Issue 15101 +mixin_forwarding_constructor4_test/02: MissingCompileTimeError # Issue 15101 +mixin_forwarding_constructor4_test/03: MissingCompileTimeError # Issue 15101 +mixin_mixin2_test: RuntimeError # Issue 13109. +mixin_mixin3_test: RuntimeError # Issue 13109. +mixin_mixin_type_arguments_test: RuntimeError # Issue 29587 +mixin_of_mixin_test: CompileTimeError # Issue 23773 +mixin_super_2_test: CompileTimeError # Issue 23773 +mixin_super_bound2_test: CompileTimeError # Issue 23773 +mixin_super_constructor_named_test/01: Fail # Issue 15101 +mixin_super_constructor_positionals_test/01: Fail # Issue 15101 +mixin_super_test: CompileTimeError # Issue 23773 +mixin_super_use_test: CompileTimeError # Issue 23773 +mixin_superclass_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass2_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass3_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass4_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass_test: CompileTimeError # Issue 23773 +modulo_test: RuntimeError # Issue 15246 +multiline_newline_test/01: CompileTimeError # Issue 23888 +multiline_newline_test/01r: CompileTimeError # Issue 23888 +multiline_newline_test/02: CompileTimeError # Issue 23888 +multiline_newline_test/02r: CompileTimeError # Issue 23888 +multiline_newline_test/03: CompileTimeError # Issue 23888 +multiline_newline_test/03r: CompileTimeError # Issue 23888 +multiline_newline_test/04: MissingCompileTimeError # Issue 23888 +multiline_newline_test/04r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/05: MissingCompileTimeError # Issue 23888 +multiline_newline_test/05r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/06: MissingCompileTimeError # Issue 23888 +multiline_newline_test/06r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/none: RuntimeError # Issue 23888 +nan_identical_test: Fail # Issue 11551 +not_enough_positional_arguments_test/01: CompileTimeError # Issue 12838 +not_enough_positional_arguments_test/02: CompileTimeError # Issue 12838 +not_enough_positional_arguments_test/05: CompileTimeError # Issue 12838 +number_identity2_test: RuntimeError # Issue 12596 +numbers_test: RuntimeError, OK # Issue 1533 +override_inheritance_mixed_test/08: Fail # Issue 18124 +override_inheritance_mixed_test/09: Fail # Issue 18124 +ref_before_declaration_test/00: MissingCompileTimeError +ref_before_declaration_test/01: MissingCompileTimeError +ref_before_declaration_test/02: MissingCompileTimeError +ref_before_declaration_test/03: MissingCompileTimeError +ref_before_declaration_test/04: MissingCompileTimeError +ref_before_declaration_test/05: MissingCompileTimeError +ref_before_declaration_test/06: MissingCompileTimeError +regress_22976_test: CompileTimeError # Issue 23132 +regress_24283_test: RuntimeError # Issue 1533 +regress_28341_test: Fail # Issue 28340 +regress_29481_test: Crash # Issue 29754 +scope_variable_test/01: MissingCompileTimeError # Issue 13016 +setter4_test: CompileTimeError # issue 13639 +stacktrace_demangle_ctors_test: Fail # dart2js stack traces are not always compliant. +stacktrace_rethrow_error_test: Pass, RuntimeError # Issue 12698 +stacktrace_rethrow_nonerror_test: Pass, RuntimeError # Issue 12698 +stacktrace_test: Pass, RuntimeError # # Issue 12698 +symbol_literal_test/*: Fail # Issue 21825 +syntax_test/none: CompileTimeError # Issue #30176. +truncdiv_test: RuntimeError # Issue 15246 +try_catch_on_syntax_test/10: Fail # Issue 19823 +try_catch_on_syntax_test/11: Fail # Issue 19823 +type_variable_conflict_test/01: Fail # Issue 13702 +type_variable_conflict_test/02: Fail # Issue 13702 +type_variable_conflict_test/03: Fail # Issue 13702 +type_variable_conflict_test/04: Fail # Issue 13702 +type_variable_conflict_test/05: Fail # Issue 13702 +type_variable_conflict_test/06: Fail # Issue 13702 -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -arithmetic_canonicalization_test: RuntimeError -assertion_initializer_const_function_test/01: RuntimeError -assertion_initializer_test: CompileTimeError -assign_static_type_test/01: Fail -assign_static_type_test/02: MissingCompileTimeError -async_await_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -async_return_types_test/nestedFuture: Fail # Issue 26429 -async_return_types_test/wrongTypeParameter: Fail # Issue 26429 -async_star_cancel_while_paused_test: RuntimeError -bad_constructor_test/06: Crash # NoSuchMethodError: The getter 'iterator' was called on null. -bad_override_test/03: MissingCompileTimeError -bad_override_test/04: MissingCompileTimeError -bad_override_test/05: MissingCompileTimeError -bit_operations_test/01: RuntimeError -bit_operations_test/02: RuntimeError -bit_operations_test/03: RuntimeError -bit_operations_test/04: RuntimeError -bit_operations_test/none: RuntimeError -branch_canonicalization_test: RuntimeError -call_function_apply_test: RuntimeError -call_nonexistent_constructor_test/01: RuntimeError -canonical_const2_test: RuntimeError -canonical_const3_test: CompileTimeError -check_member_static_test/02: MissingCompileTimeError -class_cycle_test/02: MissingCompileTimeError -class_cycle_test/03: MissingCompileTimeError -closure_in_field_test/01: RuntimeError -closure_in_field_test/02: RuntimeError -closure_type_test/01: RuntimeError # Issue 12745 -closure_type_test/none: RuntimeError # Issue 12745 -compile_time_constant_checked2_test/01: MissingCompileTimeError -compile_time_constant_checked2_test/02: MissingCompileTimeError -compile_time_constant_checked2_test/03: MissingCompileTimeError -compile_time_constant_checked2_test/04: MissingCompileTimeError -compile_time_constant_checked2_test/05: MissingCompileTimeError -compile_time_constant_checked2_test/06: MissingCompileTimeError -compile_time_constant_checked3_test/01: MissingCompileTimeError -compile_time_constant_checked3_test/02: MissingCompileTimeError -compile_time_constant_checked3_test/03: MissingCompileTimeError -compile_time_constant_checked3_test/04: MissingCompileTimeError -compile_time_constant_checked3_test/05: MissingCompileTimeError -compile_time_constant_checked3_test/06: MissingCompileTimeError -compile_time_constant_checked4_test/01: MissingCompileTimeError -compile_time_constant_checked4_test/02: MissingCompileTimeError -compile_time_constant_checked4_test/03: MissingCompileTimeError -compile_time_constant_checked5_test/03: MissingCompileTimeError -compile_time_constant_checked5_test/04: MissingCompileTimeError -compile_time_constant_checked5_test/08: MissingCompileTimeError -compile_time_constant_checked5_test/09: MissingCompileTimeError -compile_time_constant_checked5_test/13: MissingCompileTimeError -compile_time_constant_checked5_test/14: MissingCompileTimeError -compile_time_constant_checked5_test/18: MissingCompileTimeError -compile_time_constant_checked5_test/19: MissingCompileTimeError -compile_time_constant_checked_test/01: Fail -compile_time_constant_checked_test/02: MissingCompileTimeError -compile_time_constant_checked_test/03: Fail -conditional_import_string_test: RuntimeError -conditional_import_test: RuntimeError -config_import_corelib_test: RuntimeError -config_import_test: RuntimeError -const_constructor2_test/13: MissingCompileTimeError -const_constructor2_test/14: MissingCompileTimeError -const_constructor2_test/15: MissingCompileTimeError -const_constructor2_test/16: MissingCompileTimeError -const_constructor2_test/17: MissingCompileTimeError -const_constructor2_test/20: MissingCompileTimeError -const_constructor2_test/22: MissingCompileTimeError -const_constructor2_test/24: MissingCompileTimeError -const_constructor3_test/02: MissingCompileTimeError -const_constructor3_test/04: MissingCompileTimeError -const_error_multiply_initialized_test/02: MissingCompileTimeError -const_error_multiply_initialized_test/04: MissingCompileTimeError -const_evaluation_test/01: RuntimeError -const_factory_with_body_test/01: MissingCompileTimeError -const_init2_test/02: MissingCompileTimeError -const_instance_field_test/01: MissingCompileTimeError -const_map2_test/00: MissingCompileTimeError -const_map3_test/00: MissingCompileTimeError -const_switch2_test/01: MissingCompileTimeError -const_switch_test/02: RuntimeError -const_switch_test/04: RuntimeError -constants_test/05: MissingCompileTimeError -constructor2_test: RuntimeError -constructor3_test: RuntimeError -constructor5_test: RuntimeError -constructor6_test: RuntimeError -constructor_named_arguments_test/none: RuntimeError -constructor_redirect1_negative_test: Crash # Issue 30856 -constructor_redirect2_negative_test: Crash # Issue 30856 -constructor_redirect2_test/01: MissingCompileTimeError -constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). -cyclic_constructor_test/01: Crash # Issue 30856 -deferred_closurize_load_library_test: RuntimeError -deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_type_annotation_test/as_operation: RuntimeError -deferred_constraints_type_annotation_test/catch_check: RuntimeError -deferred_constraints_type_annotation_test/is_check: RuntimeError -deferred_constraints_type_annotation_test/type_annotation1: Fail -deferred_constraints_type_annotation_test/type_annotation_generic1: Fail -deferred_constraints_type_annotation_test/type_annotation_generic4: Fail -deferred_inheritance_constraints_test/extends: MissingCompileTimeError -deferred_inheritance_constraints_test/implements: MissingCompileTimeError -deferred_inheritance_constraints_test/mixin: MissingCompileTimeError -deferred_load_constants_test/none: RuntimeError -deferred_load_library_wrong_args_test/01: MissingRuntimeError -deferred_not_loaded_check_test: RuntimeError -deferred_redirecting_factory_test: RuntimeError -double_int_to_string_test: RuntimeError -duplicate_export_negative_test: Fail -duplicate_implements_test/01: MissingCompileTimeError -duplicate_implements_test/02: MissingCompileTimeError -duplicate_implements_test/03: MissingCompileTimeError -duplicate_implements_test/04: MissingCompileTimeError -dynamic_prefix_core_test/01: RuntimeError -dynamic_prefix_core_test/none: RuntimeError -enum_mirror_test: RuntimeError -example_constructor_test: RuntimeError -expect_test: RuntimeError -external_test/10: MissingRuntimeError -external_test/13: MissingRuntimeError -external_test/20: MissingRuntimeError -factory_redirection_test/07: MissingCompileTimeError -factory_redirection_test/08: Fail -factory_redirection_test/09: Fail -factory_redirection_test/10: Fail -factory_redirection_test/12: Fail -factory_redirection_test/13: Fail -factory_redirection_test/14: Fail -fauxverride_test/03: MissingCompileTimeError -fauxverride_test/05: MissingCompileTimeError -field_initialization_order_test: RuntimeError -field_override3_test/00: MissingCompileTimeError -field_override3_test/01: MissingCompileTimeError -field_override3_test/02: MissingCompileTimeError -field_override3_test/03: MissingCompileTimeError -field_override4_test/02: MissingCompileTimeError -final_attempt_reinitialization_test/01: MissingCompileTimeError -final_attempt_reinitialization_test/02: MissingCompileTimeError -final_field_initialization_order_test: RuntimeError -generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in (Instance of 'ThisLocal') for j:field(M.field). -generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in (Instance of 'ThisLocal') for j:field(M.field). -generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. -generic_methods_type_expression_test/01: RuntimeError -generic_methods_type_expression_test/03: RuntimeError -generic_methods_type_expression_test/none: RuntimeError -getter_override2_test/02: MissingCompileTimeError -getter_override_test/00: MissingCompileTimeError -getter_override_test/01: MissingCompileTimeError -getter_override_test/02: MissingCompileTimeError -identical_closure2_test: RuntimeError -if_null_assignment_behavior_test/14: RuntimeError -infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -infinity_test: RuntimeError -instance_creation_in_function_annotation_test: RuntimeError -integer_division_by_zero_test: RuntimeError -internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. -invocation_mirror2_test: RuntimeError -invocation_mirror_empty_arguments_test: RuntimeError -invocation_mirror_test: RuntimeError -issue21079_test: RuntimeError -left_shift_test: RuntimeError -library_env_test/has_mirror_support: RuntimeError -library_env_test/has_no_html_support: RuntimeError -library_env_test/has_no_io_support: RuntimeError -list_literal1_test/01: MissingCompileTimeError -list_literal4_test: RuntimeError -main_not_a_function_test/01: CompileTimeError -malbounded_instantiation_test/01: RuntimeError # Issue 12702 -malbounded_type_cast2_test: RuntimeError # Issue 14121 -malbounded_type_cast_test: RuntimeError # Issue 14121 -malbounded_type_test2_test: RuntimeError # Issue 14121 -malbounded_type_test_test/03: Fail # Issue 14121 -malbounded_type_test_test/04: Fail # Issue 14121 -malformed2_test/00: RuntimeError -malformed2_test/01: MissingCompileTimeError -map_literal1_test/01: MissingCompileTimeError -method_name_test: CompileTimeError -method_override5_test: RuntimeError -method_override7_test/00: MissingCompileTimeError -method_override7_test/01: MissingCompileTimeError -method_override7_test/02: MissingCompileTimeError -method_override8_test/00: MissingCompileTimeError -method_override8_test/01: MissingCompileTimeError -mint_arithmetic_test: RuntimeError -mixin_black_listed_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError -mixin_forwarding_constructor4_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/01: MissingCompileTimeError -mixin_illegal_super_use_test/02: MissingCompileTimeError -mixin_illegal_super_use_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/04: MissingCompileTimeError -mixin_illegal_super_use_test/05: MissingCompileTimeError -mixin_illegal_super_use_test/06: MissingCompileTimeError -mixin_illegal_super_use_test/07: MissingCompileTimeError -mixin_illegal_super_use_test/08: MissingCompileTimeError -mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError -mixin_mixin2_test: RuntimeError -mixin_mixin3_test: RuntimeError -mixin_mixin4_test: RuntimeError -mixin_mixin5_test: RuntimeError -mixin_mixin6_test: RuntimeError -mixin_mixin7_test: RuntimeError -mixin_mixin_bound2_test: RuntimeError -mixin_mixin_bound_test: RuntimeError -mixin_mixin_test: RuntimeError -mixin_mixin_type_arguments_test: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -mixin_of_mixin_test/01: CompileTimeError -mixin_of_mixin_test/02: CompileTimeError -mixin_of_mixin_test/03: CompileTimeError -mixin_of_mixin_test/04: CompileTimeError -mixin_of_mixin_test/05: CompileTimeError -mixin_of_mixin_test/06: CompileTimeError -mixin_of_mixin_test/07: CompileTimeError -mixin_of_mixin_test/08: CompileTimeError -mixin_of_mixin_test/09: CompileTimeError -mixin_of_mixin_test/10: CompileTimeError -mixin_of_mixin_test/11: CompileTimeError -mixin_of_mixin_test/12: CompileTimeError -mixin_of_mixin_test/13: CompileTimeError -mixin_of_mixin_test/14: CompileTimeError -mixin_of_mixin_test/15: CompileTimeError -mixin_of_mixin_test/16: CompileTimeError -mixin_of_mixin_test/17: CompileTimeError -mixin_of_mixin_test/18: CompileTimeError -mixin_of_mixin_test/19: CompileTimeError -mixin_of_mixin_test/20: CompileTimeError -mixin_of_mixin_test/21: CompileTimeError -mixin_of_mixin_test/22: CompileTimeError -mixin_of_mixin_test/none: CompileTimeError -mixin_super_2_test: CompileTimeError -mixin_super_bound2_test/01: CompileTimeError -mixin_super_bound2_test/none: CompileTimeError -mixin_super_constructor_named_test/01: MissingCompileTimeError -mixin_super_constructor_positionals_test/01: MissingCompileTimeError -mixin_super_test: CompileTimeError -mixin_super_use_test: CompileTimeError -mixin_superclass_test: CompileTimeError -mixin_supertype_subclass2_test/01: CompileTimeError -mixin_supertype_subclass2_test/02: CompileTimeError -mixin_supertype_subclass2_test/03: CompileTimeError -mixin_supertype_subclass2_test/04: CompileTimeError -mixin_supertype_subclass2_test/05: CompileTimeError -mixin_supertype_subclass2_test/none: CompileTimeError -mixin_supertype_subclass3_test/01: CompileTimeError -mixin_supertype_subclass3_test/02: CompileTimeError -mixin_supertype_subclass3_test/03: CompileTimeError -mixin_supertype_subclass3_test/04: CompileTimeError -mixin_supertype_subclass3_test/05: CompileTimeError -mixin_supertype_subclass3_test/none: CompileTimeError -mixin_supertype_subclass4_test/01: CompileTimeError -mixin_supertype_subclass4_test/02: CompileTimeError -mixin_supertype_subclass4_test/03: CompileTimeError -mixin_supertype_subclass4_test/04: CompileTimeError -mixin_supertype_subclass4_test/05: CompileTimeError -mixin_supertype_subclass4_test/none: CompileTimeError -mixin_supertype_subclass_test/01: CompileTimeError -mixin_supertype_subclass_test/02: CompileTimeError -mixin_supertype_subclass_test/03: CompileTimeError -mixin_supertype_subclass_test/04: CompileTimeError -mixin_supertype_subclass_test/05: CompileTimeError -mixin_supertype_subclass_test/none: CompileTimeError -modulo_test: RuntimeError -multiline_newline_test/04: MissingCompileTimeError -multiline_newline_test/04r: MissingCompileTimeError -multiline_newline_test/05: MissingCompileTimeError -multiline_newline_test/05r: MissingCompileTimeError -multiline_newline_test/06: MissingCompileTimeError -multiline_newline_test/06r: MissingCompileTimeError -named_constructor_test/01: MissingRuntimeError -named_parameters_default_eq_test/02: MissingCompileTimeError -nan_identical_test: RuntimeError -nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -no_main_test/01: CompileTimeError -null_test/02: MissingCompileTimeError -null_test/03: MissingCompileTimeError -null_test/none: RuntimeError -number_identity2_test: RuntimeError -numbers_test: RuntimeError -override_field_method1_negative_test: Fail -override_field_method2_negative_test: Fail -override_field_method4_negative_test: Fail -override_field_method5_negative_test: Fail -override_field_test/01: MissingCompileTimeError -override_inheritance_mixed_test/01: MissingCompileTimeError -override_inheritance_mixed_test/02: MissingCompileTimeError -override_inheritance_mixed_test/03: MissingCompileTimeError -override_inheritance_mixed_test/04: MissingCompileTimeError -override_method_with_field_test/01: MissingCompileTimeError -private_super_constructor_test/01: MissingCompileTimeError -redirecting_constructor_initializer_test: RuntimeError -redirecting_factory_default_values_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/02: MissingCompileTimeError -redirecting_factory_infinite_steps_test/01: Fail -redirecting_factory_long_test: RuntimeError -redirecting_factory_reflection_test: RuntimeError -regress_13494_test: RuntimeError -regress_17382_test: RuntimeError -regress_20394_test/01: MissingCompileTimeError -regress_22936_test/01: RuntimeError -regress_22976_test/01: CompileTimeError -regress_22976_test/02: CompileTimeError -regress_22976_test/none: CompileTimeError -regress_24283_test: RuntimeError -regress_26133_test: RuntimeError # Issue 26429 -regress_27572_test: RuntimeError -regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant -regress_28217_test/01: MissingCompileTimeError -regress_28217_test/none: MissingCompileTimeError -regress_28255_test: RuntimeError -regress_29405_test: RuntimeError # Issue 29422 -setter_override_test/00: MissingCompileTimeError -setter_override_test/03: MissingCompileTimeError -stacktrace_demangle_ctors_test: RuntimeError -stacktrace_test: RuntimeError -static_getter_no_setter1_test/01: RuntimeError -static_getter_no_setter2_test/01: RuntimeError -static_getter_no_setter3_test/01: RuntimeError -super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. -super_test: RuntimeError -switch_bad_case_test/01: MissingCompileTimeError -switch_bad_case_test/02: MissingCompileTimeError -switch_case_test/00: MissingCompileTimeError -switch_case_test/01: MissingCompileTimeError -switch_case_test/02: MissingCompileTimeError -syntax_test/none: CompileTimeError -top_level_getter_no_setter1_test/01: RuntimeError -top_level_getter_no_setter2_test/01: RuntimeError -truncdiv_test: RuntimeError -try_catch_test/01: MissingCompileTimeError -type_check_const_function_typedef2_test/00: MissingCompileTimeError -type_parameter_test/01: Crash # Internal Error: Unexpected type variable in static context. -type_parameter_test/02: Crash # Internal Error: Unexpected type variable in static context. -type_parameter_test/03: Crash # Internal Error: Unexpected type variable in static context. -type_parameter_test/04: Crash # Internal Error: Unexpected type variable in static context. -type_parameter_test/05: Crash # Internal Error: Unexpected type variable in static context. -type_parameter_test/06: Crash # Internal Error: Unexpected type variable in static context. -type_parameter_test/none: Crash # Internal Error: Unexpected type variable in static context. -type_variable_bounds2_test/01: RuntimeError # Issue 12702 -type_variable_bounds2_test/04: RuntimeError # Issue 12702 -type_variable_bounds3_test/00: Fail # Issue 12702 -type_variable_bounds_test/02: Fail # Issue 12702 -type_variable_scope_test/03: Crash # Internal Error: Unexpected type variable in static context. +[ $compiler == dart2js && !$dart2js_with_kernel && $fast_startup ] +assertion_initializer_const_error2_test/*: Crash +assertion_initializer_const_error2_test/cc10: CompileTimeError # Issue #31321 +assertion_initializer_const_error2_test/cc11: CompileTimeError # Issue #31321 +assertion_initializer_const_error2_test/none: Pass +assertion_initializer_const_function_error_test/01: Crash +assertion_initializer_const_function_test/01: CompileTimeError +assertion_initializer_test: Crash +const_evaluation_test/*: Fail # mirrors not supported +deferred_constraints_constants_test: Pass # mirrors not supported, passes for the wrong reason +deferred_constraints_constants_test/none: Fail # mirrors not supported +deferred_constraints_constants_test/reference_after_load: Fail # mirrors not supported +enum_mirror_test: Fail # mirrors not supported +field_increment_bailout_test: Fail # mirrors not supported +instance_creation_in_function_annotation_test: Fail # mirrors not supported +invocation_mirror2_test: Fail # mirrors not supported +invocation_mirror_invoke_on2_test: Fail # mirrors not supported +invocation_mirror_invoke_on_test: Fail # mirrors not supported +issue21079_test: Fail # mirrors not supported +library_env_test/has_mirror_support: Fail # mirrors not supported +library_env_test/has_no_mirror_support: Pass # fails for the wrong reason. +many_overridden_no_such_method_test: Fail # mirrors not supported +no_such_method_test: Fail # mirrors not supported +null_test/0*: Pass # mirrors not supported, fails for the wrong reason +null_test/none: Fail # mirrors not supported +overridden_no_such_method_test: Fail # mirrors not supported +redirecting_factory_reflection_test: Fail # mirrors not supported +regress_13462_0_test: Fail # mirrors not supported +regress_13462_1_test: Fail # mirrors not supported +regress_18535_test: Fail # mirrors not supported +regress_28255_test: Fail # mirrors not supported +super_call4_test: Fail # mirrors not supported +super_getter_setter_test: Fail # mirrors not supported +vm/reflect_core_vm_test: Fail # mirrors not supported + +[ $compiler == dart2js && !$dart2js_with_kernel && $host_checked ] +assertion_initializer_const_error2_test/cc01: Crash +assertion_initializer_const_error2_test/cc02: Crash +assertion_initializer_const_error2_test/cc03: Crash +assertion_initializer_const_error2_test/cc04: Crash +assertion_initializer_const_error2_test/cc05: Crash +assertion_initializer_const_error2_test/cc06: Crash +assertion_initializer_const_error2_test/cc07: Crash +assertion_initializer_const_error2_test/cc08: Crash +assertion_initializer_const_error2_test/cc09: Crash +assertion_initializer_const_error2_test/cc10: Crash +assertion_initializer_const_error2_test/cc11: Crash +assertion_initializer_const_function_error_test/01: Crash +assertion_initializer_const_function_test/01: Crash +assertion_initializer_test: Crash +regress_26855_test/1: Crash # Issue 26867 +regress_26855_test/2: Crash # Issue 26867 +regress_26855_test/3: Crash # Issue 26867 +regress_26855_test/4: Crash # Issue 26867 + +[ $compiler == dart2js && !$dart2js_with_kernel && $minified ] +cyclic_type2_test: Fail # Issue 12605 +cyclic_type_test/0*: Fail # Issue 12605 +f_bounded_quantification4_test: Fail, Pass # Issue 12605 +generic_closure_test: Fail # Issue 12605 +mixin_generic_test: Fail # Issue 12605 +mixin_mixin2_test: Fail # Issue 12605 +mixin_mixin3_test: Fail # Issue 12605 +mixin_mixin4_test: Fail # Issue 12605 +mixin_mixin5_test: Fail # Issue 12605 +mixin_mixin6_test: Fail # Issue 12605 +mixin_mixin_bound2_test: RuntimeError # Issue 12605 +mixin_mixin_bound_test: RuntimeError # Issue 12605 +symbol_conflict_test: RuntimeError # Issue 23857 + +[ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim) ] +round_test: Fail, OK # Common JavaScript engine Math.round bug. + +[ !$dart2js_with_kernel && $minified ] +regress_21795_test: RuntimeError # Issue 12605 +stack_trace_test: Fail, OK # Stack trace not preserved in minified code. diff --git a/tests/language/language_kernel.status b/tests/language/language_kernel.status index 67df84bdb71..b3e68f254c1 100644 --- a/tests/language/language_kernel.status +++ b/tests/language/language_kernel.status @@ -2,200 +2,6 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[$compiler == dartk && $runtime == vm] -assertion_initializer_const_function_error_test/01: MissingCompileTimeError -disassemble_test: Pass, Slow - -[ $compiler == dartk || $compiler == dartkp ] -const_error_multiply_initialized_test/02: MissingCompileTimeError # Issue 29900 -const_error_multiply_initialized_test/04: MissingCompileTimeError # Issue 29900 - -[$compiler == dartk && $runtime == vm && $checked] -assertion_initializer_const_function_test/01: RuntimeError - -[$compiler == dartkp && $runtime == dart_precompiled && !$checked] -assertion_initializer_const_function_error_test/01: MissingCompileTimeError - -[$compiler == dartkp && $runtime == dart_precompiled && $checked] -assertion_initializer_const_error2_test/none: Pass -assertion_initializer_const_error2_test/*: Crash -assertion_initializer_const_error_test/none: Crash -assertion_initializer_const_function_error_test/01: Crash -assertion_initializer_const_function_error_test/none: Crash -assertion_initializer_const_function_test/01: Crash -assertion_initializer_const_function_test/none: Crash -assertion_initializer_test: CompileTimeError - -[ !$checked && ($compiler == dartk || $compiler == dartkp) ] - -deferred_constraints_type_annotation_test/type_annotation1: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic1: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic4: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. - -cha_deopt1_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -cha_deopt2_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -cha_deopt3_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -conditional_import_string_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -conditional_import_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_call_empty_before_load_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_closurize_load_library_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constant_list_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_constants_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_constants_test/reference_after_load: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_constants_test/default_argument2: Pass # Passes by mistake. KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/as_operation: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/catch_check: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/is_check: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/new: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/new_before_load: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/new_generic1: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/new_generic2: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/new_generic3: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/static_method: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic2: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic3: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_non_deferred: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_null: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_top_level: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_function_type_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_global_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_import_core_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_inheritance_constraints_test/extends: MissingCompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_inheritance_constraints_test/implements: MissingCompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_inheritance_constraints_test/mixin: MissingCompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_inheritance_constraints_test/redirecting_constructor: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_inlined_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_load_constants_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_load_inval_code_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_load_library_wrong_args_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_load_library_wrong_args_test/01: Pass # Passes by mistake. KernelVM bug: Deferred loading kernel issue 28335. -deferred_mixin_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_no_such_method_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_not_loaded_check_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_only_constant_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_optimized_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_redirecting_factory_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_regression_22995_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_regression_28678_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_shadow_load_library_test: CompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. -deferred_shared_and_unshared_classes_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_static_seperate_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_super_dependency_test/01: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_type_dependency_test/as: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_type_dependency_test/is: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_type_dependency_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_type_dependency_test/type_annotation: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -final_attempt_reinitialization_test/01: MissingCompileTimeError # Issue 29900 -final_attempt_reinitialization_test/02: MissingCompileTimeError # Issue 29900 -issue_1751477_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -regress_22443_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -regress_23408_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -regress_28278_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -vm/regress_27201_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. - -config_import_corelib_test: RuntimeError # KernelVM bug: Configurable imports. -config_import_test: RuntimeError # KernelVM bug: Configurable imports. -library_env_test/has_html_support: RuntimeError # KernelVM bug: Configurable imports. -library_env_test/has_no_io_support: RuntimeError # KernelVM bug: Configurable imports. - -compile_time_constant_c_test/02: MissingCompileTimeError # KernelVM bug: Constant evaluation. -const_map2_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. -const_map3_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. -const_nested_test: RuntimeError # KernelVM bug: Constant evaluation. -const_switch2_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. -const_syntax_test/05: MissingCompileTimeError # KernelVM bug: Constant evaluation. -constant_expression_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. -constant_expression_test/03: MissingCompileTimeError # KernelVM bug: Constant evaluation. -switch_bad_case_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. -switch_bad_case_test/02: MissingCompileTimeError # KernelVM bug: Constant evaluation. -switch_case_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. -switch_case_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. -switch_case_test/02: MissingCompileTimeError # KernelVM bug: Constant evaluation. - -compile_time_constant_k_test/01: RuntimeError # KernelVM bug: Constant map duplicated key. -compile_time_constant_k_test/02: RuntimeError # KernelVM bug: Constant map duplicated key. -compile_time_constant_k_test/03: RuntimeError # KernelVM bug: Constant map duplicated key. -compile_time_constant_o_test/01: RuntimeError # KernelVM bug: Constant map duplicated key. -compile_time_constant_o_test/02: RuntimeError # KernelVM bug: Constant map duplicated key. -const_dynamic_type_literal_test/02: RuntimeError # KernelVM bug: Constant map duplicated key. -map_literal3_test: RuntimeError # KernelVM bug: Constant map duplicated key. -map_literal6_test: RuntimeError # KernelVM bug: Constant map duplicated key. - -dynamic_prefix_core_test/01: RuntimeError # KernelVM bug: Blocked on language issue 29125. - -external_test/10: MissingRuntimeError # KernelVM bug: Unbound external. -external_test/13: MissingRuntimeError # KernelVM bug: Unbound external. -external_test/20: MissingRuntimeError # KernelVM bug: Unbound external. - -mixin_forwarding_constructor4_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_forwarding_constructor4_test/02: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_forwarding_constructor4_test/03: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_super_constructor_named_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_super_constructor_positionals_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 - -redirecting_constructor_initializer_test: RuntimeError # Super is evaluated last; same result as source-based pipeline. - -vm/debug_break_enabled_vm_test/01: CompileTimeError # KernelVM bug: Bad test using extended break syntax. -vm/debug_break_enabled_vm_test/none: CompileTimeError # KernelVM bug: Bad test using extended break syntax. - -vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM - -redirecting_factory_long_test: RuntimeError # Fasta bug: Bad compilation of type arguments for redirecting factory. - -factory_redirection_test/07: MissingCompileTimeError # Fasta bug: Bad constructor redirection. -regress_27617_test/1: MissingCompileTimeError # Fasta bug: Bad constructor redirection. -regress_28217_test/01: MissingCompileTimeError # Fasta bug: Bad constructor redirection. -regress_28217_test/none: MissingCompileTimeError # Fasta bug: Bad constructor redirection. - -vm/type_vm_test: RuntimeError # Fasta bug: Bad position information in stack trace. - -constructor_redirect2_test/01: MissingCompileTimeError # Fasta bug: Body on redirecting constructor. - -const_factory_with_body_test/01: MissingCompileTimeError # Fasta bug: Const factory with body. - -const_instance_field_test/01: MissingCompileTimeError # Fasta bug: Const instance field. - -cyclic_constructor_test/01: MissingCompileTimeError # Fasta bug: Cyclic constructor redirection. - -const_optional_args_negative_test: Fail # Fasta bug: Default parameter values must be const. - -named_parameters_default_eq_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. -redirecting_factory_default_values_test/01: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. -redirecting_factory_default_values_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. - -private_super_constructor_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. -regress_20394_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. - -constructor_redirect_test/01: MissingCompileTimeError # Fasta bug: Initializer refers to this. - -const_constructor_nonconst_field_test/01: MissingCompileTimeError # Fasta bug: Non-const expression in field initializer. - -method_name_test: CompileTimeError # Fasta bug: Parser bug. - -named_constructor_test/01: MissingRuntimeError # Fasta bug: Bad compilation of constructor reference. - -const_native_factory_test/01: MissingCompileTimeError # Fasta bug: Issue 29763 - -syntax_test/none: CompileTimeError # Issue #30176. -syntax_test/64: MissingCompileTimeError # Test bug: Test doesn't execute erroneous code. -syntax_test/65: MissingCompileTimeError # Test bug: Test doesn't execute erroneous code. - -# dartk: JIT & AOT failures (debug) -[ ($compiler == dartk || $compiler == dartkp) && $mode == debug ] -const_instance_field_test/01: Crash -cyclic_type_variable_test/01: Crash -cyclic_type_variable_test/02: Crash -cyclic_type_variable_test/03: Crash -cyclic_type_variable_test/04: Crash -cyclic_type_variable_test/none: Crash -type_parameter_test/04: Crash -type_parameter_test/05: Crash - -# Triaged checked mode failures -[ ($compiler == dartk || $compiler == dartkp) && $checked ] -regress_22728_test: Fail # Dartk Issue 28498 - # dartk: JIT failures [ $compiler == dartk ] const_locals_test: RuntimeError @@ -208,35 +14,68 @@ redirecting_factory_reflection_test: RuntimeError vm/lazy_deopt_vm_test: Pass, Slow, Timeout vm/optimized_stacktrace_test: Skip # Issue 28788 -# dartk: JIT failures (debug) -[ $compiler == dartk && $mode == debug ] -deopt_inlined_function_lazy_test: Skip -hello_dart_test: Crash # error: expected: cls.is_type_finalized() -vm/lazy_deopt_vm_test: Crash - # dartk: precompilation failures [ $compiler == dartkp ] const_syntax_test/08: Crash +deferred_redirecting_factory_test: CompileTimeError # Issue 31296 +export_double_same_main_test: Crash # Issue 29895 final_syntax_test/09: Crash -ref_before_declaration_test/none: Pass final_syntax_test/09: MissingCompileTimeError +ref_before_declaration_test/none: Pass ref_before_declaration_test/none: Crash stacktrace_demangle_ctors_test: RuntimeError vm/optimized_stacktrace_test: Crash vm/regress_27671_test: Crash -vm/type_vm_test: Crash -deferred_redirecting_factory_test: CompileTimeError # Issue 31296 vm/regress_27671_test: Skip # Unsupported +vm/type_vm_test: Crash + +# dartk: JIT failures (debug) +[ $compiler == dartk && $mode == debug ] +deopt_inlined_function_lazy_test: Skip +hello_dart_test: Crash # error: expected: cls.is_type_finalized() +vm/lazy_deopt_vm_test: Crash + +[ $compiler == dartk && $runtime == vm ] +assertion_initializer_const_function_error_test/01: MissingCompileTimeError +disassemble_test: Pass, Slow + +[ $compiler == dartk && $runtime == vm && $checked ] +assertion_initializer_const_function_test/01: RuntimeError # dartk: precompilation failures (debug) [ $compiler == dartkp && $mode == debug ] +assertion_test: Crash external_test/13: Crash final_syntax_test/09: Crash malbounded_type_cast_test: Crash regress_29025_test: Crash vm/async_await_catch_stacktrace_test: Crash -# dartk: checked mode failures +[ $compiler == dartkp && $runtime == dart_precompiled && $checked ] +assertion_initializer_const_error2_test/*: Crash +assertion_initializer_const_error2_test/none: Pass +assertion_initializer_const_error_test/none: Crash +assertion_initializer_const_function_error_test/01: Crash +assertion_initializer_const_function_error_test/none: Crash +assertion_initializer_const_function_test/01: Crash +assertion_initializer_const_function_test/none: Crash +assertion_initializer_test: CompileTimeError + +[ $compiler == dartkp && $runtime == dart_precompiled && !$checked ] +assertion_initializer_const_function_error_test/01: MissingCompileTimeError + +# dartk: JIT & AOT failures (debug) +[ $mode == debug && ($compiler == dartk || $compiler == dartkp) ] +const_instance_field_test/01: Crash +cyclic_type_variable_test/01: Crash +cyclic_type_variable_test/02: Crash +cyclic_type_variable_test/03: Crash +cyclic_type_variable_test/04: Crash +cyclic_type_variable_test/none: Crash +type_parameter_test/04: Crash +type_parameter_test/05: Crash + +# Triaged checked mode failures [ $checked && ($compiler == dartk || $compiler == dartkp) ] assert_initializer_test/31: MissingCompileTimeError # KernelVM bug: Constant evaluation. assert_initializer_test/32: MissingCompileTimeError # KernelVM bug: Constant evaluation. @@ -271,7 +110,6 @@ factory_redirection_test/10: Fail factory_redirection_test/12: Fail factory_redirection_test/13: Fail factory_redirection_test/14: Fail -function_type2_test: RuntimeError function_type/function_type0_test: RuntimeError function_type/function_type10_test: RuntimeError function_type/function_type11_test: RuntimeError @@ -372,6 +210,7 @@ function_type/function_type97_test: RuntimeError function_type/function_type98_test: RuntimeError function_type/function_type99_test: RuntimeError function_type/function_type9_test: RuntimeError +function_type2_test: RuntimeError list_literal1_test/01: MissingCompileTimeError malbounded_redirecting_factory2_test/03: Fail malbounded_redirecting_factory2_test/04: Fail @@ -393,17 +232,143 @@ mixin_super_bound_test: RuntimeError msk_bound_test: RuntimeError redirecting_factory_infinite_steps_test/01: Fail redirecting_factory_malbounded_test/01: Fail +regress_22728_test: Fail # Dartk Issue 28498 regress_22728_test: RuntimeError regress_26133_test: RuntimeError type_parameter_test/05: MissingCompileTimeError type_parameter_test/none: RuntimeError type_variable_bounds4_test/01: RuntimeError -[ $compiler == dartkp ] -export_double_same_main_test: Crash # Issue 29895 +[ !$checked && ($compiler == dartk || $compiler == dartkp) ] +cha_deopt1_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +cha_deopt2_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +cha_deopt3_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +compile_time_constant_c_test/02: MissingCompileTimeError # KernelVM bug: Constant evaluation. +compile_time_constant_k_test/01: RuntimeError # KernelVM bug: Constant map duplicated key. +compile_time_constant_k_test/02: RuntimeError # KernelVM bug: Constant map duplicated key. +compile_time_constant_k_test/03: RuntimeError # KernelVM bug: Constant map duplicated key. +compile_time_constant_o_test/01: RuntimeError # KernelVM bug: Constant map duplicated key. +compile_time_constant_o_test/02: RuntimeError # KernelVM bug: Constant map duplicated key. +conditional_import_string_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +conditional_import_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +config_import_corelib_test: RuntimeError # KernelVM bug: Configurable imports. +config_import_test: RuntimeError # KernelVM bug: Configurable imports. +const_constructor_nonconst_field_test/01: MissingCompileTimeError # Fasta bug: Non-const expression in field initializer. +const_dynamic_type_literal_test/02: RuntimeError # KernelVM bug: Constant map duplicated key. +const_factory_with_body_test/01: MissingCompileTimeError # Fasta bug: Const factory with body. +const_instance_field_test/01: MissingCompileTimeError # Fasta bug: Const instance field. +const_map2_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. +const_map3_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. +const_native_factory_test/01: MissingCompileTimeError # Fasta bug: Issue 29763 +const_nested_test: RuntimeError # KernelVM bug: Constant evaluation. +const_optional_args_negative_test: Fail # Fasta bug: Default parameter values must be const. +const_switch2_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. +const_syntax_test/05: MissingCompileTimeError # KernelVM bug: Constant evaluation. +constant_expression_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. +constant_expression_test/03: MissingCompileTimeError # KernelVM bug: Constant evaluation. +constructor_redirect2_test/01: MissingCompileTimeError # Fasta bug: Body on redirecting constructor. +constructor_redirect_test/01: MissingCompileTimeError # Fasta bug: Initializer refers to this. +cyclic_constructor_test/01: MissingCompileTimeError # Fasta bug: Cyclic constructor redirection. +deferred_call_empty_before_load_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_closurize_load_library_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constant_list_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_constants_test/default_argument2: Pass # Passes by mistake. KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_constants_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_constants_test/reference_after_load: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/as_operation: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/catch_check: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/is_check: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/new: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/new_before_load: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/new_generic1: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/new_generic2: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/new_generic3: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/static_method: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation1: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic1: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic2: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic3: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic4: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_non_deferred: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_null: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_top_level: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_function_type_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_global_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_import_core_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_inheritance_constraints_test/extends: MissingCompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_inheritance_constraints_test/implements: MissingCompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_inheritance_constraints_test/mixin: MissingCompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_inheritance_constraints_test/redirecting_constructor: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_inlined_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_load_constants_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_load_inval_code_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_load_library_wrong_args_test/01: Pass # Passes by mistake. KernelVM bug: Deferred loading kernel issue 28335. +deferred_load_library_wrong_args_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_mixin_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_no_such_method_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_not_loaded_check_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_only_constant_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_optimized_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_redirecting_factory_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_regression_22995_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_regression_28678_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_shadow_load_library_test: CompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. +deferred_shared_and_unshared_classes_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_static_seperate_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_super_dependency_test/01: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_type_dependency_test/as: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_type_dependency_test/is: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_type_dependency_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_type_dependency_test/type_annotation: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +dynamic_prefix_core_test/01: RuntimeError # KernelVM bug: Blocked on language issue 29125. +external_test/10: MissingRuntimeError # KernelVM bug: Unbound external. +external_test/13: MissingRuntimeError # KernelVM bug: Unbound external. +external_test/20: MissingRuntimeError # KernelVM bug: Unbound external. +factory_redirection_test/07: MissingCompileTimeError # Fasta bug: Bad constructor redirection. +final_attempt_reinitialization_test/01: MissingCompileTimeError # Issue 29900 +final_attempt_reinitialization_test/02: MissingCompileTimeError # Issue 29900 +issue_1751477_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +library_env_test/has_html_support: RuntimeError # KernelVM bug: Configurable imports. +library_env_test/has_no_io_support: RuntimeError # KernelVM bug: Configurable imports. +map_literal3_test: RuntimeError # KernelVM bug: Constant map duplicated key. +map_literal6_test: RuntimeError # KernelVM bug: Constant map duplicated key. +method_name_test: CompileTimeError # Fasta bug: Parser bug. +mixin_forwarding_constructor4_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_forwarding_constructor4_test/02: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_forwarding_constructor4_test/03: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_super_constructor_named_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_super_constructor_positionals_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 +named_constructor_test/01: MissingRuntimeError # Fasta bug: Bad compilation of constructor reference. +named_parameters_default_eq_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +private_super_constructor_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. +redirecting_constructor_initializer_test: RuntimeError # Super is evaluated last; same result as source-based pipeline. +redirecting_factory_default_values_test/01: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +redirecting_factory_default_values_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +redirecting_factory_long_test: RuntimeError # Fasta bug: Bad compilation of type arguments for redirecting factory. +regress_20394_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. +regress_22443_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +regress_23408_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +regress_27617_test/1: MissingCompileTimeError # Fasta bug: Bad constructor redirection. +regress_28217_test/01: MissingCompileTimeError # Fasta bug: Bad constructor redirection. +regress_28217_test/none: MissingCompileTimeError # Fasta bug: Bad constructor redirection. +regress_28278_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +switch_bad_case_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. +switch_bad_case_test/02: MissingCompileTimeError # KernelVM bug: Constant evaluation. +switch_case_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. +switch_case_test/01: MissingCompileTimeError # KernelVM bug: Constant evaluation. +switch_case_test/02: MissingCompileTimeError # KernelVM bug: Constant evaluation. +syntax_test/64: MissingCompileTimeError # Test bug: Test doesn't execute erroneous code. +syntax_test/65: MissingCompileTimeError # Test bug: Test doesn't execute erroneous code. +syntax_test/none: CompileTimeError # Issue #30176. +vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM +vm/debug_break_enabled_vm_test/01: CompileTimeError # KernelVM bug: Bad test using extended break syntax. +vm/debug_break_enabled_vm_test/none: CompileTimeError # KernelVM bug: Bad test using extended break syntax. +vm/regress_27201_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +vm/type_vm_test: RuntimeError # Fasta bug: Bad position information in stack trace. [ $compiler == dartk || $compiler == dartkp ] bad_constructor_test/06: DartkCrash # Issue 31299 +const_error_multiply_initialized_test/02: MissingCompileTimeError # Issue 29900 +const_error_multiply_initialized_test/04: MissingCompileTimeError # Issue 29900 -[ $compiler == dartkp && $mode == debug ] -assertion_test: Crash diff --git a/tests/language/language_spec_parser.status b/tests/language/language_spec_parser.status index 2c5182f78ab..f9d31ec6845 100644 --- a/tests/language/language_spec_parser.status +++ b/tests/language/language_spec_parser.status @@ -3,6 +3,13 @@ # BSD-style license that can be found in the LICENSE file. [ $compiler == spec_parser ] +conditional_import_string_test: Fail # Not yet supported. +conditional_import_test: Fail # Not yet supported. +config_import_corelib_test: Fail # Not yet supported. +config_import_test: Fail # Not yet supported. +const_native_factory_test/01: Fail # Uses `native`. +deep_nesting1_negative_test: Skip # Stack overflow. +deep_nesting2_negative_test: Skip # Stack overflow. factory3_negative_test: Fail # Negative, puts `default` in class header. field3_negative_test: Fail # Negative, uses `final var a`. getter_declaration_negative_test: Fail # Negative, uses getter with parameter. @@ -11,6 +18,7 @@ interface_injection2_negative_test: Fail # Negative, uses interface injection. is_not_class1_negative_test: Fail # Negative, uses `a is "A"`. is_not_class4_negative_test: Fail # Negative, uses `a is A is A`. issue1578_negative_test: Fail # Negative, is line noise. +issue_1751477_test: Skip # Times out: 9 levels, exponential blowup => 430 secs. label8_negative_test: Fail # Negative, uses misplaced label. list_literal_negative_test: Fail # Negative, uses `new List[1, 2]`. map_literal_negative_test: Fail # Negative, uses `new Map{..}`. @@ -27,15 +35,5 @@ switch1_negative_test: Fail # Negative, `default` clause not last. test_negative_test: Fail # Negative, uses non-terminated string literal. unary_plus_negative_test: Fail # Negative, uses non-existing unary plus. unhandled_exception_negative_test: Fail # Negative, defaults required parameter. - vm/debug_break_enabled_vm_test: Fail # Uses debug break. -const_native_factory_test/01: Fail # Uses `native`. -conditional_import_string_test: Fail # Not yet supported. -conditional_import_test: Fail # Not yet supported. -config_import_corelib_test: Fail # Not yet supported. -config_import_test: Fail # Not yet supported. - -deep_nesting1_negative_test: Skip # Stack overflow. -deep_nesting2_negative_test: Skip # Stack overflow. -issue_1751477_test: Skip # Times out: 9 levels, exponential blowup => 430 secs. diff --git a/tests/language_2/language_2.status b/tests/language_2/language_2.status index eb4a0fd9a0d..00f785d3347 100644 --- a/tests/language_2/language_2.status +++ b/tests/language_2/language_2.status @@ -2,78 +2,54 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. +[ $compiler == app_jit ] +deferred_inheritance_constraints_test/redirecting_constructor: Crash + +[ $compiler != dart2analyzer ] +switch_case_warn_test: Skip # Analyzer only, see language_analyzer2.status + [ $mode == product ] assertion_test: SkipByDesign # Requires checked mode. -regress_29784_test/02: SkipByDesign # Requires checked mode. generic_test: SkipByDesign # Requires checked mode. +issue13474_test: SkipByDesign # Requires checked mode. +map_literal4_test: SkipByDesign # Requires checked mode. named_parameters_type_test/01: SkipByDesign # Requires checked mode. named_parameters_type_test/02: SkipByDesign # Requires checked mode. named_parameters_type_test/03: SkipByDesign # Requires checked mode. -issue13474_test: SkipByDesign # Requires checked mode. -map_literal4_test: SkipByDesign # Requires checked mode. positional_parameters_type_test/01: SkipByDesign # Requires checked mode. positional_parameters_type_test/02: SkipByDesign # Requires checked mode. +regress_29784_test/02: SkipByDesign # Requires checked mode. stacktrace_demangle_ctors_test: SkipByDesign # Names are not scrubbed. type_checks_in_factory_method_test: SkipByDesign # Requires checked mode. +[ $compiler != dartdevc && $compiler != dartdevk && $compiler != dartk && $compiler != dartkp && $strong ] +type_promotion_functions_test: CompileTimeError # Issue 30895: This test requires a complete rewrite for 2.0. + +[ $compiler != dartdevc && !$checked ] +function_type/*: Skip # Needs checked mode. + +[ $compiler != dartdevk && $compiler != dartk && $compiler != dartkp && $strong ] +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 +compile_time_constant_static5_test/23: CompileTimeError # Issue 30546 +issue_25671a_test/01: CompileTimeError +issue_25671b_test/01: CompileTimeError +type_promotion_more_specific_test/04: CompileTimeError # Issue 30906. + +[ $compiler != dartk && $compiler != dartkp && $mode == debug && $runtime == vm ] +built_in_identifier_type_annotation_test/15: Crash # Not supported by legacy VM front-end. + [ $compiler == none && $runtime == drt && !$checked ] assertion_initializer_const_error_test/01: Fail -[ !$checked && $compiler != dartdevc ] -function_type/*: Skip # Needs checked mode. - -[ $hot_reload || $hot_reload_rollback ] -cha_deopt1_test: Crash # Requires deferred libraries -cha_deopt2_test: Crash # Requires deferred libraries -cha_deopt3_test: Crash # Requires deferred libraries -deferred_call_empty_before_load_test: Crash # Requires deferred libraries -deferred_closurize_load_library_test: Crash # Requires deferred libraries -deferred_constant_list_test: Crash # Requires deferred libraries -deferred_constraints_constants_test: Crash # Requires deferred libraries -deferred_constraints_type_annotation_test: Crash # Requires deferred libraries -deferred_function_type_test: Crash # Requires deferred libraries -deferred_global_test: Crash # Requires deferred libraries -deferred_import_core_test: Crash # Requires deferred libraries -deferred_inlined_test: Crash # Requires deferred libraries -deferred_inheritance_constraints_test: Crash # Requires deferred libraries -deferred_load_constants_test: Crash # Requires deferred libraries -deferred_load_inval_code_test: Crash # Requires deferred libraries -deferred_load_library_wrong_args_test: Crash # Requires deferred libraries -deferred_mixin_test: Crash # Requires deferred libraries -deferred_no_such_method_test: Crash # Requires deferred libraries -deferred_not_loaded_check_test: Crash # Requires deferred libraries -deferred_only_constant_test: Crash # Requires deferred libraries -deferred_optimized_test: Crash # Requires deferred libraries -deferred_redirecting_factory_test: Crash # Requires deferred libraries -deferred_regression_22995_test: Crash # Requires deferred libraries -deferred_regression_28678_test: Crash # Requires deferred libraries -deferred_shadow_load_library_test: Crash # Requires deferred libraries -deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries -deferred_static_seperate_test: Crash # Requires deferred libraries -deferred_super_dependency_test: Pass, Crash # Requires deferred libraries -deferred_type_dependency_test: Crash # Requires deferred libraries -issue21159_test: Pass, Crash # Issue 29094 -issue_22780_test/01: Pass, Crash # Issue 29094 -issue_1751477_test: Crash # Requires deferred libraries -regress_23408_test: Crash # Requires deferred libraries -regress_22443_test: Crash # Requires deferred libraries -regress_28278_test: Crash # Requires deferred libraries -static_closure_identical_test: Pass, Fail # Closure identity -vm/regress_27201_test: Pass, Crash # Requires deferred libraries -vm/optimized_stacktrace_test: Pass, Slow -conditional_import_test: Crash # Requires deferred libraries -conditional_import_string_test: Crash # Requires deferred libraries - -[ $checked && ! $strong ] -type_parameter_test/05: Pass - -[ ! $checked && ! $strong && $compiler != spec_parser ] +[ $compiler != spec_parser && !$checked && !$strong ] closure_type_test: RuntimeError map_literal1_test/01: MissingCompileTimeError -[ ! $strong && $compiler != spec_parser ] -class_literal_static_test/none: Pass +[ $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 @@ -110,8 +86,8 @@ 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/none: Pass 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 @@ -183,34 +159,59 @@ void_type_usage_test: Skip # Requires strong mode wrong_number_type_arguments_test/*: MissingCompileTimeError # Requires strong mode wrong_number_type_arguments_test/none: Pass -[ !$strong && $runtime != none ] +[ $runtime != none && !$strong ] map_literal11_test/none: MissingRuntimeError map_literal7_test: RuntimeError # Requires strong mode -[ $strong && $compiler != dartk && $compiler != dartkp && $compiler != dartdevk ] -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 -compile_time_constant_static5_test/23: CompileTimeError # Issue 30546 -issue_25671a_test/01: CompileTimeError -issue_25671b_test/01: CompileTimeError -type_promotion_more_specific_test/04: CompileTimeError # Issue 30906. +[ $checked && !$strong ] +type_parameter_test/05: Pass -[ $strong && $compiler != dartk && $compiler != dartkp && $compiler != dartdevc && $compiler != dartdevk] -type_promotion_functions_test: CompileTimeError # Issue 30895: This test requires a complete rewrite for 2.0. - -[ $compiler == app_jit ] -deferred_inheritance_constraints_test/redirecting_constructor: Crash - -[ $compiler == none || $compiler == app_jit ] -library_env_test/has_no_mirror_support: RuntimeError, OK - -[ $mode == debug && ($compiler != dartk && $compiler != dartkp) && $runtime == vm] -built_in_identifier_type_annotation_test/15: Crash # Not supported by legacy VM front-end. - -[ $minified && !$dart2js_with_kernel ] +[ !$dart2js_with_kernel && $minified ] regress_21795_test: RuntimeError # Issue 12605 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. -[ $compiler != dart2analyzer] -switch_case_warn_test: SKIP # Analyzer only, see language_analyzer2.status +[ $compiler == app_jit || $compiler == none ] +library_env_test/has_no_mirror_support: RuntimeError, OK + +[ $hot_reload || $hot_reload_rollback ] +cha_deopt1_test: Crash # Requires deferred libraries +cha_deopt2_test: Crash # Requires deferred libraries +cha_deopt3_test: Crash # Requires deferred libraries +conditional_import_string_test: Crash # Requires deferred libraries +conditional_import_test: Crash # Requires deferred libraries +deferred_call_empty_before_load_test: Crash # Requires deferred libraries +deferred_closurize_load_library_test: Crash # Requires deferred libraries +deferred_constant_list_test: Crash # Requires deferred libraries +deferred_constraints_constants_test: Crash # Requires deferred libraries +deferred_constraints_type_annotation_test: Crash # Requires deferred libraries +deferred_function_type_test: Crash # Requires deferred libraries +deferred_global_test: Crash # Requires deferred libraries +deferred_import_core_test: Crash # Requires deferred libraries +deferred_inheritance_constraints_test: Crash # Requires deferred libraries +deferred_inlined_test: Crash # Requires deferred libraries +deferred_load_constants_test: Crash # Requires deferred libraries +deferred_load_inval_code_test: Crash # Requires deferred libraries +deferred_load_library_wrong_args_test: Crash # Requires deferred libraries +deferred_mixin_test: Crash # Requires deferred libraries +deferred_no_such_method_test: Crash # Requires deferred libraries +deferred_not_loaded_check_test: Crash # Requires deferred libraries +deferred_only_constant_test: Crash # Requires deferred libraries +deferred_optimized_test: Crash # Requires deferred libraries +deferred_redirecting_factory_test: Crash # Requires deferred libraries +deferred_regression_22995_test: Crash # Requires deferred libraries +deferred_regression_28678_test: Crash # Requires deferred libraries +deferred_shadow_load_library_test: Crash # Requires deferred libraries +deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries +deferred_static_seperate_test: Crash # Requires deferred libraries +deferred_super_dependency_test: Pass, Crash # Requires deferred libraries +deferred_type_dependency_test: Crash # Requires deferred libraries +issue21159_test: Pass, Crash # Issue 29094 +issue_1751477_test: Crash # Requires deferred libraries +issue_22780_test/01: Pass, Crash # Issue 29094 +regress_22443_test: Crash # Requires deferred libraries +regress_23408_test: Crash # Requires deferred libraries +regress_28278_test: Crash # Requires deferred libraries +static_closure_identical_test: Pass, Fail # Closure identity +vm/optimized_stacktrace_test: Pass, Slow +vm/regress_27201_test: Pass, Crash # Requires deferred libraries + diff --git a/tests/language_2/language_2_analyzer.status b/tests/language_2/language_2_analyzer.status index 7407cfd06b8..e63a04219b5 100644 --- a/tests/language_2/language_2_analyzer.status +++ b/tests/language_2/language_2_analyzer.status @@ -1,503 +1,172 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$compiler == dart2analyzer". -# Analyzer only implements Dart 2.0 static type checking with "--strong". -[ $compiler == dart2analyzer && ! $strong && ! $checked ] -abstract_beats_arguments_test: MissingCompileTimeError -abstract_exact_selector_test/01: MissingCompileTimeError -abstract_factory_constructor_test/00: MissingCompileTimeError -abstract_getter_test/01: MissingCompileTimeError -abstract_syntax_test/00: MissingCompileTimeError -assign_static_type_test/01: MissingCompileTimeError -assign_static_type_test/02: MissingCompileTimeError -assign_static_type_test/03: MissingCompileTimeError -assign_static_type_test/04: MissingCompileTimeError -assign_static_type_test/05: MissingCompileTimeError -assign_static_type_test/06: MissingCompileTimeError -assign_to_type_test/01: MissingCompileTimeError -assign_to_type_test/02: MissingCompileTimeError -assign_to_type_test/03: MissingCompileTimeError -assign_to_type_test/04: MissingCompileTimeError -assign_top_method_test: MissingCompileTimeError -async_await_syntax_test/a10a: MissingCompileTimeError -async_await_syntax_test/b10a: MissingCompileTimeError -async_await_syntax_test/c10a: MissingCompileTimeError -async_await_syntax_test/d08b: MissingCompileTimeError -async_await_syntax_test/d10a: MissingCompileTimeError -async_or_generator_return_type_stacktrace_test/01: MissingCompileTimeError -async_or_generator_return_type_stacktrace_test/02: MissingCompileTimeError -async_or_generator_return_type_stacktrace_test/03: MissingCompileTimeError -async_return_types_test/nestedFuture: MissingCompileTimeError -async_return_types_test/tooManyTypeParameters: MissingCompileTimeError -async_return_types_test/wrongReturnType: MissingCompileTimeError -async_return_types_test/wrongTypeParameter: MissingCompileTimeError -bad_named_parameters2_test/01: MissingCompileTimeError -bad_named_parameters_test/01: MissingCompileTimeError -bad_named_parameters_test/02: MissingCompileTimeError -bad_named_parameters_test/03: MissingCompileTimeError -bad_named_parameters_test/04: MissingCompileTimeError -bad_named_parameters_test/05: MissingCompileTimeError -bad_override_test/01: MissingCompileTimeError -bad_override_test/02: MissingCompileTimeError -bad_override_test/06: MissingCompileTimeError -bit_operations_test/03: StaticWarning -bit_operations_test/04: StaticWarning -call_constructor_on_unresolvable_class_test/01: MissingCompileTimeError -call_constructor_on_unresolvable_class_test/02: MissingCompileTimeError -call_constructor_on_unresolvable_class_test/03: MissingCompileTimeError -call_non_method_field_test/01: MissingCompileTimeError -call_non_method_field_test/02: MissingCompileTimeError -call_nonexistent_constructor_test/01: MissingCompileTimeError -call_nonexistent_constructor_test/02: MissingCompileTimeError -call_nonexistent_static_test/01: MissingCompileTimeError -call_nonexistent_static_test/02: MissingCompileTimeError -call_nonexistent_static_test/03: MissingCompileTimeError -call_nonexistent_static_test/04: MissingCompileTimeError -call_nonexistent_static_test/05: MissingCompileTimeError -call_nonexistent_static_test/06: MissingCompileTimeError -call_nonexistent_static_test/07: MissingCompileTimeError -call_nonexistent_static_test/08: MissingCompileTimeError -call_nonexistent_static_test/09: MissingCompileTimeError -call_nonexistent_static_test/10: MissingCompileTimeError -call_through_getter_test/01: MissingCompileTimeError -call_through_getter_test/02: MissingCompileTimeError -call_type_literal_test/01: MissingCompileTimeError -callable_test/00: MissingCompileTimeError -callable_test/01: MissingCompileTimeError -check_member_static_test/01: MissingCompileTimeError -check_method_override_test/01: MissingCompileTimeError -check_method_override_test/02: MissingCompileTimeError -const_constructor2_test/13: MissingCompileTimeError -const_constructor2_test/14: MissingCompileTimeError -const_constructor2_test/15: MissingCompileTimeError -const_constructor2_test/16: MissingCompileTimeError -const_constructor2_test/17: MissingCompileTimeError -const_constructor2_test/18: MissingCompileTimeError -const_constructor2_test/20: MissingCompileTimeError -const_constructor2_test/22: MissingCompileTimeError -const_constructor2_test/24: MissingCompileTimeError -const_constructor3_test/02: MissingCompileTimeError -const_constructor3_test/04: MissingCompileTimeError -const_init2_test/02: MissingCompileTimeError -constructor_call_as_function_test/01: MissingCompileTimeError -constructor_duplicate_final_test/01: MissingCompileTimeError -constructor_duplicate_final_test/02: MissingCompileTimeError -constructor_named_arguments_test/01: MissingCompileTimeError -covariant_subtyping_with_substitution_test: StaticWarning -cyclic_type_variable_test/01: MissingCompileTimeError -cyclic_type_variable_test/02: MissingCompileTimeError -cyclic_type_variable_test/03: MissingCompileTimeError -cyclic_type_variable_test/04: MissingCompileTimeError -cyclic_typedef_test/13: MissingCompileTimeError -default_factory2_test/01: MissingCompileTimeError -default_factory_test/01: MissingCompileTimeError -deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError -deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError -deferred_inheritance_constraints_test/redirecting_constructor: MissingCompileTimeError -dynamic_field_test/01: MissingCompileTimeError -dynamic_field_test/02: MissingCompileTimeError -dynamic_prefix_core_test/01: MissingCompileTimeError -emit_const_fields_test: Pass -empty_block_case_test: MissingCompileTimeError -enum_private_test/02: MissingCompileTimeError -field_initialization_order_test/01: MissingCompileTimeError -field_method4_test: MissingCompileTimeError -for_in3_test: MissingCompileTimeError -for_in_side_effects_test/01: MissingCompileTimeError -function_malformed_result_type_test/00: MissingCompileTimeError -function_type_call_getter2_test/00: MissingCompileTimeError -function_type_call_getter2_test/01: MissingCompileTimeError -function_type_call_getter2_test/02: MissingCompileTimeError -function_type_call_getter2_test/03: MissingCompileTimeError -function_type_call_getter2_test/04: MissingCompileTimeError -function_type_call_getter2_test/05: MissingCompileTimeError -generic_methods_bounds_test/01: MissingCompileTimeError -generic_methods_closure_test: StaticWarning -generic_methods_dynamic_test/01: MissingCompileTimeError -generic_methods_dynamic_test/03: MissingCompileTimeError -generic_methods_local_variable_declaration_test: StaticWarning -generic_methods_overriding_test/01: MissingCompileTimeError -generic_methods_overriding_test/03: MissingCompileTimeError -generic_methods_overriding_test/06: StaticWarning -generic_methods_recursive_bound_test/02: MissingCompileTimeError -generic_methods_shadowing_test: StaticWarning -generic_methods_simple_is_expression_test: StaticWarning -generic_no_such_method_dispatcher_test: StaticWarning -generic_tearoff_test: CompileTimeError -getter_no_setter2_test/00: MissingCompileTimeError -getter_no_setter2_test/01: MissingCompileTimeError -getter_no_setter2_test/03: MissingCompileTimeError -getter_no_setter_test/00: MissingCompileTimeError -getter_no_setter_test/01: MissingCompileTimeError -getter_no_setter_test/03: MissingCompileTimeError -getter_override_test/03: MissingCompileTimeError -getters_setters2_test/02: MissingCompileTimeError -identical_const_test/01: MissingCompileTimeError -identical_const_test/02: MissingCompileTimeError -identical_const_test/03: MissingCompileTimeError -identical_const_test/04: MissingCompileTimeError -if_null_assignment_behavior_test/03: MissingCompileTimeError -if_null_assignment_behavior_test/13: MissingCompileTimeError -if_null_assignment_behavior_test/15: MissingCompileTimeError -if_null_assignment_static_test/02: MissingCompileTimeError -if_null_assignment_static_test/04: MissingCompileTimeError -if_null_assignment_static_test/06: MissingCompileTimeError -if_null_assignment_static_test/07: MissingCompileTimeError -if_null_assignment_static_test/09: MissingCompileTimeError -if_null_assignment_static_test/11: MissingCompileTimeError -if_null_assignment_static_test/13: MissingCompileTimeError -if_null_assignment_static_test/14: MissingCompileTimeError -if_null_assignment_static_test/16: MissingCompileTimeError -if_null_assignment_static_test/18: MissingCompileTimeError -if_null_assignment_static_test/20: MissingCompileTimeError -if_null_assignment_static_test/21: MissingCompileTimeError -if_null_assignment_static_test/23: MissingCompileTimeError -if_null_assignment_static_test/25: MissingCompileTimeError -if_null_assignment_static_test/27: MissingCompileTimeError -if_null_assignment_static_test/28: MissingCompileTimeError -if_null_assignment_static_test/30: MissingCompileTimeError -if_null_assignment_static_test/32: MissingCompileTimeError -if_null_assignment_static_test/34: MissingCompileTimeError -if_null_assignment_static_test/35: MissingCompileTimeError -if_null_assignment_static_test/37: MissingCompileTimeError -if_null_assignment_static_test/39: MissingCompileTimeError -if_null_assignment_static_test/41: MissingCompileTimeError -if_null_assignment_static_test/42: MissingCompileTimeError -if_null_precedence_test/06: MissingCompileTimeError -if_null_precedence_test/07: MissingCompileTimeError -is_not_class2_test/*: MissingCompileTimeError -library_ambiguous_test/04: MissingCompileTimeError -list_literal1_test/01: MissingCompileTimeError -malformed2_test/00: MissingCompileTimeError -method_override2_test/00: MissingCompileTimeError -method_override2_test/01: MissingCompileTimeError -method_override2_test/02: MissingCompileTimeError -method_override2_test/03: MissingCompileTimeError -method_override3_test/00: MissingCompileTimeError -method_override3_test/01: MissingCompileTimeError -method_override3_test/02: MissingCompileTimeError -method_override4_test/01: MissingCompileTimeError -method_override4_test/02: MissingCompileTimeError -method_override4_test/03: MissingCompileTimeError -method_override5_test/01: MissingCompileTimeError -method_override5_test/02: MissingCompileTimeError -method_override5_test/03: MissingCompileTimeError -method_override6_test/01: MissingCompileTimeError -method_override6_test/02: MissingCompileTimeError -method_override6_test/03: MissingCompileTimeError -method_override8_test/03: MissingCompileTimeError -mixin_of_mixin_test/01: MissingCompileTimeError -mixin_of_mixin_test/02: MissingCompileTimeError -mixin_of_mixin_test/03: MissingCompileTimeError -mixin_of_mixin_test/04: MissingCompileTimeError -mixin_of_mixin_test/05: MissingCompileTimeError -mixin_of_mixin_test/06: MissingCompileTimeError -mixin_super_2_test/01: MissingCompileTimeError -mixin_super_2_test/03: MissingCompileTimeError -mixin_super_bound_test/01: MissingCompileTimeError -mixin_super_bound_test/02: MissingCompileTimeError -mixin_supertype_subclass_test/02: MissingCompileTimeError -mixin_supertype_subclass_test/05: MissingCompileTimeError -mixin_type_parameters_errors_test/01: MissingCompileTimeError -mixin_type_parameters_errors_test/02: MissingCompileTimeError -mixin_type_parameters_errors_test/03: MissingCompileTimeError -mixin_type_parameters_errors_test/04: MissingCompileTimeError -mixin_type_parameters_errors_test/05: MissingCompileTimeError -mixin_with_two_implicit_constructors_test: MissingCompileTimeError -multiline_newline_test/01: CompileTimeError -multiline_newline_test/01r: CompileTimeError -multiline_newline_test/02: CompileTimeError -multiline_newline_test/02r: CompileTimeError -multiline_newline_test/04: MissingCompileTimeError -multiline_newline_test/04r: MissingCompileTimeError -multiline_newline_test/05: MissingCompileTimeError -multiline_newline_test/05r: MissingCompileTimeError -named_constructor_test/01: MissingCompileTimeError -named_constructor_test/03: MissingCompileTimeError -named_parameters2_test: MissingCompileTimeError -named_parameters3_test: MissingCompileTimeError -named_parameters4_test: MissingCompileTimeError -named_parameters_aggregated_test/05: MissingCompileTimeError -new_expression_type_args_test/00: MissingCompileTimeError -new_expression_type_args_test/01: MissingCompileTimeError -new_expression_type_args_test/02: MissingCompileTimeError -new_prefix_test/01: MissingCompileTimeError -no_such_constructor_test/01: MissingCompileTimeError -not_enough_positional_arguments_test/00: MissingCompileTimeError -not_enough_positional_arguments_test/02: MissingCompileTimeError -not_enough_positional_arguments_test/03: MissingCompileTimeError -not_enough_positional_arguments_test/05: MissingCompileTimeError -not_enough_positional_arguments_test/06: MissingCompileTimeError -not_enough_positional_arguments_test/07: MissingCompileTimeError -optional_named_parameters_test/01: MissingCompileTimeError -optional_named_parameters_test/02: MissingCompileTimeError -optional_named_parameters_test/03: MissingCompileTimeError -optional_named_parameters_test/04: MissingCompileTimeError -optional_named_parameters_test/05: MissingCompileTimeError -optional_named_parameters_test/06: MissingCompileTimeError -optional_named_parameters_test/07: MissingCompileTimeError -optional_named_parameters_test/08: MissingCompileTimeError -optional_named_parameters_test/09: MissingCompileTimeError -override_field_test/02: MissingCompileTimeError -override_inheritance_abstract_test/02: MissingCompileTimeError -override_inheritance_abstract_test/03: MissingCompileTimeError -override_inheritance_abstract_test/04: MissingCompileTimeError -override_inheritance_abstract_test/08: MissingCompileTimeError -override_inheritance_abstract_test/09: MissingCompileTimeError -override_inheritance_abstract_test/10: MissingCompileTimeError -override_inheritance_abstract_test/11: MissingCompileTimeError -override_inheritance_abstract_test/12: MissingCompileTimeError -override_inheritance_abstract_test/13: MissingCompileTimeError -override_inheritance_abstract_test/14: MissingCompileTimeError -override_inheritance_abstract_test/17: MissingCompileTimeError -override_inheritance_abstract_test/19: MissingCompileTimeError -override_inheritance_abstract_test/20: MissingCompileTimeError -override_inheritance_abstract_test/21: MissingCompileTimeError -override_inheritance_abstract_test/22: MissingCompileTimeError -override_inheritance_abstract_test/23: MissingCompileTimeError -override_inheritance_abstract_test/24: MissingCompileTimeError -override_inheritance_abstract_test/25: MissingCompileTimeError -override_inheritance_abstract_test/26: MissingCompileTimeError -override_inheritance_abstract_test/28: MissingCompileTimeError -override_inheritance_field_test/05: MissingCompileTimeError -override_inheritance_field_test/07: MissingCompileTimeError -override_inheritance_field_test/08: MissingCompileTimeError -override_inheritance_field_test/09: MissingCompileTimeError -override_inheritance_field_test/10: MissingCompileTimeError -override_inheritance_field_test/11: MissingCompileTimeError -override_inheritance_field_test/28: MissingCompileTimeError -override_inheritance_field_test/30: MissingCompileTimeError -override_inheritance_field_test/31: MissingCompileTimeError -override_inheritance_field_test/32: MissingCompileTimeError -override_inheritance_field_test/33: MissingCompileTimeError -override_inheritance_field_test/33a: MissingCompileTimeError -override_inheritance_field_test/34: MissingCompileTimeError -override_inheritance_field_test/44: MissingCompileTimeError -override_inheritance_field_test/47: MissingCompileTimeError -override_inheritance_field_test/48: MissingCompileTimeError -override_inheritance_field_test/53: MissingCompileTimeError -override_inheritance_field_test/54: MissingCompileTimeError -override_inheritance_generic_test/04: MissingCompileTimeError -override_inheritance_generic_test/06: MissingCompileTimeError -override_inheritance_generic_test/07: MissingCompileTimeError -override_inheritance_generic_test/08: MissingCompileTimeError -override_inheritance_generic_test/09: MissingCompileTimeError -override_inheritance_generic_test/10: MissingCompileTimeError -override_inheritance_method_test/04: MissingCompileTimeError -override_inheritance_method_test/05: MissingCompileTimeError -override_inheritance_method_test/06: MissingCompileTimeError -override_inheritance_method_test/11: MissingCompileTimeError -override_inheritance_method_test/12: MissingCompileTimeError -override_inheritance_method_test/13: MissingCompileTimeError -override_inheritance_method_test/14: MissingCompileTimeError -override_inheritance_method_test/19: MissingCompileTimeError -override_inheritance_method_test/20: MissingCompileTimeError -override_inheritance_method_test/21: MissingCompileTimeError -override_inheritance_method_test/27: MissingCompileTimeError -override_inheritance_method_test/30: MissingCompileTimeError -override_inheritance_method_test/31: MissingCompileTimeError -override_inheritance_method_test/32: MissingCompileTimeError -override_inheritance_method_test/33: MissingCompileTimeError -override_inheritance_mixed_test/06: MissingCompileTimeError -override_inheritance_mixed_test/07: MissingCompileTimeError -override_inheritance_mixed_test/08: MissingCompileTimeError -override_inheritance_mixed_test/09: MissingCompileTimeError -override_inheritance_no_such_method_test/01: MissingCompileTimeError -override_inheritance_no_such_method_test/02: MissingCompileTimeError -override_inheritance_no_such_method_test/06: MissingCompileTimeError -override_inheritance_no_such_method_test/07: MissingCompileTimeError -override_inheritance_no_such_method_test/09: MissingCompileTimeError -override_inheritance_no_such_method_test/10: MissingCompileTimeError -override_inheritance_no_such_method_test/12: MissingCompileTimeError -override_inheritance_no_such_method_test/13: MissingCompileTimeError -override_method_with_field_test/02: MissingCompileTimeError -parser_quirks_test: StaticWarning -part2_test/01: MissingCompileTimeError -static_field1_test/01: MissingCompileTimeError -static_field1a_test/01: MissingCompileTimeError -static_field3_test/01: MissingCompileTimeError -static_field3_test/02: MissingCompileTimeError -static_field3_test/03: MissingCompileTimeError -static_field3_test/04: MissingCompileTimeError -static_field_test/01: MissingCompileTimeError -static_field_test/02: MissingCompileTimeError -static_field_test/03: MissingCompileTimeError -static_field_test/04: MissingCompileTimeError -static_final_field2_test/01: MissingCompileTimeError -static_getter_no_setter1_test/01: MissingCompileTimeError -static_getter_no_setter2_test/01: MissingCompileTimeError -static_getter_no_setter3_test/01: MissingCompileTimeError -static_initializer_type_error_test: MissingCompileTimeError -static_setter_get_test/01: MissingCompileTimeError -string_interpolate_test: StaticWarning -string_test/01: MissingCompileTimeError -string_unicode1_negative_test: CompileTimeError -string_unicode2_negative_test: CompileTimeError -string_unicode3_negative_test: CompileTimeError -string_unicode4_negative_test: CompileTimeError -super_bound_closure_test/01: MissingCompileTimeError -super_operator_index_test/01: MissingCompileTimeError -super_operator_index_test/02: MissingCompileTimeError -super_operator_index_test/03: MissingCompileTimeError -super_operator_index_test/04: MissingCompileTimeError -super_operator_index_test/05: MissingCompileTimeError -super_operator_index_test/06: MissingCompileTimeError -super_operator_index_test/07: MissingCompileTimeError -switch_fallthru_test/01: MissingCompileTimeError -switch_case_warn_test/01: MissingCompileTimeError -switch_case_warn_test/02: MissingCompileTimeError -switch_case_warn_test/03: MissingCompileTimeError -switch_case_warn_test/04: MissingCompileTimeError -switch_case_warn_test/05: MissingCompileTimeError -switch_case_warn_test/06: MissingCompileTimeError -switch_case_warn_test/07: MissingCompileTimeError -switch_case_warn_test/08: MissingCompileTimeError -switch_case_warn_test/09: MissingCompileTimeError -switch_case_warn_test/10: MissingCompileTimeError -switch_case_warn_test/11: MissingCompileTimeError -switch_case_warn_test/12: MissingCompileTimeError -switch_case_warn_test/13: MissingCompileTimeError -switch_case_warn_test/14: MissingCompileTimeError -switch_case_warn_test/15: MissingCompileTimeError -switch_case_warn_test/16: MissingCompileTimeError -switch_case_warn_test/17: MissingCompileTimeError -type_check_const_function_typedef2_test: MissingCompileTimeError -type_parameter_test/05: MissingCompileTimeError -type_variable_identifier_expression_test: MissingCompileTimeError -type_variable_static_context_test: MissingCompileTimeError -external_test/25: MissingCompileTimeError -f_bounded_quantification_test/01: MissingCompileTimeError -f_bounded_quantification_test/02: MissingCompileTimeError -factory1_test/00: MissingCompileTimeError -factory1_test/01: MissingCompileTimeError -factory2_test/03: MissingCompileTimeError -factory2_test/none: MissingCompileTimeError -factory3_test/none: MissingCompileTimeError -factory4_test/00: MissingCompileTimeError -factory5_test/00: MissingCompileTimeError -factory6_test/00: MissingCompileTimeError -factory_redirection_test/01: MissingCompileTimeError -factory_redirection_test/02: MissingCompileTimeError -factory_redirection_test/03: MissingCompileTimeError -factory_redirection_test/05: MissingCompileTimeError -factory_redirection_test/06: MissingCompileTimeError -factory_redirection_test/08: MissingCompileTimeError -factory_redirection_test/09: MissingCompileTimeError -factory_redirection_test/10: MissingCompileTimeError -factory_redirection_test/11: MissingCompileTimeError -factory_redirection_test/12: MissingCompileTimeError -factory_redirection_test/13: MissingCompileTimeError -factory_redirection_test/14: MissingCompileTimeError -factory_redirection_test/none: MissingCompileTimeError -factory_return_type_checked_test/00: MissingCompileTimeError -unresolved_in_factory_test: MissingCompileTimeError -field_override2_test: MissingCompileTimeError -field_override_test/00: MissingCompileTimeError -field_override_test/01: MissingCompileTimeError -field_override_test/02: MissingCompileTimeError -field_override_test/none: MissingCompileTimeError -field_type_check_test/01: MissingCompileTimeError -final_attempt_reinitialization_test/01: MissingCompileTimeError -final_attempt_reinitialization_test/02: MissingCompileTimeError -final_syntax_test/10: MissingCompileTimeError -final_for_in_variable_test: MissingCompileTimeError -final_param_test: MissingCompileTimeError -final_super_field_set_test: MissingCompileTimeError -final_variable_assignment_test/01: MissingCompileTimeError -final_variable_assignment_test/02: MissingCompileTimeError -final_variable_assignment_test/03: MissingCompileTimeError -final_variable_assignment_test/04: MissingCompileTimeError -first_class_types_literals_test/03: MissingCompileTimeError -first_class_types_literals_test/04: MissingCompileTimeError -first_class_types_literals_test/05: MissingCompileTimeError -first_class_types_literals_test/06: MissingCompileTimeError -first_class_types_literals_test/07: MissingCompileTimeError -first_class_types_literals_test/08: MissingCompileTimeError -first_class_types_literals_test/09: MissingCompileTimeError -first_class_types_literals_test/10: MissingCompileTimeError -first_class_types_literals_test/11: MissingCompileTimeError -first_class_types_literals_test/12: MissingCompileTimeError -mixin_illegal_constructor_test/13: MissingCompileTimeError -mixin_illegal_constructor_test/14: MissingCompileTimeError -mixin_illegal_constructor_test/15: MissingCompileTimeError -mixin_illegal_constructor_test/16: MissingCompileTimeError -mixin_illegal_static_access_test/01: MissingCompileTimeError -mixin_illegal_static_access_test/02: MissingCompileTimeError -mixin_illegal_syntax_test/13: MissingCompileTimeError -mixin_invalid_bound2_test/02: MissingCompileTimeError -mixin_invalid_bound2_test/03: MissingCompileTimeError -mixin_invalid_bound2_test/04: MissingCompileTimeError -mixin_invalid_bound2_test/05: MissingCompileTimeError -mixin_invalid_bound2_test/06: MissingCompileTimeError -mixin_invalid_bound2_test/07: MissingCompileTimeError -mixin_invalid_bound2_test/08: MissingCompileTimeError -mixin_invalid_bound2_test/09: MissingCompileTimeError -mixin_invalid_bound2_test/10: MissingCompileTimeError -mixin_invalid_bound2_test/11: MissingCompileTimeError -mixin_invalid_bound2_test/12: MissingCompileTimeError -mixin_invalid_bound2_test/13: MissingCompileTimeError -mixin_invalid_bound2_test/14: MissingCompileTimeError -mixin_invalid_bound2_test/15: MissingCompileTimeError -mixin_invalid_bound_test/02: MissingCompileTimeError -mixin_invalid_bound_test/03: MissingCompileTimeError -mixin_invalid_bound_test/04: MissingCompileTimeError -mixin_invalid_bound_test/05: MissingCompileTimeError -mixin_invalid_bound_test/06: MissingCompileTimeError -mixin_invalid_bound_test/07: MissingCompileTimeError -mixin_invalid_bound_test/08: MissingCompileTimeError -mixin_invalid_bound_test/09: MissingCompileTimeError -mixin_invalid_bound_test/10: MissingCompileTimeError - [ $compiler == dart2analyzer ] -generic_no_such_method_dispatcher_simple_test: Skip # This test is just for kernel. -fuzzy_arrows_test/01: MissingCompileTimeError +abstract_override_adds_optional_args_concrete_subclass_test: MissingCompileTimeError # Issue #30568 +abstract_override_adds_optional_args_concrete_test: MissingCompileTimeError # Issue #30568 +abstract_override_adds_optional_args_supercall_test: MissingCompileTimeError # Issue #30568 +assertion_initializer_const_function_test/01: MissingCompileTimeError +async_return_types_test/nestedFuture: MissingCompileTimeError +await_test: Crash # Issue 31540 +bad_initializer1_negative_test: CompileTimeError # Issue 14529 +bad_initializer2_negative_test: Fail # Issue 14880 +black_listed_test/none: Fail # Issue 14228 +built_in_identifier_prefix_test: CompileTimeError built_in_identifier_type_annotation_test/22: MissingCompileTimeError # Issue 28813 built_in_identifier_type_annotation_test/85: Crash # Issue 28813 -await_test: Crash # Issue 31540 +cascade_test/none: Fail # Issue 11577 +config_import_corelib_test: StaticWarning, OK +conflicting_type_variable_and_setter_test: CompileTimeError # Issue 25525 +const_for_in_variable_test/01: MissingCompileTimeError # Issue 25161 +constructor_call_wrong_argument_count_negative_test: Fail # Issue 11585 +deep_nesting1_negative_test: CompileTimeError # Issue 25558 +deep_nesting2_negative_test: CompileTimeError # Issue 25558 +duplicate_export_negative_test: CompileTimeError +duplicate_interface_negative_test: CompileTimeError +emit_const_fields_test: CompileTimeError +enum_syntax_test/05: Fail # Issue 21649 +enum_syntax_test/06: Fail # Issue 21649 +field3_test/01: MissingCompileTimeError +final_syntax_test/01: Fail # Issue 11124 +final_syntax_test/02: Fail # Issue 11124 +final_syntax_test/03: Fail # Issue 11124 +final_syntax_test/04: Fail # Issue 11124 +function_type_parameter2_negative_test: CompileTimeError +function_type_parameter_negative_test: CompileTimeError +fuzzy_arrows_test/01: MissingCompileTimeError +generic_function_type_as_type_argument_test/01: MissingCompileTimeError # Issue 30929 +generic_function_type_as_type_argument_test/02: MissingCompileTimeError # Issue 30929 +generic_list_checked_test: StaticWarning +generic_local_functions_test: CompileTimeError # Issue 28515 +generic_methods_generic_function_parameter_test: CompileTimeError # Issue 28515 +generic_no_such_method_dispatcher_simple_test: Skip # This test is just for kernel. +generic_test: StaticWarning +generics_test: StaticWarning +getter_declaration_negative_test: CompileTimeError +getter_setter_in_lib_test: Fail # Issue 23286 +import_core_prefix_test: StaticWarning +initializing_formal_final_test: MissingCompileTimeError +inst_field_initializer1_negative_test: CompileTimeError +instance_call_wrong_argument_count_negative_test: Fail # Issue 11585 +instance_method2_negative_test: CompileTimeError +instance_method_negative_test: CompileTimeError +interface2_negative_test: CompileTimeError +interface_injection1_negative_test: CompileTimeError +interface_injection2_negative_test: CompileTimeError +interface_static_method_negative_test: CompileTimeError +interface_static_non_final_fields_negative_test: Fail # Issue 11594 +interface_test/00: MissingCompileTimeError +is_not_class1_negative_test: CompileTimeError +is_not_class4_negative_test: CompileTimeError +issue1578_negative_test: CompileTimeError +label2_negative_test: CompileTimeError +label3_negative_test: CompileTimeError +label5_negative_test: CompileTimeError +label6_negative_test: CompileTimeError +label8_negative_test: CompileTimeError +library_negative_test: CompileTimeError +list_literal2_negative_test: CompileTimeError +list_literal_negative_test: CompileTimeError +map_literal_negative_test: CompileTimeError +method_override7_test/03: Fail # Issue 11497 +method_override_test: StaticWarning +method_override_test: CompileTimeError +mixin_supertype_subclass2_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass2_test/05: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass3_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass3_test/05: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/01: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/03: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/04: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass4_test/05: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass_test/02: MissingStaticWarning # Issue 25614 +mixin_supertype_subclass_test/05: MissingStaticWarning # Issue 25614 +mock_writable_final_private_field_test: CompileTimeError # Issue 30848 +nested_generic_closure_test: CompileTimeError +new_expression1_negative_test: CompileTimeError +new_expression2_negative_test: CompileTimeError +new_expression3_negative_test: CompileTimeError +no_main_test/01: Fail # Issue 20030 +no_such_constructor2_test: StaticWarning +non_const_super_negative_test: CompileTimeError +operator1_negative_test: CompileTimeError +operator2_negative_test: CompileTimeError +override_field_method1_negative_test: CompileTimeError +override_field_method2_negative_test: CompileTimeError +override_field_method4_negative_test: CompileTimeError +override_field_method5_negative_test: CompileTimeError +override_field_test/03: Fail # Issue 29703 +parameter_initializer1_negative_test: CompileTimeError +parameter_initializer2_negative_test: CompileTimeError +parameter_initializer3_negative_test: CompileTimeError +parameter_initializer4_negative_test: CompileTimeError +parameter_initializer6_negative_test: CompileTimeError +part_refers_to_core_library_test/01: MissingCompileTimeError # Issue 29709 +prefix11_negative_test: Fail # Issue 11964 +prefix12_negative_test: Fail # Issue 11962 +prefix1_negative_test: Fail # Issue 11962 +prefix2_negative_test: Fail # Issue 11962 +prefix3_negative_test: Fail # Issue 12191 +prefix4_negative_test: Fail # Issue 11962 +prefix5_negative_test: Fail # Issue 11962 +prefix7_negative_test: CompileTimeError +prefix8_negative_test: Fail # Issue 11964 +private_member1_negative_test: Fail # Issue 14021 +private_member2_negative_test: Fail # Issue 14021 +private_member3_negative_test: Fail # Issue 14021 +regress_23408_test: Skip # don't care about the static warning. +regress_27617_test/1: MissingCompileTimeError +regress_29025_test: CompileTimeError # Issue 29081 +regress_29349_test: CompileTimeError # Issue 29744 +regress_29405_test: CompileTimeError # Issue 29421 +regress_29784_test/02: MissingCompileTimeError # Issue 29784 +reify_typevar_static_test/00: MissingCompileTimeError # Issue 21565 +script1_negative_test: CompileTimeError +script2_negative_test: CompileTimeError +setter_declaration2_negative_test: CompileTimeError +setter_declaration_negative_test: CompileTimeError +setter_no_getter_call_test/01: CompileTimeError +source_self_negative_test: CompileTimeError +static_call_wrong_argument_count_negative_test: Fail # Issue 12156 +string_escape4_negative_test: CompileTimeError +string_interpolate1_negative_test: CompileTimeError +string_interpolate2_negative_test: CompileTimeError +super_setter_test: StaticWarning +switch1_negative_test: CompileTimeError +switch3_negative_test: CompileTimeError +switch4_negative_test: CompileTimeError +switch5_negative_test: CompileTimeError +switch7_negative_test: CompileTimeError +syntax_test/none: Fail # Issue 11575 +test_negative_test: CompileTimeError +try_catch_on_syntax_test/10: MissingCompileTimeError +try_catch_on_syntax_test/11: MissingCompileTimeError +type_variable_scope_test/none: Fail # Issue 11578 +type_variable_static_context_negative_test: Fail # Issue 12161 +vm/debug_break_enabled_vm_test: Skip +vm/debug_break_vm_test/*: Skip +vm/lazy_deopt_with_exception_test: Pass +vm/reflect_core_vm_test: CompileTimeError +vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. -[ $compiler == dart2analyzer && !$strong ] -combiner_type_lookup_indexed_test: StaticWarning # Issue #31484 -combiner_type_lookup_instance_test: StaticWarning # Issue #31484 -combiner_type_lookup_static_test: StaticWarning # Issue #31484 -combiner_type_lookup_top_level_test: StaticWarning # Issue #31484 -constructor13_test/01: MissingCompileTimeError -constructor13_test/02: MissingCompileTimeError -int64_literal_test/03: MissingCompileTimeError -int64_literal_test/30: MissingCompileTimeError -invalid_cast_test/01: MissingCompileTimeError -invalid_cast_test/02: MissingCompileTimeError -invalid_cast_test/03: MissingCompileTimeError -invalid_cast_test/04: MissingCompileTimeError -invalid_cast_test/07: MissingCompileTimeError -invalid_cast_test/08: MissingCompileTimeError -invalid_cast_test/09: MissingCompileTimeError -invalid_cast_test/10: MissingCompileTimeError -invalid_cast_test/11: MissingCompileTimeError -object_has_no_call_method_test/02: MissingCompileTimeError -object_has_no_call_method_test/05: MissingCompileTimeError -object_has_no_call_method_test/08: MissingCompileTimeError +[ $compiler == dart2analyzer && $runtime == none ] +assertion_initializer_const_error2_test/cc10: CompileTimeError # Issue 31320 +assertion_initializer_const_error2_test/cc11: CompileTimeError # Issue 31320 +assertion_initializer_const_function_test/01: CompileTimeError +assertion_initializer_test: CompileTimeError +error_stacktrace_test/00: MissingCompileTimeError +vm/lazy_deopt_with_exception_test: CompileTimeError [ $compiler == dart2analyzer && $checked ] -assertion_initializer_const_error2_test/none: Pass assertion_initializer_const_error2_test/*: MissingCompileTimeError # Issue # assertion_initializer_const_error2_test/cc10: Pass # Issue #31321 assertion_initializer_const_error2_test/cc11: Pass # Issue #31321 +assertion_initializer_const_error2_test/none: Pass -[ $compiler == dart2analyzer && ! $strong && $checked ] +[ $compiler == dart2analyzer && $checked && !$strong ] abstract_beats_arguments_test: MissingCompileTimeError abstract_exact_selector_test/01: MissingCompileTimeError abstract_factory_constructor_test/00: MissingCompileTimeError @@ -594,8 +263,59 @@ dynamic_prefix_core_test/01: MissingCompileTimeError emit_const_fields_test: Pass empty_block_case_test: MissingCompileTimeError enum_private_test/02: MissingCompileTimeError +external_test/25: MissingCompileTimeError +f_bounded_quantification_test/01: MissingCompileTimeError +f_bounded_quantification_test/02: MissingCompileTimeError +factory1_test/00: MissingCompileTimeError +factory1_test/01: MissingCompileTimeError +factory2_test/03: MissingCompileTimeError +factory2_test/none: MissingCompileTimeError +factory3_test/none: MissingCompileTimeError +factory4_test/00: MissingCompileTimeError +factory5_test/00: MissingCompileTimeError +factory6_test/00: MissingCompileTimeError +factory_redirection_test/01: MissingCompileTimeError +factory_redirection_test/02: MissingCompileTimeError +factory_redirection_test/03: MissingCompileTimeError +factory_redirection_test/05: MissingCompileTimeError +factory_redirection_test/06: MissingCompileTimeError +factory_redirection_test/08: MissingCompileTimeError +factory_redirection_test/09: MissingCompileTimeError +factory_redirection_test/10: MissingCompileTimeError +factory_redirection_test/11: MissingCompileTimeError +factory_redirection_test/12: MissingCompileTimeError +factory_redirection_test/13: MissingCompileTimeError +factory_redirection_test/14: MissingCompileTimeError +factory_redirection_test/none: MissingCompileTimeError +factory_return_type_checked_test/00: MissingCompileTimeError field_initialization_order_test/01: MissingCompileTimeError field_method4_test: MissingCompileTimeError +field_override2_test: MissingCompileTimeError +field_override_test/00: MissingCompileTimeError +field_override_test/01: MissingCompileTimeError +field_override_test/02: MissingCompileTimeError +field_override_test/none: MissingCompileTimeError +field_type_check_test/01: MissingCompileTimeError +final_attempt_reinitialization_test/01: MissingCompileTimeError +final_attempt_reinitialization_test/02: MissingCompileTimeError +final_for_in_variable_test: MissingCompileTimeError +final_param_test: MissingCompileTimeError +final_super_field_set_test: MissingCompileTimeError +final_syntax_test/10: MissingCompileTimeError +final_variable_assignment_test/01: MissingCompileTimeError +final_variable_assignment_test/02: MissingCompileTimeError +final_variable_assignment_test/03: MissingCompileTimeError +final_variable_assignment_test/04: MissingCompileTimeError +first_class_types_literals_test/03: MissingCompileTimeError +first_class_types_literals_test/04: MissingCompileTimeError +first_class_types_literals_test/05: MissingCompileTimeError +first_class_types_literals_test/06: MissingCompileTimeError +first_class_types_literals_test/07: MissingCompileTimeError +first_class_types_literals_test/08: MissingCompileTimeError +first_class_types_literals_test/09: MissingCompileTimeError +first_class_types_literals_test/10: MissingCompileTimeError +first_class_types_literals_test/11: MissingCompileTimeError +first_class_types_literals_test/12: MissingCompileTimeError for_in3_test: MissingCompileTimeError for_in_side_effects_test/01: MissingCompileTimeError function_malformed_result_type_test/00: MissingCompileTimeError @@ -629,17 +349,47 @@ getter_no_setter_test/01: MissingCompileTimeError getter_no_setter_test/03: MissingCompileTimeError getter_override_test/03: MissingCompileTimeError getters_setters2_test/02: MissingCompileTimeError -method_override2_test/none: Pass method_override2_test/*: MissingCompileTimeError -method_override3_test/none: Pass +method_override2_test/none: Pass method_override3_test/*: MissingCompileTimeError -method_override4_test/none: Pass +method_override3_test/none: Pass method_override4_test/*: MissingCompileTimeError -method_override5_test/none: Pass +method_override4_test/none: Pass method_override5_test/*: MissingCompileTimeError -method_override6_test/none: Pass +method_override5_test/none: Pass method_override6_test/*: MissingCompileTimeError +method_override6_test/none: Pass method_override8_test/03: MissingCompileTimeError +mixin_illegal_constructor_test/13: MissingCompileTimeError +mixin_illegal_constructor_test/14: MissingCompileTimeError +mixin_illegal_constructor_test/15: MissingCompileTimeError +mixin_illegal_constructor_test/16: MissingCompileTimeError +mixin_illegal_static_access_test/01: MissingCompileTimeError +mixin_illegal_static_access_test/02: MissingCompileTimeError +mixin_illegal_syntax_test/13: MissingCompileTimeError +mixin_invalid_bound2_test/02: MissingCompileTimeError +mixin_invalid_bound2_test/03: MissingCompileTimeError +mixin_invalid_bound2_test/04: MissingCompileTimeError +mixin_invalid_bound2_test/05: MissingCompileTimeError +mixin_invalid_bound2_test/06: MissingCompileTimeError +mixin_invalid_bound2_test/07: MissingCompileTimeError +mixin_invalid_bound2_test/08: MissingCompileTimeError +mixin_invalid_bound2_test/09: MissingCompileTimeError +mixin_invalid_bound2_test/10: MissingCompileTimeError +mixin_invalid_bound2_test/11: MissingCompileTimeError +mixin_invalid_bound2_test/12: MissingCompileTimeError +mixin_invalid_bound2_test/13: MissingCompileTimeError +mixin_invalid_bound2_test/14: MissingCompileTimeError +mixin_invalid_bound2_test/15: MissingCompileTimeError +mixin_invalid_bound_test/02: MissingCompileTimeError +mixin_invalid_bound_test/03: MissingCompileTimeError +mixin_invalid_bound_test/04: MissingCompileTimeError +mixin_invalid_bound_test/05: MissingCompileTimeError +mixin_invalid_bound_test/06: MissingCompileTimeError +mixin_invalid_bound_test/07: MissingCompileTimeError +mixin_invalid_bound_test/08: MissingCompileTimeError +mixin_invalid_bound_test/09: MissingCompileTimeError +mixin_invalid_bound_test/10: MissingCompileTimeError mixin_of_mixin_test/01: MissingCompileTimeError mixin_of_mixin_test/02: MissingCompileTimeError mixin_of_mixin_test/03: MissingCompileTimeError @@ -782,8 +532,8 @@ static_final_field2_test/01: MissingCompileTimeError static_getter_no_setter1_test/01: MissingCompileTimeError static_getter_no_setter2_test/01: MissingCompileTimeError static_getter_no_setter3_test/01: MissingCompileTimeError -static_setter_get_test/01: MissingCompileTimeError static_initializer_type_error_test: MissingCompileTimeError +static_setter_get_test/01: MissingCompileTimeError string_interpolate_test: StaticWarning string_test/01: MissingCompileTimeError string_unicode1_negative_test: CompileTimeError @@ -818,6 +568,118 @@ switch_case_warn_test/17: MissingCompileTimeError switch_fallthru_test/01: MissingCompileTimeError type_variable_identifier_expression_test: MissingCompileTimeError type_variable_static_context_test: MissingCompileTimeError +unresolved_in_factory_test: MissingCompileTimeError + +# Analyzer only implements Dart 2.0 static type checking with "--strong". +[ $compiler == dart2analyzer && !$checked && !$strong ] +abstract_beats_arguments_test: MissingCompileTimeError +abstract_exact_selector_test/01: MissingCompileTimeError +abstract_factory_constructor_test/00: MissingCompileTimeError +abstract_getter_test/01: MissingCompileTimeError +abstract_syntax_test/00: MissingCompileTimeError +assign_static_type_test/01: MissingCompileTimeError +assign_static_type_test/02: MissingCompileTimeError +assign_static_type_test/03: MissingCompileTimeError +assign_static_type_test/04: MissingCompileTimeError +assign_static_type_test/05: MissingCompileTimeError +assign_static_type_test/06: MissingCompileTimeError +assign_to_type_test/01: MissingCompileTimeError +assign_to_type_test/02: MissingCompileTimeError +assign_to_type_test/03: MissingCompileTimeError +assign_to_type_test/04: MissingCompileTimeError +assign_top_method_test: MissingCompileTimeError +async_await_syntax_test/a10a: MissingCompileTimeError +async_await_syntax_test/b10a: MissingCompileTimeError +async_await_syntax_test/c10a: MissingCompileTimeError +async_await_syntax_test/d08b: MissingCompileTimeError +async_await_syntax_test/d10a: MissingCompileTimeError +async_or_generator_return_type_stacktrace_test/01: MissingCompileTimeError +async_or_generator_return_type_stacktrace_test/02: MissingCompileTimeError +async_or_generator_return_type_stacktrace_test/03: MissingCompileTimeError +async_return_types_test/nestedFuture: MissingCompileTimeError +async_return_types_test/tooManyTypeParameters: MissingCompileTimeError +async_return_types_test/wrongReturnType: MissingCompileTimeError +async_return_types_test/wrongTypeParameter: MissingCompileTimeError +bad_named_parameters2_test/01: MissingCompileTimeError +bad_named_parameters_test/01: MissingCompileTimeError +bad_named_parameters_test/02: MissingCompileTimeError +bad_named_parameters_test/03: MissingCompileTimeError +bad_named_parameters_test/04: MissingCompileTimeError +bad_named_parameters_test/05: MissingCompileTimeError +bad_override_test/01: MissingCompileTimeError +bad_override_test/02: MissingCompileTimeError +bad_override_test/06: MissingCompileTimeError +bit_operations_test/03: StaticWarning +bit_operations_test/04: StaticWarning +call_constructor_on_unresolvable_class_test/01: MissingCompileTimeError +call_constructor_on_unresolvable_class_test/02: MissingCompileTimeError +call_constructor_on_unresolvable_class_test/03: MissingCompileTimeError +call_non_method_field_test/01: MissingCompileTimeError +call_non_method_field_test/02: MissingCompileTimeError +call_nonexistent_constructor_test/01: MissingCompileTimeError +call_nonexistent_constructor_test/02: MissingCompileTimeError +call_nonexistent_static_test/01: MissingCompileTimeError +call_nonexistent_static_test/02: MissingCompileTimeError +call_nonexistent_static_test/03: MissingCompileTimeError +call_nonexistent_static_test/04: MissingCompileTimeError +call_nonexistent_static_test/05: MissingCompileTimeError +call_nonexistent_static_test/06: MissingCompileTimeError +call_nonexistent_static_test/07: MissingCompileTimeError +call_nonexistent_static_test/08: MissingCompileTimeError +call_nonexistent_static_test/09: MissingCompileTimeError +call_nonexistent_static_test/10: MissingCompileTimeError +call_through_getter_test/01: MissingCompileTimeError +call_through_getter_test/02: MissingCompileTimeError +call_type_literal_test/01: MissingCompileTimeError +callable_test/00: MissingCompileTimeError +callable_test/01: MissingCompileTimeError +check_member_static_test/01: MissingCompileTimeError +check_method_override_test/01: MissingCompileTimeError +check_method_override_test/02: MissingCompileTimeError +const_constructor2_test/13: MissingCompileTimeError +const_constructor2_test/14: MissingCompileTimeError +const_constructor2_test/15: MissingCompileTimeError +const_constructor2_test/16: MissingCompileTimeError +const_constructor2_test/17: MissingCompileTimeError +const_constructor2_test/18: MissingCompileTimeError +const_constructor2_test/20: MissingCompileTimeError +const_constructor2_test/22: MissingCompileTimeError +const_constructor2_test/24: MissingCompileTimeError +const_constructor3_test/02: MissingCompileTimeError +const_constructor3_test/04: MissingCompileTimeError +const_init2_test/02: MissingCompileTimeError +constructor_call_as_function_test/01: MissingCompileTimeError +constructor_duplicate_final_test/01: MissingCompileTimeError +constructor_duplicate_final_test/02: MissingCompileTimeError +constructor_named_arguments_test/01: MissingCompileTimeError +covariant_subtyping_with_substitution_test: StaticWarning +cyclic_type_variable_test/01: MissingCompileTimeError +cyclic_type_variable_test/02: MissingCompileTimeError +cyclic_type_variable_test/03: MissingCompileTimeError +cyclic_type_variable_test/04: MissingCompileTimeError +cyclic_typedef_test/13: MissingCompileTimeError +default_factory2_test/01: MissingCompileTimeError +default_factory_test/01: MissingCompileTimeError +deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError +deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError +deferred_inheritance_constraints_test/redirecting_constructor: MissingCompileTimeError +dynamic_field_test/01: MissingCompileTimeError +dynamic_field_test/02: MissingCompileTimeError +dynamic_prefix_core_test/01: MissingCompileTimeError +emit_const_fields_test: Pass +empty_block_case_test: MissingCompileTimeError +enum_private_test/02: MissingCompileTimeError external_test/25: MissingCompileTimeError f_bounded_quantification_test/01: MissingCompileTimeError f_bounded_quantification_test/02: MissingCompileTimeError @@ -843,7 +705,8 @@ factory_redirection_test/13: MissingCompileTimeError factory_redirection_test/14: MissingCompileTimeError factory_redirection_test/none: MissingCompileTimeError factory_return_type_checked_test/00: MissingCompileTimeError -unresolved_in_factory_test: MissingCompileTimeError +field_initialization_order_test/01: MissingCompileTimeError +field_method4_test: MissingCompileTimeError field_override2_test: MissingCompileTimeError field_override_test/00: MissingCompileTimeError field_override_test/01: MissingCompileTimeError @@ -852,10 +715,10 @@ field_override_test/none: MissingCompileTimeError field_type_check_test/01: MissingCompileTimeError final_attempt_reinitialization_test/01: MissingCompileTimeError final_attempt_reinitialization_test/02: MissingCompileTimeError -final_syntax_test/10: MissingCompileTimeError final_for_in_variable_test: MissingCompileTimeError final_param_test: MissingCompileTimeError final_super_field_set_test: MissingCompileTimeError +final_syntax_test/10: MissingCompileTimeError final_variable_assignment_test/01: MissingCompileTimeError final_variable_assignment_test/02: MissingCompileTimeError final_variable_assignment_test/03: MissingCompileTimeError @@ -870,6 +733,90 @@ first_class_types_literals_test/09: MissingCompileTimeError first_class_types_literals_test/10: MissingCompileTimeError first_class_types_literals_test/11: MissingCompileTimeError first_class_types_literals_test/12: MissingCompileTimeError +for_in3_test: MissingCompileTimeError +for_in_side_effects_test/01: MissingCompileTimeError +function_malformed_result_type_test/00: MissingCompileTimeError +function_type_call_getter2_test/00: MissingCompileTimeError +function_type_call_getter2_test/01: MissingCompileTimeError +function_type_call_getter2_test/02: MissingCompileTimeError +function_type_call_getter2_test/03: MissingCompileTimeError +function_type_call_getter2_test/04: MissingCompileTimeError +function_type_call_getter2_test/05: MissingCompileTimeError +generic_methods_bounds_test/01: MissingCompileTimeError +generic_methods_closure_test: StaticWarning +generic_methods_dynamic_test/01: MissingCompileTimeError +generic_methods_dynamic_test/03: MissingCompileTimeError +generic_methods_local_variable_declaration_test: StaticWarning +generic_methods_overriding_test/01: MissingCompileTimeError +generic_methods_overriding_test/03: MissingCompileTimeError +generic_methods_overriding_test/06: StaticWarning +generic_methods_recursive_bound_test/02: MissingCompileTimeError +generic_methods_shadowing_test: StaticWarning +generic_methods_simple_is_expression_test: StaticWarning +generic_no_such_method_dispatcher_test: StaticWarning +generic_tearoff_test: CompileTimeError +getter_no_setter2_test/00: MissingCompileTimeError +getter_no_setter2_test/01: MissingCompileTimeError +getter_no_setter2_test/03: MissingCompileTimeError +getter_no_setter_test/00: MissingCompileTimeError +getter_no_setter_test/01: MissingCompileTimeError +getter_no_setter_test/03: MissingCompileTimeError +getter_override_test/03: MissingCompileTimeError +getters_setters2_test/02: MissingCompileTimeError +identical_const_test/01: MissingCompileTimeError +identical_const_test/02: MissingCompileTimeError +identical_const_test/03: MissingCompileTimeError +identical_const_test/04: MissingCompileTimeError +if_null_assignment_behavior_test/03: MissingCompileTimeError +if_null_assignment_behavior_test/13: MissingCompileTimeError +if_null_assignment_behavior_test/15: MissingCompileTimeError +if_null_assignment_static_test/02: MissingCompileTimeError +if_null_assignment_static_test/04: MissingCompileTimeError +if_null_assignment_static_test/06: MissingCompileTimeError +if_null_assignment_static_test/07: MissingCompileTimeError +if_null_assignment_static_test/09: MissingCompileTimeError +if_null_assignment_static_test/11: MissingCompileTimeError +if_null_assignment_static_test/13: MissingCompileTimeError +if_null_assignment_static_test/14: MissingCompileTimeError +if_null_assignment_static_test/16: MissingCompileTimeError +if_null_assignment_static_test/18: MissingCompileTimeError +if_null_assignment_static_test/20: MissingCompileTimeError +if_null_assignment_static_test/21: MissingCompileTimeError +if_null_assignment_static_test/23: MissingCompileTimeError +if_null_assignment_static_test/25: MissingCompileTimeError +if_null_assignment_static_test/27: MissingCompileTimeError +if_null_assignment_static_test/28: MissingCompileTimeError +if_null_assignment_static_test/30: MissingCompileTimeError +if_null_assignment_static_test/32: MissingCompileTimeError +if_null_assignment_static_test/34: MissingCompileTimeError +if_null_assignment_static_test/35: MissingCompileTimeError +if_null_assignment_static_test/37: MissingCompileTimeError +if_null_assignment_static_test/39: MissingCompileTimeError +if_null_assignment_static_test/41: MissingCompileTimeError +if_null_assignment_static_test/42: MissingCompileTimeError +if_null_precedence_test/06: MissingCompileTimeError +if_null_precedence_test/07: MissingCompileTimeError +is_not_class2_test/*: MissingCompileTimeError +library_ambiguous_test/04: MissingCompileTimeError +list_literal1_test/01: MissingCompileTimeError +malformed2_test/00: MissingCompileTimeError +method_override2_test/00: MissingCompileTimeError +method_override2_test/01: MissingCompileTimeError +method_override2_test/02: MissingCompileTimeError +method_override2_test/03: MissingCompileTimeError +method_override3_test/00: MissingCompileTimeError +method_override3_test/01: MissingCompileTimeError +method_override3_test/02: MissingCompileTimeError +method_override4_test/01: MissingCompileTimeError +method_override4_test/02: MissingCompileTimeError +method_override4_test/03: MissingCompileTimeError +method_override5_test/01: MissingCompileTimeError +method_override5_test/02: MissingCompileTimeError +method_override5_test/03: MissingCompileTimeError +method_override6_test/01: MissingCompileTimeError +method_override6_test/02: MissingCompileTimeError +method_override6_test/03: MissingCompileTimeError +method_override8_test/03: MissingCompileTimeError mixin_illegal_constructor_test/13: MissingCompileTimeError mixin_illegal_constructor_test/14: MissingCompileTimeError mixin_illegal_constructor_test/15: MissingCompileTimeError @@ -900,147 +847,188 @@ mixin_invalid_bound_test/07: MissingCompileTimeError mixin_invalid_bound_test/08: MissingCompileTimeError mixin_invalid_bound_test/09: MissingCompileTimeError mixin_invalid_bound_test/10: MissingCompileTimeError +mixin_of_mixin_test/01: MissingCompileTimeError +mixin_of_mixin_test/02: MissingCompileTimeError +mixin_of_mixin_test/03: MissingCompileTimeError +mixin_of_mixin_test/04: MissingCompileTimeError +mixin_of_mixin_test/05: MissingCompileTimeError +mixin_of_mixin_test/06: MissingCompileTimeError +mixin_super_2_test/01: MissingCompileTimeError +mixin_super_2_test/03: MissingCompileTimeError +mixin_super_bound_test/01: MissingCompileTimeError +mixin_super_bound_test/02: MissingCompileTimeError +mixin_supertype_subclass_test/02: MissingCompileTimeError +mixin_supertype_subclass_test/05: MissingCompileTimeError +mixin_type_parameters_errors_test/01: MissingCompileTimeError +mixin_type_parameters_errors_test/02: MissingCompileTimeError +mixin_type_parameters_errors_test/03: MissingCompileTimeError +mixin_type_parameters_errors_test/04: MissingCompileTimeError +mixin_type_parameters_errors_test/05: MissingCompileTimeError +mixin_with_two_implicit_constructors_test: MissingCompileTimeError +multiline_newline_test/01: CompileTimeError +multiline_newline_test/01r: CompileTimeError +multiline_newline_test/02: CompileTimeError +multiline_newline_test/02r: CompileTimeError +multiline_newline_test/04: MissingCompileTimeError +multiline_newline_test/04r: MissingCompileTimeError +multiline_newline_test/05: MissingCompileTimeError +multiline_newline_test/05r: MissingCompileTimeError +named_constructor_test/01: MissingCompileTimeError +named_constructor_test/03: MissingCompileTimeError +named_parameters2_test: MissingCompileTimeError +named_parameters3_test: MissingCompileTimeError +named_parameters4_test: MissingCompileTimeError +named_parameters_aggregated_test/05: MissingCompileTimeError +new_expression_type_args_test/00: MissingCompileTimeError +new_expression_type_args_test/01: MissingCompileTimeError +new_expression_type_args_test/02: MissingCompileTimeError +new_prefix_test/01: MissingCompileTimeError +no_such_constructor_test/01: MissingCompileTimeError +not_enough_positional_arguments_test/00: MissingCompileTimeError +not_enough_positional_arguments_test/02: MissingCompileTimeError +not_enough_positional_arguments_test/03: MissingCompileTimeError +not_enough_positional_arguments_test/05: MissingCompileTimeError +not_enough_positional_arguments_test/06: MissingCompileTimeError +not_enough_positional_arguments_test/07: MissingCompileTimeError +optional_named_parameters_test/01: MissingCompileTimeError +optional_named_parameters_test/02: MissingCompileTimeError +optional_named_parameters_test/03: MissingCompileTimeError +optional_named_parameters_test/04: MissingCompileTimeError +optional_named_parameters_test/05: MissingCompileTimeError +optional_named_parameters_test/06: MissingCompileTimeError +optional_named_parameters_test/07: MissingCompileTimeError +optional_named_parameters_test/08: MissingCompileTimeError +optional_named_parameters_test/09: MissingCompileTimeError +override_field_test/02: MissingCompileTimeError +override_inheritance_abstract_test/02: MissingCompileTimeError +override_inheritance_abstract_test/03: MissingCompileTimeError +override_inheritance_abstract_test/04: MissingCompileTimeError +override_inheritance_abstract_test/08: MissingCompileTimeError +override_inheritance_abstract_test/09: MissingCompileTimeError +override_inheritance_abstract_test/10: MissingCompileTimeError +override_inheritance_abstract_test/11: MissingCompileTimeError +override_inheritance_abstract_test/12: MissingCompileTimeError +override_inheritance_abstract_test/13: MissingCompileTimeError +override_inheritance_abstract_test/14: MissingCompileTimeError +override_inheritance_abstract_test/17: MissingCompileTimeError +override_inheritance_abstract_test/19: MissingCompileTimeError +override_inheritance_abstract_test/20: MissingCompileTimeError +override_inheritance_abstract_test/21: MissingCompileTimeError +override_inheritance_abstract_test/22: MissingCompileTimeError +override_inheritance_abstract_test/23: MissingCompileTimeError +override_inheritance_abstract_test/24: MissingCompileTimeError +override_inheritance_abstract_test/25: MissingCompileTimeError +override_inheritance_abstract_test/26: MissingCompileTimeError +override_inheritance_abstract_test/28: MissingCompileTimeError +override_inheritance_field_test/05: MissingCompileTimeError +override_inheritance_field_test/07: MissingCompileTimeError +override_inheritance_field_test/08: MissingCompileTimeError +override_inheritance_field_test/09: MissingCompileTimeError +override_inheritance_field_test/10: MissingCompileTimeError +override_inheritance_field_test/11: MissingCompileTimeError +override_inheritance_field_test/28: MissingCompileTimeError +override_inheritance_field_test/30: MissingCompileTimeError +override_inheritance_field_test/31: MissingCompileTimeError +override_inheritance_field_test/32: MissingCompileTimeError +override_inheritance_field_test/33: MissingCompileTimeError +override_inheritance_field_test/33a: MissingCompileTimeError +override_inheritance_field_test/34: MissingCompileTimeError +override_inheritance_field_test/44: MissingCompileTimeError +override_inheritance_field_test/47: MissingCompileTimeError +override_inheritance_field_test/48: MissingCompileTimeError +override_inheritance_field_test/53: MissingCompileTimeError +override_inheritance_field_test/54: MissingCompileTimeError +override_inheritance_generic_test/04: MissingCompileTimeError +override_inheritance_generic_test/06: MissingCompileTimeError +override_inheritance_generic_test/07: MissingCompileTimeError +override_inheritance_generic_test/08: MissingCompileTimeError +override_inheritance_generic_test/09: MissingCompileTimeError +override_inheritance_generic_test/10: MissingCompileTimeError +override_inheritance_method_test/04: MissingCompileTimeError +override_inheritance_method_test/05: MissingCompileTimeError +override_inheritance_method_test/06: MissingCompileTimeError +override_inheritance_method_test/11: MissingCompileTimeError +override_inheritance_method_test/12: MissingCompileTimeError +override_inheritance_method_test/13: MissingCompileTimeError +override_inheritance_method_test/14: MissingCompileTimeError +override_inheritance_method_test/19: MissingCompileTimeError +override_inheritance_method_test/20: MissingCompileTimeError +override_inheritance_method_test/21: MissingCompileTimeError +override_inheritance_method_test/27: MissingCompileTimeError +override_inheritance_method_test/30: MissingCompileTimeError +override_inheritance_method_test/31: MissingCompileTimeError +override_inheritance_method_test/32: MissingCompileTimeError +override_inheritance_method_test/33: MissingCompileTimeError +override_inheritance_mixed_test/06: MissingCompileTimeError +override_inheritance_mixed_test/07: MissingCompileTimeError +override_inheritance_mixed_test/08: MissingCompileTimeError +override_inheritance_mixed_test/09: MissingCompileTimeError +override_inheritance_no_such_method_test/01: MissingCompileTimeError +override_inheritance_no_such_method_test/02: MissingCompileTimeError +override_inheritance_no_such_method_test/06: MissingCompileTimeError +override_inheritance_no_such_method_test/07: MissingCompileTimeError +override_inheritance_no_such_method_test/09: MissingCompileTimeError +override_inheritance_no_such_method_test/10: MissingCompileTimeError +override_inheritance_no_such_method_test/12: MissingCompileTimeError +override_inheritance_no_such_method_test/13: MissingCompileTimeError +override_method_with_field_test/02: MissingCompileTimeError +parser_quirks_test: StaticWarning +part2_test/01: MissingCompileTimeError +static_field1_test/01: MissingCompileTimeError +static_field1a_test/01: MissingCompileTimeError +static_field3_test/01: MissingCompileTimeError +static_field3_test/02: MissingCompileTimeError +static_field3_test/03: MissingCompileTimeError +static_field3_test/04: MissingCompileTimeError +static_field_test/01: MissingCompileTimeError +static_field_test/02: MissingCompileTimeError +static_field_test/03: MissingCompileTimeError +static_field_test/04: MissingCompileTimeError +static_final_field2_test/01: MissingCompileTimeError +static_getter_no_setter1_test/01: MissingCompileTimeError +static_getter_no_setter2_test/01: MissingCompileTimeError +static_getter_no_setter3_test/01: MissingCompileTimeError +static_initializer_type_error_test: MissingCompileTimeError +static_setter_get_test/01: MissingCompileTimeError +string_interpolate_test: StaticWarning +string_test/01: MissingCompileTimeError +string_unicode1_negative_test: CompileTimeError +string_unicode2_negative_test: CompileTimeError +string_unicode3_negative_test: CompileTimeError +string_unicode4_negative_test: CompileTimeError +super_bound_closure_test/01: MissingCompileTimeError +super_operator_index_test/01: MissingCompileTimeError +super_operator_index_test/02: MissingCompileTimeError +super_operator_index_test/03: MissingCompileTimeError +super_operator_index_test/04: MissingCompileTimeError +super_operator_index_test/05: MissingCompileTimeError +super_operator_index_test/06: MissingCompileTimeError +super_operator_index_test/07: MissingCompileTimeError +switch_case_warn_test/01: MissingCompileTimeError +switch_case_warn_test/02: MissingCompileTimeError +switch_case_warn_test/03: MissingCompileTimeError +switch_case_warn_test/04: MissingCompileTimeError +switch_case_warn_test/05: MissingCompileTimeError +switch_case_warn_test/06: MissingCompileTimeError +switch_case_warn_test/07: MissingCompileTimeError +switch_case_warn_test/08: MissingCompileTimeError +switch_case_warn_test/09: MissingCompileTimeError +switch_case_warn_test/10: MissingCompileTimeError +switch_case_warn_test/11: MissingCompileTimeError +switch_case_warn_test/12: MissingCompileTimeError +switch_case_warn_test/13: MissingCompileTimeError +switch_case_warn_test/14: MissingCompileTimeError +switch_case_warn_test/15: MissingCompileTimeError +switch_case_warn_test/16: MissingCompileTimeError +switch_case_warn_test/17: MissingCompileTimeError +switch_fallthru_test/01: MissingCompileTimeError +type_check_const_function_typedef2_test: MissingCompileTimeError +type_parameter_test/05: MissingCompileTimeError +type_variable_identifier_expression_test: MissingCompileTimeError +type_variable_static_context_test: MissingCompileTimeError +unresolved_in_factory_test: MissingCompileTimeError -[ $compiler == dart2analyzer ] -abstract_override_adds_optional_args_concrete_subclass_test: MissingCompileTimeError # Issue #30568 -abstract_override_adds_optional_args_concrete_test: MissingCompileTimeError # Issue #30568 -abstract_override_adds_optional_args_supercall_test: MissingCompileTimeError # Issue #30568 -assertion_initializer_const_function_test/01: MissingCompileTimeError -async_return_types_test/nestedFuture: MissingCompileTimeError -bad_initializer1_negative_test: CompileTimeError # Issue 14529 -bad_initializer2_negative_test: Fail # Issue 14880 -black_listed_test/none: Fail # Issue 14228 -built_in_identifier_prefix_test: CompileTimeError -cascade_test/none: Fail # Issue 11577 -constructor_call_wrong_argument_count_negative_test: Fail # Issue 11585 -deep_nesting1_negative_test: CompileTimeError # Issue 25558 -deep_nesting2_negative_test: CompileTimeError # Issue 25558 -duplicate_export_negative_test: CompileTimeError -duplicate_interface_negative_test: CompileTimeError -emit_const_fields_test: CompileTimeError -enum_syntax_test/05: Fail # Issue 21649 -enum_syntax_test/06: Fail # Issue 21649 -field3_test/01: MissingCompileTimeError -final_syntax_test/01: Fail # Issue 11124 -final_syntax_test/02: Fail # Issue 11124 -final_syntax_test/03: Fail # Issue 11124 -final_syntax_test/04: Fail # Issue 11124 -generic_methods_generic_function_parameter_test: CompileTimeError # Issue 28515 -generic_local_functions_test: CompileTimeError # Issue 28515 -generic_list_checked_test: StaticWarning -generic_test: StaticWarning -generics_test: StaticWarning -getter_declaration_negative_test: CompileTimeError -getter_setter_in_lib_test: Fail # Issue 23286 -import_core_prefix_test: StaticWarning -initializing_formal_final_test: MissingCompileTimeError -inst_field_initializer1_negative_test: CompileTimeError -instance_call_wrong_argument_count_negative_test: Fail # Issue 11585 -instance_method2_negative_test: CompileTimeError -instance_method_negative_test: CompileTimeError -interface2_negative_test: CompileTimeError -interface_injection1_negative_test: CompileTimeError -interface_injection2_negative_test: CompileTimeError -interface_static_method_negative_test: CompileTimeError -is_not_class1_negative_test: CompileTimeError -is_not_class4_negative_test: CompileTimeError -interface_static_non_final_fields_negative_test: Fail # Issue 11594 -interface_test/00: MissingCompileTimeError -issue1578_negative_test: CompileTimeError -label2_negative_test: CompileTimeError -label3_negative_test: CompileTimeError -label5_negative_test: CompileTimeError -label6_negative_test: CompileTimeError -label8_negative_test: CompileTimeError -method_override_test: CompileTimeError -mixin_supertype_subclass_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass_test/05: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass2_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass2_test/05: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass3_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass3_test/05: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/01: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/02: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/03: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/04: MissingStaticWarning # Issue 25614 -mixin_supertype_subclass4_test/05: MissingStaticWarning # Issue 25614 -mock_writable_final_private_field_test: CompileTimeError # Issue 30848 -nested_generic_closure_test: CompileTimeError -operator1_negative_test: CompileTimeError -operator2_negative_test: CompileTimeError -setter_declaration2_negative_test: CompileTimeError -setter_declaration_negative_test: CompileTimeError -setter_no_getter_call_test/01: CompileTimeError -source_self_negative_test: CompileTimeError -static_call_wrong_argument_count_negative_test: Fail # Issue 12156 -string_escape4_negative_test: CompileTimeError -string_interpolate1_negative_test: CompileTimeError -string_interpolate2_negative_test: CompileTimeError -super_setter_test: StaticWarning -switch1_negative_test: CompileTimeError -switch3_negative_test: CompileTimeError -switch4_negative_test: CompileTimeError -switch5_negative_test: CompileTimeError -switch7_negative_test: CompileTimeError -syntax_test/none: fail # Issue 11575 -type_variable_scope_test/none: fail # Issue 11578 -type_variable_static_context_negative_test: fail # Issue 12161 -vm/debug_break_enabled_vm_test: Skip -vm/debug_break_vm_test/*: Skip -vm/lazy_deopt_with_exception_test: Pass -vm/reflect_core_vm_test: CompileTimeError -library_negative_test: CompileTimeError -method_override7_test/03: Fail # Issue 11497 -method_override_test: StaticWarning -override_field_test/03: Fail # Issue 29703 -override_field_method1_negative_test: CompileTimeError -override_field_method2_negative_test: CompileTimeError -override_field_method4_negative_test: CompileTimeError -override_field_method5_negative_test: CompileTimeError -list_literal2_negative_test: CompileTimeError -list_literal_negative_test: CompileTimeError -map_literal_negative_test: CompileTimeError -new_expression1_negative_test: CompileTimeError -new_expression2_negative_test: CompileTimeError -new_expression3_negative_test: CompileTimeError -non_const_super_negative_test: CompileTimeError -no_such_constructor2_test: StaticWarning -no_main_test/01: Fail # Issue 20030 -parameter_initializer1_negative_test: CompileTimeError -parameter_initializer2_negative_test: CompileTimeError -parameter_initializer3_negative_test: CompileTimeError -parameter_initializer4_negative_test: CompileTimeError -parameter_initializer6_negative_test: CompileTimeError -part_refers_to_core_library_test/01: MissingCompileTimeError # Issue 29709 -script1_negative_test: CompileTimeError -script2_negative_test: CompileTimeError -prefix1_negative_test: Fail # Issue 11962 -prefix12_negative_test: Fail # Issue 11962 -prefix11_negative_test: Fail # Issue 11964 -prefix2_negative_test: Fail # Issue 11962 -prefix4_negative_test: Fail # Issue 11962 -prefix5_negative_test: Fail # Issue 11962 -prefix8_negative_test: Fail # Issue 11964 -prefix3_negative_test: Fail # Issue 12191 -private_member1_negative_test: Fail # Issue 14021 -private_member2_negative_test: Fail # Issue 14021 -private_member3_negative_test: Fail # Issue 14021 -prefix7_negative_test: CompileTimeError -regress_27617_test/1: MissingCompileTimeError -regress_23408_test: Skip # don't care about the static warning. -regress_29025_test: CompileTimeError # Issue 29081 -regress_29405_test: CompileTimeError # Issue 29421 -regress_29349_test: CompileTimeError # Issue 29744 -reify_typevar_static_test/00: MissingCompileTimeError # Issue 21565 -test_negative_test: CompileTimeError -try_catch_on_syntax_test/10: MissingCompileTimeError -try_catch_on_syntax_test/11: MissingCompileTimeError -const_for_in_variable_test/01: MissingCompileTimeError # Issue 25161 -conflicting_type_variable_and_setter_test: CompileTimeError # Issue 25525 -function_type_parameter2_negative_test: CompileTimeError -function_type_parameter_negative_test: CompileTimeError - -[ $strong && $compiler == dart2analyzer ] +[ $compiler == dart2analyzer && $strong ] accessor_conflict_export2_test: CompileTimeError # Issue 25626 accessor_conflict_export_test: CompileTimeError # Issue 25626 accessor_conflict_import2_test: CompileTimeError # Issue 25626 @@ -1048,6 +1036,7 @@ accessor_conflict_import_prefixed2_test: CompileTimeError # Issue 25626 accessor_conflict_import_prefixed_test: CompileTimeError # Issue 25626 accessor_conflict_import_test: CompileTimeError # Issue 25626 additional_interface_adds_optional_args_test: CompileTimeError # Issue #30568 +assertion_initializer_const_function_test/01: MissingStaticWarning async_return_types_test/nestedFuture: MissingCompileTimeError bug31436_test: CompileTimeError cascaded_forwarding_stubs_test: CompileTimeError @@ -1060,18 +1049,28 @@ const_types_test/07: MissingCompileTimeError # Incorrectly allows using type par const_types_test/08: MissingCompileTimeError # Incorrectly allows using type parameter in const expression. const_types_test/14: MissingCompileTimeError # Incorrectly allows using type parameter in const expression. const_types_test/15: MissingCompileTimeError # Incorrectly allows using type parameter in const expression. +constant_type_literal_test/01: MissingCompileTimeError # Issue 28823 error_stacktrace_test/00: Pass +field3a_negative_test: StaticWarning # Issue 28823 generic_list_checked_test: CompileTimeError +generic_methods_closure_test: CompileTimeError # Issue 29070 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #30207 +generic_methods_local_variable_declaration_test: CompileTimeError # Issue 29070 +generic_methods_overriding_test/01: MissingCompileTimeError # Issue 29070 +generic_methods_overriding_test/03: MissingCompileTimeError # Issue 29070 +generic_methods_shadowing_test: CompileTimeError # Issue 29070 +generic_methods_simple_is_expression_test: CompileTimeError # Issue 29070 +generic_methods_type_expression_test: CompileTimeError # Incorrectly disallows type parameter in "is" test. generic_no_such_method_dispatcher_test: CompileTimeError generic_tearoff_test: CompileTimeError generic_test: CompileTimeError generics_test: CompileTimeError implicit_downcast_during_function_literal_arrow_test: CompileTimeError # Issue #31436 import_core_prefix_test: CompileTimeError # "dynamic" should be defined in core. +instantiate_type_variable_test/01: CompileTimeError +int64_literal_test/03: MissingCompileTimeError # http://dartbug.com/31479 +int64_literal_test/30: MissingCompileTimeError # http://dartbug.com/31479 interceptor6_test: CompileTimeError -int64_literal_test/03: MissingCompileTimeError # http://dartbug.com/31479 -int64_literal_test/30: MissingCompileTimeError # http://dartbug.com/31479 malformed2_test: Pass, MissingCompileTimeError # Issue 31056. mixin_super_2_test/01: MissingCompileTimeError mixin_super_2_test/03: MissingCompileTimeError @@ -1086,6 +1085,8 @@ multiline_newline_test/04r: MissingCompileTimeError multiline_newline_test/05: MissingCompileTimeError multiline_newline_test/05r: MissingCompileTimeError multiple_interface_inheritance_test: CompileTimeError # Issue 30552 +no_main_test/01: MissingStaticWarning # Issue 28823 +no_such_method_negative_test: CompileTimeError object_has_no_call_method_test/02: MissingCompileTimeError override_inheritance_abstract_test/02: MissingCompileTimeError override_inheritance_abstract_test/03: MissingCompileTimeError @@ -1124,15 +1125,19 @@ parser_quirks_test: CompileTimeError prefix13_negative_test: CompileTimeError, OK prefix15_negative_test: CompileTimeError, OK prefix18_negative_test: CompileTimeError, OK +prefix6_negative_test: CompileTimeError, OK regress_30121_test: CompileTimeError # Issue 31087 regress_30339_test: CompileTimeError +reify_typevar_static_test/00: MissingCompileTimeError # Issue 28823 +string_interpolate_test: CompileTimeError +string_split_test: CompileTimeError string_supertype_checked_test: CompileTimeError string_unicode1_negative_test: CompileTimeError string_unicode2_negative_test: CompileTimeError string_unicode3_negative_test: CompileTimeError string_unicode4_negative_test: CompileTimeError -string_split_test: CompileTimeError super_bound_closure_test/none: CompileTimeError +super_setter_test: StaticWarning # Issue 28823 switch_case_test/none: CompileTimeError type_promotion_functions_test/01: Pass type_promotion_functions_test/05: Pass @@ -1140,52 +1145,50 @@ type_promotion_functions_test/06: Pass type_promotion_functions_test/07: Pass type_promotion_functions_test/08: Pass type_promotion_functions_test/10: Pass - vm/lazy_deopt_with_exception_test: CompileTimeError -prefix6_negative_test: CompileTimeError, OK +void_type_callbacks_test/00: MissingCompileTimeError # Issue 30177 +void_type_callbacks_test/01: MissingCompileTimeError # Issue 30177 void_type_function_types_test/none: CompileTimeError # Issue 30177 -void_type_usage_test/param_as: CompileTimeError # Issue 30177 -void_type_usage_test/param_for: CompileTimeError # Issue 30177 -void_type_usage_test/none: CompileTimeError # Issue 30177 +void_type_override_test/none: CompileTimeError # Issue 30177 void_type_usage_test/call_as: CompileTimeError # Issue 30177 -void_type_usage_test/call_stmt: CompileTimeError # Issue 30177 void_type_usage_test/call_for: CompileTimeError # Issue 30177 -void_type_usage_test/local_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/call_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/field_assign: CompileTimeError # Issue 30177 +void_type_usage_test/field_assign2: CompileTimeError # Issue 30177 +void_type_usage_test/final_local_as: CompileTimeError # Issue 30177 +void_type_usage_test/final_local_for: CompileTimeError # Issue 30177 +void_type_usage_test/final_local_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/global_as: CompileTimeError # Issue 30177 +void_type_usage_test/global_for: CompileTimeError # Issue 30177 +void_type_usage_test/global_for_in2: CompileTimeError # Issue 30177 +void_type_usage_test/global_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/instance2_as: CompileTimeError # Issue 30177 +void_type_usage_test/instance2_for: CompileTimeError # Issue 30177 +void_type_usage_test/instance2_for_in3: CompileTimeError # Issue 30177 +void_type_usage_test/instance2_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/instance3_as: CompileTimeError # Issue 30177 +void_type_usage_test/instance3_for: CompileTimeError # Issue 30177 +void_type_usage_test/instance3_for_in3: CompileTimeError # Issue 30177 +void_type_usage_test/instance3_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/instance_as: CompileTimeError # Issue 30177 +void_type_usage_test/instance_for: CompileTimeError # Issue 30177 +void_type_usage_test/instance_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/local_as: CompileTimeError # Issue 30177 void_type_usage_test/local_assign: CompileTimeError # Issue 30177 void_type_usage_test/local_for: CompileTimeError # Issue 30177 -void_type_usage_test/local_as: CompileTimeError # Issue 30177 -void_type_usage_test/param_stmt: CompileTimeError # Issue 30177 void_type_usage_test/local_for_in2: CompileTimeError # Issue 30177 -void_type_usage_test/final_local_stmt: CompileTimeError # Issue 30177 -void_type_usage_test/final_local_for: CompileTimeError # Issue 30177 -void_type_usage_test/final_local_as: CompileTimeError # Issue 30177 -void_type_usage_test/global_stmt: CompileTimeError # Issue 30177 -void_type_usage_test/global_for: CompileTimeError # Issue 30177 -void_type_usage_test/global_as: CompileTimeError # Issue 30177 -void_type_usage_test/global_for_in2: CompileTimeError # Issue 30177 -void_type_usage_test/instance_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/local_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/none: CompileTimeError # Issue 30177 +void_type_usage_test/param_as: CompileTimeError # Issue 30177 +void_type_usage_test/param_for: CompileTimeError # Issue 30177 void_type_usage_test/param_for_in2: CompileTimeError # Issue 30177 -void_type_usage_test/instance_for: CompileTimeError # Issue 30177 -void_type_usage_test/instance_as: CompileTimeError # Issue 30177 -void_type_usage_test/instance2_for_in3: CompileTimeError # Issue 30177 -void_type_usage_test/field_assign: CompileTimeError # Issue 30177 -void_type_usage_test/instance3_for_in3: CompileTimeError # Issue 30177 -void_type_usage_test/instance2_stmt: CompileTimeError # Issue 30177 -void_type_usage_test/instance2_for: CompileTimeError # Issue 30177 -void_type_usage_test/field_assign2: CompileTimeError # Issue 30177 -void_type_usage_test/instance2_as: CompileTimeError # Issue 30177 -void_type_usage_test/setter_assign: CompileTimeError # Issue 30177 -void_type_usage_test/instance3_stmt: CompileTimeError # Issue 30177 -void_type_usage_test/instance3_for: CompileTimeError # Issue 30177 -void_type_usage_test/instance3_as: CompileTimeError # Issue 30177 +void_type_usage_test/param_stmt: CompileTimeError # Issue 30177 void_type_usage_test/paren_as: CompileTimeError # Issue 30177 -void_type_usage_test/paren_stmt: CompileTimeError # Issue 30177 void_type_usage_test/paren_for: CompileTimeError # Issue 30177 -void_type_callbacks_test/01: MissingCompileTimeError # Issue 30177 -void_type_callbacks_test/00: MissingCompileTimeError # Issue 30177 -void_type_override_test/none: CompileTimeError # Issue 30177 +void_type_usage_test/paren_stmt: CompileTimeError # Issue 30177 +void_type_usage_test/setter_assign: CompileTimeError # Issue 30177 -[ ! $strong && $compiler == dart2analyzer ] +[ $compiler == dart2analyzer && !$strong ] accessor_conflict_export2_test: StaticWarning # Issue 25626 accessor_conflict_export_test: CompileTimeError accessor_conflict_export_test: StaticWarning # Issue 25626 @@ -1259,6 +1262,10 @@ class_literal_test/23: MissingCompileTimeError class_literal_test/24: MissingCompileTimeError class_literal_test/25: MissingCompileTimeError closure_type_test: Pass +combiner_type_lookup_indexed_test: StaticWarning # Issue #31484 +combiner_type_lookup_instance_test: StaticWarning # Issue #31484 +combiner_type_lookup_static_test: StaticWarning # Issue #31484 +combiner_type_lookup_top_level_test: StaticWarning # Issue #31484 compile_time_constant_o_test/01: MissingCompileTimeError compile_time_constant_o_test/02: MissingCompileTimeError conditional_method_invocation_test/05: MissingCompileTimeError @@ -1313,15 +1320,17 @@ const_types_test/04: MissingCompileTimeError const_types_test/05: MissingCompileTimeError const_types_test/06: MissingCompileTimeError const_types_test/13: MissingCompileTimeError -const_types_test/35: MissingCompileTimeError const_types_test/34: MissingCompileTimeError +const_types_test/35: MissingCompileTimeError const_types_test/39: MissingCompileTimeError const_types_test/40: MissingCompileTimeError +constructor13_test/01: MissingCompileTimeError +constructor13_test/02: MissingCompileTimeError constructor_duplicate_final_test/03: MissingCompileTimeError create_unresolved_type_test/01: MissingCompileTimeError -generic_constructor_mixin_test/01: MissingCompileTimeError generic_constructor_mixin2_test/01: MissingCompileTimeError generic_constructor_mixin3_test/01: MissingCompileTimeError +generic_constructor_mixin_test/01: MissingCompileTimeError generic_field_mixin6_test/01: MissingCompileTimeError generic_function_typedef2_test/04: MissingCompileTimeError generic_methods_generic_function_result_test/01: MissingCompileTimeError # Issue #30207 @@ -1359,26 +1368,29 @@ if_null_assignment_static_test/41: MissingCompileTimeError if_null_assignment_static_test/42: MissingCompileTimeError if_null_precedence_test/06: MissingCompileTimeError if_null_precedence_test/07: MissingCompileTimeError -import_combinators2_test/00: MissingCompileTimeError -list_literal4_test/00: MissingCompileTimeError -list_literal4_test/01: MissingCompileTimeError -list_literal4_test/03: MissingCompileTimeError -list_literal4_test/04: MissingCompileTimeError -list_literal4_test/05: MissingCompileTimeError -list_literal_syntax_test/01: MissingCompileTimeError -list_literal_syntax_test/02: MissingCompileTimeError -list_literal_syntax_test/03: MissingCompileTimeError implicit_this_test/01: MissingCompileTimeError implicit_this_test/02: MissingCompileTimeError implicit_this_test/04: MissingCompileTimeError +import_combinators2_test/00: MissingCompileTimeError import_self_test/01: MissingCompileTimeError inferrer_constructor5_test/01: MissingCompileTimeError initializing_formal_type_test: MissingCompileTimeError instantiate_type_variable_test/01: StaticWarning +int64_literal_test/03: MissingCompileTimeError +int64_literal_test/30: MissingCompileTimeError interceptor6_test: StaticWarning +invalid_cast_test/01: MissingCompileTimeError +invalid_cast_test/02: MissingCompileTimeError +invalid_cast_test/03: MissingCompileTimeError +invalid_cast_test/04: MissingCompileTimeError +invalid_cast_test/07: MissingCompileTimeError +invalid_cast_test/08: MissingCompileTimeError +invalid_cast_test/09: MissingCompileTimeError +invalid_cast_test/10: MissingCompileTimeError +invalid_cast_test/11: MissingCompileTimeError invocation_mirror_test: StaticWarning -known_identifier_prefix_error_test/none: Pass known_identifier_prefix_error_test/*: MissingCompileTimeError # Error only in strong mode. +known_identifier_prefix_error_test/none: Pass least_upper_bound_expansive_test/01: MissingCompileTimeError least_upper_bound_expansive_test/02: MissingCompileTimeError least_upper_bound_expansive_test/03: MissingCompileTimeError @@ -1409,6 +1421,30 @@ library_ambiguous_test/01: MissingCompileTimeError library_ambiguous_test/02: MissingCompileTimeError library_ambiguous_test/03: MissingCompileTimeError library_ambiguous_test/04: MissingCompileTimeError +list_literal4_test/00: MissingCompileTimeError +list_literal4_test/01: MissingCompileTimeError +list_literal4_test/03: MissingCompileTimeError +list_literal4_test/04: MissingCompileTimeError +list_literal4_test/05: MissingCompileTimeError +list_literal_syntax_test/01: MissingCompileTimeError +list_literal_syntax_test/02: MissingCompileTimeError +list_literal_syntax_test/03: MissingCompileTimeError +local_function2_test/01: MissingCompileTimeError +local_function2_test/02: MissingCompileTimeError +local_function3_test/01: MissingCompileTimeError +local_function_test/01: MissingCompileTimeError +local_function_test/02: MissingCompileTimeError +local_function_test/03: MissingCompileTimeError +local_function_test/04: MissingCompileTimeError +logical_expression3_test: MissingCompileTimeError +malbounded_instantiation_test/01: MissingCompileTimeError +malbounded_instantiation_test/02: MissingCompileTimeError +malbounded_instantiation_test/03: MissingCompileTimeError +malbounded_redirecting_factory_test/02: MissingCompileTimeError +malbounded_redirecting_factory_test/03: MissingCompileTimeError +malbounded_redirecting_factory_test/04: MissingCompileTimeError +malbounded_redirecting_factory_test/05: MissingCompileTimeError +malbounded_type_cast2_test: MissingCompileTimeError malbounded_type_cast_test/00: MissingCompileTimeError malbounded_type_cast_test/01: MissingCompileTimeError malbounded_type_cast_test/02: MissingCompileTimeError @@ -1478,6 +1514,9 @@ named_parameters_test/10: MissingCompileTimeError named_parameters_type_test/01: MissingCompileTimeError named_parameters_type_test/02: MissingCompileTimeError named_parameters_type_test/03: MissingCompileTimeError +object_has_no_call_method_test/02: MissingCompileTimeError +object_has_no_call_method_test/05: MissingCompileTimeError +object_has_no_call_method_test/08: MissingCompileTimeError positional_parameters_type_test/01: MissingCompileTimeError positional_parameters_type_test/02: MissingCompileTimeError prefix13_negative_test: CompileTimeError, OK @@ -1487,6 +1526,12 @@ prefix16_test/01: MissingCompileTimeError prefix18_negative_test: CompileTimeError, OK prefix22_test/00: MissingCompileTimeError prefix23_test/00: MissingCompileTimeError +private_access_test/01: MissingCompileTimeError +private_access_test/02: MissingCompileTimeError +private_access_test/03: MissingCompileTimeError +private_access_test/04: MissingCompileTimeError +private_access_test/05: MissingCompileTimeError +private_access_test/06: MissingCompileTimeError regress_12561_test: MissingCompileTimeError regress_13494_test: MissingCompileTimeError regress_17382_test: MissingCompileTimeError @@ -1526,10 +1571,10 @@ string_no_operator_test/14: MissingCompileTimeError string_no_operator_test/15: MissingCompileTimeError string_no_operator_test/16: MissingCompileTimeError string_test/01: MissingCompileTimeError -super_assign_test/01: MissingCompileTimeError substring_test/01: MissingCompileTimeError -sync_generator1_test/01: MissingCompileTimeError +super_assign_test/01: MissingCompileTimeError symbol_literal_test/01: MissingCompileTimeError +sync_generator1_test/01: MissingCompileTimeError syntax_test/59: MissingCompileTimeError syntax_test/60: MissingCompileTimeError syntax_test/61: MissingCompileTimeError @@ -1539,6 +1584,12 @@ transitive_private_library_access_test: MissingCompileTimeError try_catch_on_syntax_test/07: MissingCompileTimeError try_catch_syntax_test/08: MissingCompileTimeError type_checks_in_factory_method_test/01: MissingCompileTimeError +type_promotion_functions_test/01: MissingCompileTimeError +type_promotion_functions_test/05: MissingCompileTimeError +type_promotion_functions_test/06: MissingCompileTimeError +type_promotion_functions_test/07: MissingCompileTimeError +type_promotion_functions_test/08: MissingCompileTimeError +type_promotion_functions_test/10: MissingCompileTimeError type_promotion_parameter_test/01: MissingCompileTimeError type_promotion_parameter_test/02: MissingCompileTimeError type_promotion_parameter_test/03: MissingCompileTimeError @@ -1594,6 +1645,9 @@ type_promotion_parameter_test/52: MissingCompileTimeError type_promotion_parameter_test/54: MissingCompileTimeError type_promotion_parameter_test/55: MissingCompileTimeError type_promotion_parameter_test/56: MissingCompileTimeError +type_variable_bounds2_test: MissingCompileTimeError +type_variable_bounds3_test/00: MissingCompileTimeError +type_variable_bounds4_test/01: MissingCompileTimeError type_variable_bounds_test/00: MissingCompileTimeError type_variable_bounds_test/01: MissingCompileTimeError type_variable_bounds_test/02: MissingCompileTimeError @@ -1606,9 +1660,6 @@ type_variable_bounds_test/08: MissingCompileTimeError type_variable_bounds_test/09: MissingCompileTimeError type_variable_bounds_test/10: MissingCompileTimeError type_variable_bounds_test/11: MissingCompileTimeError -type_variable_bounds2_test: MissingCompileTimeError -type_variable_bounds3_test/00: MissingCompileTimeError -type_variable_bounds4_test/01: MissingCompileTimeError type_variable_conflict2_test/01: MissingCompileTimeError type_variable_conflict2_test/02: MissingCompileTimeError type_variable_conflict2_test/03: MissingCompileTimeError @@ -1619,77 +1670,17 @@ type_variable_conflict2_test/07: MissingCompileTimeError type_variable_conflict2_test/08: MissingCompileTimeError type_variable_conflict2_test/09: MissingCompileTimeError type_variable_conflict2_test/10: MissingCompileTimeError +type_variable_scope2_test: MissingCompileTimeError type_variable_scope_test/00: MissingCompileTimeError type_variable_scope_test/01: MissingCompileTimeError type_variable_scope_test/02: MissingCompileTimeError type_variable_scope_test/03: MissingCompileTimeError type_variable_scope_test/04: MissingCompileTimeError type_variable_scope_test/05: MissingCompileTimeError -type_variable_scope2_test: MissingCompileTimeError typed_selector2_test: MissingCompileTimeError -private_access_test/01: MissingCompileTimeError -private_access_test/02: MissingCompileTimeError -private_access_test/03: MissingCompileTimeError -private_access_test/04: MissingCompileTimeError -private_access_test/05: MissingCompileTimeError -private_access_test/06: MissingCompileTimeError unbound_getter_test: MissingCompileTimeError unresolved_default_constructor_test/01: MissingCompileTimeError unresolved_top_level_method_test: MissingCompileTimeError unresolved_top_level_var_test: MissingCompileTimeError vm/type_vm_test: StaticWarning -local_function2_test/01: MissingCompileTimeError -local_function2_test/02: MissingCompileTimeError -local_function3_test/01: MissingCompileTimeError -local_function_test/01: MissingCompileTimeError -local_function_test/02: MissingCompileTimeError -local_function_test/03: MissingCompileTimeError -local_function_test/04: MissingCompileTimeError -logical_expression3_test: MissingCompileTimeError -malbounded_instantiation_test/01: MissingCompileTimeError -malbounded_instantiation_test/02: MissingCompileTimeError -malbounded_instantiation_test/03: MissingCompileTimeError -malbounded_redirecting_factory_test/02: MissingCompileTimeError -malbounded_redirecting_factory_test/03: MissingCompileTimeError -malbounded_redirecting_factory_test/04: MissingCompileTimeError -malbounded_redirecting_factory_test/05: MissingCompileTimeError -malbounded_type_cast2_test: MissingCompileTimeError -type_promotion_functions_test/01: MissingCompileTimeError -type_promotion_functions_test/05: MissingCompileTimeError -type_promotion_functions_test/06: MissingCompileTimeError -type_promotion_functions_test/07: MissingCompileTimeError -type_promotion_functions_test/08: MissingCompileTimeError -type_promotion_functions_test/10: MissingCompileTimeError -[ $compiler == dart2analyzer && $runtime == none ] -assertion_initializer_const_error2_test/cc10: CompileTimeError # Issue 31320 -assertion_initializer_const_error2_test/cc11: CompileTimeError # Issue 31320 -assertion_initializer_const_function_test/01: CompileTimeError -assertion_initializer_test: CompileTimeError -error_stacktrace_test/00: MissingCompileTimeError -vm/lazy_deopt_with_exception_test: CompileTimeError - -[ $compiler == dart2analyzer && $strong ] -assertion_initializer_const_function_test/01: MissingStaticWarning -constant_type_literal_test/01: MissingCompileTimeError # Issue 28823 -field3a_negative_test: StaticWarning # Issue 28823 -generic_methods_closure_test: CompileTimeError # Issue 29070 -generic_methods_overriding_test/01: MissingCompileTimeError # Issue 29070 -generic_methods_overriding_test/03: MissingCompileTimeError # Issue 29070 -generic_methods_shadowing_test: CompileTimeError # Issue 29070 -generic_methods_simple_is_expression_test: CompileTimeError # Issue 29070 -generic_methods_local_variable_declaration_test: CompileTimeError # Issue 29070 -generic_methods_type_expression_test: CompileTimeError # Incorrectly disallows type parameter in "is" test. -instantiate_type_variable_test/01: CompileTimeError -no_main_test/01: MissingStaticWarning # Issue 28823 -no_such_method_negative_test: CompileTimeError -string_interpolate_test: CompileTimeError -super_setter_test: StaticWarning # Issue 28823 -reify_typevar_static_test/00: MissingCompileTimeError # Issue 28823 - -[$compiler == dart2analyzer] -vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. -generic_function_type_as_type_argument_test/01: MissingCompileTimeError # Issue 30929 -generic_function_type_as_type_argument_test/02: MissingCompileTimeError # Issue 30929 -regress_29784_test/02: MissingCompileTimeError # Issue 29784 -config_import_corelib_test: StaticWarning, OK diff --git a/tests/language_2/language_2_dart2js.status b/tests/language_2/language_2_dart2js.status index bcbe9bc1ba7..347dc002614 100644 --- a/tests/language_2/language_2_dart2js.status +++ b/tests/language_2/language_2_dart2js.status @@ -1,14 +1,8 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$compiler == dart2js". -[ $compiler == dart2js ] -vm/*: SkipByDesign # Tests for the VM. -int64_literal_test/*: Skip # This is testing Dart 2.0 int64 semantics. - -# dart2js does not implement the Dart 2.0 static type errors yet. [ $compiler == dart2js ] abstract_beats_arguments_test: MissingCompileTimeError abstract_exact_selector_test/01: MissingCompileTimeError @@ -42,15 +36,15 @@ async_await_syntax_test/b10a: MissingCompileTimeError async_await_syntax_test/c10a: MissingCompileTimeError async_await_syntax_test/d08b: MissingCompileTimeError async_await_syntax_test/d10a: MissingCompileTimeError -async_congruence_local_test/none: RuntimeError async_congruence_local_test/01: MissingCompileTimeError async_congruence_local_test/02: MissingCompileTimeError -async_congruence_method_test/none: RuntimeError +async_congruence_local_test/none: RuntimeError async_congruence_method_test/01: MissingCompileTimeError +async_congruence_method_test/none: RuntimeError async_congruence_top_level_test: RuntimeError -async_congruence_unnamed_test/none: RuntimeError async_congruence_unnamed_test/01: MissingCompileTimeError async_congruence_unnamed_test/02: MissingCompileTimeError +async_congruence_unnamed_test/none: RuntimeError async_or_generator_return_type_stacktrace_test/01: MissingCompileTimeError async_or_generator_return_type_stacktrace_test/02: MissingCompileTimeError async_or_generator_return_type_stacktrace_test/03: MissingCompileTimeError @@ -248,8 +242,8 @@ generic_methods_simple_is_expression_test: RuntimeError generic_methods_tearoff_specialization_test: RuntimeError generic_methods_type_expression_test: RuntimeError generic_methods_unused_parameter_test: RuntimeError +generic_no_such_method_dispatcher_simple_test: Skip # This test is just for kernel. generic_no_such_method_dispatcher_test: RuntimeError -generic_no_such_method_dispatcher_simple_test: Skip # This test is just for kernel. generic_tearoff_test: RuntimeError getter_no_setter2_test/00: MissingCompileTimeError getter_no_setter2_test/01: MissingCompileTimeError @@ -300,6 +294,7 @@ import_self_test/01: MissingCompileTimeError inferrer_constructor5_test/01: MissingCompileTimeError initializing_formal_final_test: MissingCompileTimeError initializing_formal_type_test: MissingCompileTimeError +int64_literal_test/*: Skip # This is testing Dart 2.0 int64 semantics. interface_test/00: MissingCompileTimeError least_upper_bound_expansive_test/01: MissingCompileTimeError least_upper_bound_expansive_test/02: MissingCompileTimeError @@ -329,7 +324,6 @@ library_ambiguous_test/02: MissingCompileTimeError library_ambiguous_test/03: MissingCompileTimeError library_ambiguous_test/04: MissingCompileTimeError library_env_test/has_no_html_support: RuntimeError, OK - library_env_test/has_no_io_support: RuntimeError, OK library_env_test/has_no_mirror_support: RuntimeError, OK local_function2_test/01: MissingCompileTimeError @@ -757,278 +751,163 @@ unresolved_default_constructor_test/01: MissingCompileTimeError unresolved_in_factory_test: MissingCompileTimeError unresolved_top_level_method_test: MissingCompileTimeError unresolved_top_level_var_test: MissingCompileTimeError +vm/*: SkipByDesign # Tests for the VM. void_block_return_test/00: MissingCompileTimeError wrong_number_type_arguments_test/*: MissingCompileTimeError [ $compiler != dart2js ] minify_closure_variable_collision_test: SkipByDesign # Regression test for dart2js -[ $compiler == dart2js && $runtime != none && !$dart2js_with_kernel ] -accessor_conflict_import2_test: RuntimeError # Issue 25626 -accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25626 -accessor_conflict_import_prefixed_test: RuntimeError # Issue 25626 -accessor_conflict_import_test: RuntimeError # Issue 25626 -assertion_test: RuntimeError # Issue 30326 -async_star_test/02: RuntimeError -bit_operations_test: RuntimeError, OK # Issue 1533 -branch_canonicalization_test: RuntimeError # Issue 638. -covariant_override/runtime_check_test: RuntimeError -function_type_alias_test: RuntimeError -generic_closure_test: RuntimeError -generic_function_typedef_test/01: RuntimeError -generic_instanceof_test: RuntimeError -generic_typedef_test: RuntimeError -implicit_downcast_during_assert_initializer_test: CompileTimeError -implicit_downcast_during_for_in_iterable_test: RuntimeError -implicit_downcast_during_function_literal_arrow_test: RuntimeError -implicit_downcast_during_function_literal_return_test: RuntimeError -implicit_downcast_during_list_literal_test: RuntimeError -implicit_downcast_during_redirecting_initializer_test: RuntimeError -implicit_downcast_during_return_async_test: RuntimeError -implicit_downcast_during_super_initializer_test: RuntimeError -implicit_downcast_during_yield_star_test: RuntimeError -implicit_downcast_during_yield_test: RuntimeError -instanceof2_test: RuntimeError -instanceof4_test/01: RuntimeError -instanceof4_test/none: RuntimeError -invalid_cast_test/01: MissingCompileTimeError -invalid_cast_test/02: MissingCompileTimeError -invalid_cast_test/03: MissingCompileTimeError -invalid_cast_test/04: MissingCompileTimeError -invalid_cast_test/07: MissingCompileTimeError -invalid_cast_test/08: MissingCompileTimeError -invalid_cast_test/09: MissingCompileTimeError -invalid_cast_test/10: MissingCompileTimeError -invalid_cast_test/11: MissingCompileTimeError -many_generic_instanceof_test: RuntimeError -map_literal8_test: RuntimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError # Issue 15101 -mixin_forwarding_constructor4_test/02: MissingCompileTimeError # Issue 15101 -mixin_forwarding_constructor4_test/03: MissingCompileTimeError # Issue 15101 -not_enough_positional_arguments_test/00: MissingCompileTimeError -not_enough_positional_arguments_test/03: MissingCompileTimeError -not_enough_positional_arguments_test/06: MissingCompileTimeError -not_enough_positional_arguments_test/07: MissingCompileTimeError -null_test/mirrors: Skip # Uses mirrors. -ref_before_declaration_test/00: MissingCompileTimeError -ref_before_declaration_test/01: MissingCompileTimeError -ref_before_declaration_test/02: MissingCompileTimeError -ref_before_declaration_test/03: MissingCompileTimeError -ref_before_declaration_test/04: MissingCompileTimeError -ref_before_declaration_test/05: MissingCompileTimeError -ref_before_declaration_test/06: MissingCompileTimeError -regress_28341_test: Fail # Issue 28340 -symbol_literal_test/none: CompileTimeError -tearoff_dynamic_test: RuntimeError -truncdiv_test: RuntimeError # Issue 15246 -type_literal_test: RuntimeError -vm/*: SkipByDesign # Tests for the VM. +[ $compiler == dart2js && $runtime == chrome ] +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError -[ $compiler == dart2js && !$dart2js_with_kernel ] -accessor_conflict_export2_test: Crash # Issue 25626 -accessor_conflict_export_test: Crash # Issue 25626 -assertion_initializer_const_error2_test/none: Pass -assertion_initializer_const_error2_test/*: Crash # Issue 30038 -assertion_initializer_test: Crash -bad_constructor_test/05: CompileTimeError -bad_typedef_test/00: Crash # Issue 28214 -bug31436_test: RuntimeError -built_in_identifier_type_annotation_test/13: Crash # Issue 28815 -built_in_identifier_type_annotation_test/22: MissingCompileTimeError # Error only in strong mode -built_in_identifier_type_annotation_test/30: Crash # Issue 28815 -built_in_identifier_type_annotation_test/52: Crash # Issue 28815 -built_in_identifier_type_annotation_test/53: Crash # Issue 28815 -built_in_identifier_type_annotation_test/54: Crash # Issue 28815 -built_in_identifier_type_annotation_test/55: Crash # Issue 28815 -built_in_identifier_type_annotation_test/57: Crash # Issue 28815 -built_in_identifier_type_annotation_test/58: Crash # Issue 28815 -built_in_identifier_type_annotation_test/59: Crash # Issue 28815 -built_in_identifier_type_annotation_test/60: Crash # Issue 28815 -built_in_identifier_type_annotation_test/61: Crash # Issue 28815 -built_in_identifier_type_annotation_test/62: Crash # Issue 28815 -built_in_identifier_type_annotation_test/63: Crash # Issue 28815 -built_in_identifier_type_annotation_test/64: Crash # Issue 28815 -built_in_identifier_type_annotation_test/65: Crash # Issue 28815 -built_in_identifier_type_annotation_test/66: Crash # Issue 28815 -built_in_identifier_type_annotation_test/67: Crash # Issue 28815 -built_in_identifier_type_annotation_test/68: Crash # Issue 28815 -built_in_identifier_type_annotation_test/81: Crash # Issue 28815 -call_function_apply_test: RuntimeError # Issue 23873 -canonical_const2_test: RuntimeError, OK # Issue 1533 -compile_time_constant_o_test/01: MissingCompileTimeError -compile_time_constant_o_test/02: MissingCompileTimeError -conditional_method_invocation_test/05: MissingCompileTimeError -conditional_method_invocation_test/06: MissingCompileTimeError -conditional_method_invocation_test/07: MissingCompileTimeError -conditional_method_invocation_test/08: MissingCompileTimeError -conditional_method_invocation_test/12: MissingCompileTimeError -conditional_method_invocation_test/13: MissingCompileTimeError -conditional_method_invocation_test/18: MissingCompileTimeError -conditional_method_invocation_test/19: MissingCompileTimeError -conditional_property_access_test/04: MissingCompileTimeError -conditional_property_access_test/05: MissingCompileTimeError -conditional_property_access_test/06: MissingCompileTimeError -conditional_property_access_test/10: MissingCompileTimeError -conditional_property_access_test/11: MissingCompileTimeError -conditional_property_access_test/16: MissingCompileTimeError -conditional_property_access_test/17: MissingCompileTimeError -conditional_property_assignment_test/04: MissingCompileTimeError -conditional_property_assignment_test/05: MissingCompileTimeError -conditional_property_assignment_test/06: MissingCompileTimeError -conditional_property_assignment_test/10: MissingCompileTimeError -conditional_property_assignment_test/11: MissingCompileTimeError -conditional_property_assignment_test/12: MissingCompileTimeError -conditional_property_assignment_test/13: MissingCompileTimeError -conditional_property_assignment_test/27: MissingCompileTimeError -conditional_property_assignment_test/28: MissingCompileTimeError -conditional_property_assignment_test/32: MissingCompileTimeError -conditional_property_assignment_test/33: MissingCompileTimeError -conditional_property_assignment_test/34: MissingCompileTimeError -conditional_property_assignment_test/35: MissingCompileTimeError -conditional_property_increment_decrement_test/04: MissingCompileTimeError -conditional_property_increment_decrement_test/08: MissingCompileTimeError -conditional_property_increment_decrement_test/12: MissingCompileTimeError -conditional_property_increment_decrement_test/16: MissingCompileTimeError -conditional_property_increment_decrement_test/21: MissingCompileTimeError -conditional_property_increment_decrement_test/22: MissingCompileTimeError -conditional_property_increment_decrement_test/27: MissingCompileTimeError -conditional_property_increment_decrement_test/28: MissingCompileTimeError -conditional_property_increment_decrement_test/33: MissingCompileTimeError -conditional_property_increment_decrement_test/34: MissingCompileTimeError -conditional_property_increment_decrement_test/39: MissingCompileTimeError -conditional_property_increment_decrement_test/40: MissingCompileTimeError -const_constructor2_test/05: MissingCompileTimeError -const_constructor2_test/06: MissingCompileTimeError -const_types_test/01: MissingCompileTimeError -const_types_test/02: MissingCompileTimeError -const_types_test/03: MissingCompileTimeError -const_types_test/04: MissingCompileTimeError -const_types_test/05: MissingCompileTimeError -const_types_test/06: MissingCompileTimeError -const_types_test/13: MissingCompileTimeError -const_types_test/34: MissingCompileTimeError -const_types_test/35: MissingCompileTimeError -const_types_test/39: MissingCompileTimeError -const_types_test/40: MissingCompileTimeError -const_switch_test/02: RuntimeError # Issue 17960 -const_switch_test/04: RuntimeError # Issue 17960 -deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError -deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError -deferred_not_loaded_check_test: Fail # Issue 27577 -double_int_to_string_test: RuntimeError # Issue 1533 -enum_test: Fail # Issue 28340 -final_attempt_reinitialization_test.dart: Skip # Issue 29659 -final_field_override_test: RuntimeError -generalized_void_syntax_test: CompileTimeError # Issue #30176. -generic_field_mixin4_test: Crash # Issue 18651 -generic_field_mixin5_test: Crash # Issue 18651 -generic_function_typedef2_test/00: MissingCompileTimeError # Issue 28214 -generic_function_typedef2_test/01: MissingCompileTimeError # Issue 28214 -generic_function_typedef2_test/02: MissingCompileTimeError # Issue 28214 -generic_function_typedef2_test/03: MissingCompileTimeError # Issue 28214 -generic_function_typedef2_test/05: Crash # Issue 28214 -generic_function_typedef2_test/06: Crash # Issue 28214 -generic_methods_local_variable_declaration_test: RuntimeError -getter_setter_in_lib_test: Fail # Issue 23288 -identical_closure2_test: RuntimeError # Issue 1533, Issue 12596 -if_null_assignment_behavior_test/13: Crash # Issue 23491 -if_null_assignment_behavior_test/14: Crash # Issue 23491 -infinity_test: RuntimeError # Issue 4984 -integer_division_by_zero_test: RuntimeError # Issue 8301 -invocation_mirror2_test: RuntimeError # Issue 6490 (wrong retval). -method_name_test: Fail # issue 25574 -method_override5_test: RuntimeError # Issue 12809 -mint_arithmetic_test: RuntimeError # Issue 1533 -mixin_of_mixin_test/none: CompileTimeError -mixin_super_2_test/none: CompileTimeError -mixin_super_bound2_test: CompileTimeError # Issue 23773 -mixin_mixin_type_arguments_test: RuntimeError # Issue 29587 -mixin_mixin2_test: RuntimeError # Issue 13109. -mixin_mixin3_test: RuntimeError # Issue 13109. -mixin_super_constructor_named_test/01: Fail # Issue 15101 -mixin_super_constructor_positionals_test/01: Fail # Issue 15101 -mixin_super_test: CompileTimeError # Issue 23773 -mixin_super_use_test: CompileTimeError # Issue 23773 -mixin_superclass_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass2_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass3_test: CompileTimeError # Issue 23773 -mixin_supertype_subclass4_test: CompileTimeError # Issue 23773 -mixin_type_parameters_super_test: RuntimeError -mixin_with_two_implicit_constructors_test: MissingCompileTimeError -mock_writable_final_private_field_test: CompileTimeError # Issue 17526 -modulo_test: RuntimeError # Issue 15246 -multiline_newline_test/01: CompileTimeError # Issue 23888 -multiline_newline_test/01r: CompileTimeError # Issue 23888 -multiline_newline_test/02: CompileTimeError # Issue 23888 -multiline_newline_test/02r: CompileTimeError # Issue 23888 -multiline_newline_test/03: RuntimeError -multiline_newline_test/03r: RuntimeError -multiline_newline_test/04: MissingCompileTimeError # Issue 23888 -multiline_newline_test/04r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/05: MissingCompileTimeError # Issue 23888 -multiline_newline_test/05r: MissingCompileTimeError # Issue 23888 -multiline_newline_test/none: RuntimeError # Issue 23888 -number_identity2_test: RuntimeError # Issue 12596 -left_shift_test: RuntimeError # Issue 1533 -numbers_test: RuntimeError, OK # Issue 1533 -full_stacktrace1_test: Pass, RuntimeError # Issue 12698 -full_stacktrace2_test: Pass, RuntimeError # Issue 12698 -nan_identical_test: Fail # Issue 11551 -object_has_no_call_method_test/02: MissingCompileTimeError -object_has_no_call_method_test/05: MissingCompileTimeError -object_has_no_call_method_test/08: MissingCompileTimeError -positional_parameters_type_test/01: MissingCompileTimeError -positional_parameters_type_test/02: MissingCompileTimeError -stacktrace_test: Pass, RuntimeError # # Issue 12698 -stacktrace_rethrow_nonerror_test: Pass, RuntimeError # Issue 12698 -stacktrace_rethrow_error_test: Pass, RuntimeError # Issue 12698 -type_variable_conflict_test/01: Fail # Issue 13702 -type_variable_conflict_test/02: Fail # Issue 13702 -type_variable_conflict_test/03: Fail # Issue 13702 -type_variable_conflict_test/04: Fail # Issue 13702 -type_variable_conflict_test/05: Fail # Issue 13702 -type_variable_conflict_test/06: Fail # Issue 13702 -scope_variable_test/01: MissingCompileTimeError # Issue 13016 -list_literal4_test/00: MissingCompileTimeError -list_literal4_test/01: MissingCompileTimeError -list_literal4_test/03: MissingCompileTimeError -list_literal4_test/04: MissingCompileTimeError -list_literal4_test/05: MissingCompileTimeError -list_literal_syntax_test/01: MissingCompileTimeError -list_literal_syntax_test/02: MissingCompileTimeError -list_literal_syntax_test/03: MissingCompileTimeError -try_catch_on_syntax_test/10: Fail # Issue 19823 -try_catch_on_syntax_test/11: Fail # Issue 19823 -regress_22976_test: CompileTimeError # Issue 23132 -regress_24283_test: RuntimeError # Issue 1533 -external_test/10: CompileTimeError # Issue 12887 -external_test/13: CompileTimeError # Issue 12887 -external_test/20: CompileTimeError # Issue 12887 -expect_test: RuntimeError, OK # Issue 13080 -setter4_test: CompileTimeError # issue 13639 -stacktrace_demangle_ctors_test: Fail # dart2js stack traces are not always compliant. -truncdiv_test: RuntimeError # Issue 15246 -const_dynamic_type_literal_test/03: CompileTimeError # Issue 23009 -full_stacktrace3_test: Pass, RuntimeError # Issue 12698 +[ $compiler == dart2js && $runtime == chrome && $system == macos && !$dart2js_with_kernel ] +await_future_test: Pass, Timeout # Issue 26735 + +[ $compiler == dart2js && $runtime == chrome && !$dart2js_with_kernel ] +enum_mirror_test: Pass + +[ $compiler == dart2js && $runtime == chromeOnAndroid && !$dart2js_with_kernel ] +override_field_test/02: Pass, Slow # TODO(kasperl): Please triage. + +[ $compiler == dart2js && $runtime == d8 && $checked && !$dart2js_with_kernel ] +factory_implementation_test/00: Fail +regress_30339_test: RuntimeError # Issue 26429 + +[ $compiler == dart2js && $runtime == d8 && !$checked ] +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError + +[ $compiler == dart2js && $runtime == drt && $checked && !$dart2js_with_kernel ] +regress_30339_test: RuntimeError # Issue 30393 + +[ $compiler == dart2js && $runtime == drt && !$checked && !$dart2js_with_kernel ] +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError + +[ $compiler == dart2js && $runtime != drt && !$dart2js_with_kernel ] +issue23244_test: RuntimeError # 23244 + +[ $compiler == dart2js && $runtime == ff && !$dart2js_with_kernel ] +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError +round_test: Pass, Fail, OK # Fixed in ff 35. Common JavaScript engine Math.round bug. + +[ $compiler == dart2js && $runtime == jsshell ] +async_star_test/01: RuntimeError +async_star_test/02: RuntimeError +async_star_test/03: RuntimeError +async_star_test/04: RuntimeError +async_star_test/05: RuntimeError +async_star_test/none: RuntimeError +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError + +[ $compiler == dart2js && $runtime == jsshell && !$dart2js_with_kernel ] +async_star_await_pauses_test: RuntimeError # Need triage +async_star_no_cancel2_test: RuntimeError # Need triage +async_star_no_cancel_test: RuntimeError # Need triage +await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728 +regress_23996_test: RuntimeError # Jsshell does not provide non-zero timers, Issue 7728 + +[ $compiler == dart2js && $runtime != none ] +covariant_subtyping_with_substitution_test: RuntimeError +covariant_tear_off_type_test: RuntimeError + +[ $compiler == dart2js && $runtime != none && $checked ] +assert_with_message_test: RuntimeError +function_subtype_bound_closure3_test: RuntimeError +function_subtype_bound_closure4_test: RuntimeError +function_subtype_bound_closure7_test: RuntimeError +function_subtype_call1_test: RuntimeError +function_subtype_call2_test: RuntimeError +function_subtype_cast1_test: RuntimeError +function_subtype_named1_test: RuntimeError +function_subtype_named2_test: RuntimeError +function_subtype_not1_test: RuntimeError +function_subtype_optional1_test: RuntimeError +function_subtype_optional2_test: RuntimeError +function_subtype_typearg2_test: RuntimeError +function_subtype_typearg3_test: RuntimeError +function_subtype_typearg5_test: RuntimeError +function_type/function_type0_test: RuntimeError # Issue 30476 +function_type/function_type10_test: RuntimeError # Issue 30476 +function_type/function_type12_test: RuntimeError # Issue 30476 +function_type/function_type13_test: RuntimeError # Issue 30476 +function_type/function_type14_test: RuntimeError # Issue 30476 +function_type/function_type15_test: RuntimeError # Issue 30476 +function_type/function_type16_test: RuntimeError # Issue 30476 +function_type/function_type17_test: RuntimeError # Issue 30476 +function_type/function_type18_test: RuntimeError # Issue 30476 +function_type/function_type19_test: RuntimeError # Issue 30476 +function_type/function_type1_test: RuntimeError # Issue 30476 +function_type/function_type20_test: RuntimeError # Issue 30476 +function_type/function_type21_test: RuntimeError # Issue 30476 +function_type/function_type22_test: RuntimeError # Issue 30476 +function_type/function_type24_test: RuntimeError # Issue 30476 +function_type/function_type25_test: RuntimeError # Issue 30476 +function_type/function_type26_test: RuntimeError # Issue 30476 +function_type/function_type27_test: RuntimeError # Issue 30476 +function_type/function_type28_test: RuntimeError # Issue 30476 +function_type/function_type29_test: RuntimeError # Issue 30476 +function_type/function_type2_test: RuntimeError # Issue 30476 +function_type/function_type30_test: RuntimeError # Issue 30476 +function_type/function_type31_test: RuntimeError # Issue 30476 +function_type/function_type32_test: RuntimeError # Issue 30476 +function_type/function_type33_test: RuntimeError # Issue 30476 +function_type/function_type34_test: RuntimeError # Issue 30476 +function_type/function_type36_test: RuntimeError # Issue 30476 +function_type/function_type3_test: RuntimeError # Issue 30476 +function_type/function_type44_test: RuntimeError # Issue 30476 +function_type/function_type45_test: RuntimeError # Issue 30476 +function_type/function_type46_test: RuntimeError # Issue 30476 +function_type/function_type47_test: RuntimeError # Issue 30476 +function_type/function_type48_test: RuntimeError # Issue 30476 +function_type/function_type49_test: RuntimeError # Issue 30476 +function_type/function_type4_test: RuntimeError # Issue 30476 +function_type/function_type50_test: RuntimeError # Issue 30476 +function_type/function_type51_test: RuntimeError # Issue 30476 +function_type/function_type52_test: RuntimeError # Issue 30476 +function_type/function_type53_test: RuntimeError # Issue 30476 +function_type/function_type54_test: RuntimeError # Issue 30476 +function_type/function_type56_test: RuntimeError # Issue 30476 +function_type/function_type57_test: RuntimeError # Issue 30476 +function_type/function_type58_test: RuntimeError # Issue 30476 +function_type/function_type59_test: RuntimeError # Issue 30476 +function_type/function_type5_test: RuntimeError # Issue 30476 +function_type/function_type60_test: RuntimeError # Issue 30476 +function_type/function_type61_test: RuntimeError # Issue 30476 +function_type/function_type62_test: RuntimeError # Issue 30476 +function_type/function_type63_test: RuntimeError # Issue 30476 +function_type/function_type64_test: RuntimeError # Issue 30476 +function_type/function_type65_test: RuntimeError # Issue 30476 +function_type/function_type66_test: RuntimeError # Issue 30476 +function_type/function_type6_test: RuntimeError # Issue 30476 +function_type/function_type7_test: RuntimeError # Issue 30476 +function_type/function_type80_test: RuntimeError # Issue 30476 +function_type/function_type81_test: RuntimeError # Issue 30476 +function_type/function_type82_test: RuntimeError # Issue 30476 +function_type/function_type83_test: RuntimeError # Issue 30476 +function_type/function_type84_test: RuntimeError # Issue 30476 +function_type/function_type85_test: RuntimeError # Issue 30476 +function_type/function_type86_test: RuntimeError # Issue 30476 +function_type/function_type87_test: RuntimeError # Issue 30476 +function_type/function_type88_test: RuntimeError # Issue 30476 +function_type/function_type89_test: RuntimeError # Issue 30476 +function_type/function_type8_test: RuntimeError # Issue 30476 +function_type/function_type90_test: RuntimeError # Issue 30476 +function_type/function_type96_test: RuntimeError # Issue 30476 +function_type/function_type9_test: RuntimeError # Issue 30476 +function_type_alias2_test: RuntimeError [ $compiler == dart2js && $runtime != none && !$checked && !$dart2js_with_kernel ] callable_test/none: RuntimeError cascaded_forwarding_stubs_generic_test: RuntimeError cascaded_forwarding_stubs_test: RuntimeError -checked_setter_test: RuntimeError checked_setter2_test: RuntimeError checked_setter3_test: RuntimeError +checked_setter_test: RuntimeError covariant_subtyping_tearoff1_test: RuntimeError covariant_subtyping_tearoff2_test: RuntimeError covariant_subtyping_tearoff3_test: RuntimeError @@ -1105,10 +984,575 @@ mixin_type_parameters_super_test: RuntimeError type_parameter_test/05: MissingCompileTimeError typevariable_substitution2_test/02: RuntimeError -[ $compiler == dart2js && !$checked && !$enable_asserts && !$dart2js_with_kernel && $runtime != none ] +[ $compiler == dart2js && $runtime != none && !$checked && !$dart2js_with_kernel && !$enable_asserts ] assertion_test: RuntimeError # Issue 12748 -typevariable_substitution2_test/02: RuntimeError runtime_type_function_test: Pass, RuntimeError # Issue 27394 +typevariable_substitution2_test/02: RuntimeError + +[ $compiler == dart2js && $runtime != none && !$dart2js_with_kernel ] +accessor_conflict_import2_test: RuntimeError # Issue 25626 +accessor_conflict_import_prefixed2_test: RuntimeError # Issue 25626 +accessor_conflict_import_prefixed_test: RuntimeError # Issue 25626 +accessor_conflict_import_test: RuntimeError # Issue 25626 +assertion_test: RuntimeError # Issue 30326 +async_star_cancel_while_paused_test: RuntimeError # Issue 22853 +async_star_test/02: RuntimeError +bit_operations_test: RuntimeError, OK # Issue 1533 +branch_canonicalization_test: RuntimeError # Issue 638. +covariant_override/runtime_check_test: RuntimeError +function_type_alias_test: RuntimeError +generic_closure_test: RuntimeError +generic_function_typedef_test/01: RuntimeError +generic_instanceof_test: RuntimeError +generic_typedef_test: RuntimeError +implicit_downcast_during_assert_initializer_test: CompileTimeError +implicit_downcast_during_for_in_iterable_test: RuntimeError +implicit_downcast_during_function_literal_arrow_test: RuntimeError +implicit_downcast_during_function_literal_return_test: RuntimeError +implicit_downcast_during_list_literal_test: RuntimeError +implicit_downcast_during_redirecting_initializer_test: RuntimeError +implicit_downcast_during_return_async_test: RuntimeError +implicit_downcast_during_super_initializer_test: RuntimeError +implicit_downcast_during_yield_star_test: RuntimeError +implicit_downcast_during_yield_test: RuntimeError +instanceof2_test: RuntimeError +instanceof4_test/01: RuntimeError +instanceof4_test/none: RuntimeError +invalid_cast_test/01: MissingCompileTimeError +invalid_cast_test/02: MissingCompileTimeError +invalid_cast_test/03: MissingCompileTimeError +invalid_cast_test/04: MissingCompileTimeError +invalid_cast_test/07: MissingCompileTimeError +invalid_cast_test/08: MissingCompileTimeError +invalid_cast_test/09: MissingCompileTimeError +invalid_cast_test/10: MissingCompileTimeError +invalid_cast_test/11: MissingCompileTimeError +many_generic_instanceof_test: RuntimeError +map_literal8_test: RuntimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError # Issue 15101 +mixin_forwarding_constructor4_test/02: MissingCompileTimeError # Issue 15101 +mixin_forwarding_constructor4_test/03: MissingCompileTimeError # Issue 15101 +not_enough_positional_arguments_test/00: MissingCompileTimeError +not_enough_positional_arguments_test/03: MissingCompileTimeError +not_enough_positional_arguments_test/06: MissingCompileTimeError +not_enough_positional_arguments_test/07: MissingCompileTimeError +null_test/mirrors: Skip # Uses mirrors. +ref_before_declaration_test/00: MissingCompileTimeError +ref_before_declaration_test/01: MissingCompileTimeError +ref_before_declaration_test/02: MissingCompileTimeError +ref_before_declaration_test/03: MissingCompileTimeError +ref_before_declaration_test/04: MissingCompileTimeError +ref_before_declaration_test/05: MissingCompileTimeError +ref_before_declaration_test/06: MissingCompileTimeError +regress_28341_test: Fail # Issue 28340 +symbol_literal_test/none: CompileTimeError +tearoff_dynamic_test: RuntimeError +truncdiv_test: RuntimeError # Issue 15246 +type_literal_test: RuntimeError +vm/*: SkipByDesign # Tests for the VM. + +[ $compiler == dart2js && $runtime == safari && !$dart2js_with_kernel ] +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError +round_test: Fail, OK # Common JavaScript engine Math.round bug. + +[ $compiler == dart2js && $runtime == safarimobilesim && !$dart2js_with_kernel ] +call_through_getter_test: Fail, OK + +[ $compiler == dart2js && $system == windows && !$dart2js_with_kernel ] +string_literals_test: Pass, RuntimeError # Failures on dart2js-win7-chrome-4-4-be and dart2js-win7-ie11ff-4-4-be + +[ $compiler == dart2js && $browser && $csp && !$fast_startup ] +conditional_import_string_test: Fail # Issue 30615 +conditional_import_test: Fail # Issue 30615 + +[ $compiler == dart2js && $browser && !$dart2js_with_kernel ] +config_import_test: Fail # Test flag is not passed to the compiler. +library_env_test/has_io_support: RuntimeError # Issue 27398 +library_env_test/has_no_io_support: Pass # Issue 27398 + +[ $compiler == dart2js && $checked ] +covariant_subtyping_test: CompileTimeError + +[ $compiler == dart2js && $checked && $dart2js_with_kernel ] +arithmetic_canonicalization_test: RuntimeError +assertion_initializer_const_function_test/01: MissingCompileTimeError +assertion_initializer_test: CompileTimeError +assertion_test: RuntimeError +async_star_cancel_while_paused_test: RuntimeError +async_star_test/02: RuntimeError +bad_override_test/03: MissingCompileTimeError +bad_override_test/04: MissingCompileTimeError +bad_override_test/05: MissingCompileTimeError +bit_operations_test/03: RuntimeError +bit_operations_test/04: RuntimeError +bit_operations_test/none: RuntimeError +branch_canonicalization_test: RuntimeError +built_in_identifier_test: RuntimeError # Issue 28815 +built_in_identifier_type_annotation_test/05: RuntimeError # Issue 28815 +built_in_identifier_type_annotation_test/39: RuntimeError # Issue 28815 +built_in_identifier_type_annotation_test/56: RuntimeError # Issue 28815 +built_in_identifier_type_annotation_test/73: RuntimeError # Issue 28815 +built_in_identifier_type_annotation_test/none: RuntimeError # Issue 28815 +call_function_apply_test: RuntimeError +canonical_const2_test: RuntimeError +check_member_static_test/02: MissingCompileTimeError +class_cycle_test/02: MissingCompileTimeError +class_cycle_test/03: MissingCompileTimeError +closure_invoked_through_interface_target_field_test: MissingCompileTimeError +closure_invoked_through_interface_target_getter_test: MissingCompileTimeError +compile_time_constant_o_test/01: MissingCompileTimeError +compile_time_constant_o_test/02: MissingCompileTimeError +conditional_import_string_test: RuntimeError +conditional_import_test: RuntimeError +conditional_method_invocation_test/05: MissingCompileTimeError +conditional_method_invocation_test/06: MissingCompileTimeError +conditional_method_invocation_test/07: MissingCompileTimeError +conditional_method_invocation_test/08: MissingCompileTimeError +conditional_method_invocation_test/12: MissingCompileTimeError +conditional_method_invocation_test/13: MissingCompileTimeError +conditional_method_invocation_test/18: MissingCompileTimeError +conditional_method_invocation_test/19: MissingCompileTimeError +conditional_property_access_test/04: MissingCompileTimeError +conditional_property_access_test/05: MissingCompileTimeError +conditional_property_access_test/06: MissingCompileTimeError +conditional_property_access_test/10: MissingCompileTimeError +conditional_property_access_test/11: MissingCompileTimeError +conditional_property_access_test/16: MissingCompileTimeError +conditional_property_access_test/17: MissingCompileTimeError +conditional_property_assignment_test/04: MissingCompileTimeError +conditional_property_assignment_test/05: MissingCompileTimeError +conditional_property_assignment_test/06: MissingCompileTimeError +conditional_property_assignment_test/10: MissingCompileTimeError +conditional_property_assignment_test/11: MissingCompileTimeError +conditional_property_assignment_test/12: MissingCompileTimeError +conditional_property_assignment_test/13: MissingCompileTimeError +conditional_property_assignment_test/27: MissingCompileTimeError +conditional_property_assignment_test/28: MissingCompileTimeError +conditional_property_assignment_test/32: MissingCompileTimeError +conditional_property_assignment_test/33: MissingCompileTimeError +conditional_property_assignment_test/34: MissingCompileTimeError +conditional_property_assignment_test/35: MissingCompileTimeError +conditional_property_increment_decrement_test/04: MissingCompileTimeError +conditional_property_increment_decrement_test/08: MissingCompileTimeError +conditional_property_increment_decrement_test/12: MissingCompileTimeError +conditional_property_increment_decrement_test/16: MissingCompileTimeError +conditional_property_increment_decrement_test/21: MissingCompileTimeError +conditional_property_increment_decrement_test/22: MissingCompileTimeError +conditional_property_increment_decrement_test/27: MissingCompileTimeError +conditional_property_increment_decrement_test/28: MissingCompileTimeError +conditional_property_increment_decrement_test/33: MissingCompileTimeError +conditional_property_increment_decrement_test/34: MissingCompileTimeError +conditional_property_increment_decrement_test/39: MissingCompileTimeError +conditional_property_increment_decrement_test/40: MissingCompileTimeError +config_import_corelib_test: RuntimeError +config_import_test: RuntimeError +const_constructor2_test/05: MissingCompileTimeError +const_constructor2_test/06: MissingCompileTimeError +const_constructor2_test/13: MissingCompileTimeError +const_constructor2_test/14: MissingCompileTimeError +const_constructor2_test/15: MissingCompileTimeError +const_constructor2_test/16: MissingCompileTimeError +const_constructor2_test/17: MissingCompileTimeError +const_constructor2_test/18: MissingCompileTimeError +const_constructor2_test/20: MissingCompileTimeError +const_constructor2_test/22: MissingCompileTimeError +const_constructor2_test/24: MissingCompileTimeError +const_constructor3_test/02: MissingCompileTimeError +const_constructor3_test/04: MissingCompileTimeError +const_dynamic_type_literal_test/02: MissingCompileTimeError +const_error_multiply_initialized_test/02: MissingCompileTimeError +const_error_multiply_initialized_test/04: MissingCompileTimeError +const_evaluation_test/01: RuntimeError +const_factory_with_body_test/01: MissingCompileTimeError +const_init2_test/02: MissingCompileTimeError +const_instance_field_test/01: MissingCompileTimeError +const_map2_test/00: MissingCompileTimeError +const_map3_test/00: MissingCompileTimeError +const_switch2_test/01: MissingCompileTimeError +const_switch_test/02: RuntimeError +const_switch_test/04: RuntimeError +const_types_test/01: MissingCompileTimeError +const_types_test/02: MissingCompileTimeError +const_types_test/03: MissingCompileTimeError +const_types_test/04: MissingCompileTimeError +const_types_test/05: MissingCompileTimeError +const_types_test/06: MissingCompileTimeError +const_types_test/13: MissingCompileTimeError +const_types_test/34: MissingCompileTimeError +const_types_test/35: MissingCompileTimeError +const_types_test/39: MissingCompileTimeError +const_types_test/40: MissingCompileTimeError +constants_test/05: MissingCompileTimeError +constructor_duplicate_final_test/01: MissingCompileTimeError +constructor_duplicate_final_test/02: MissingCompileTimeError +constructor_named_arguments_test/01: MissingCompileTimeError +constructor_named_arguments_test/none: RuntimeError +constructor_redirect1_negative_test/01: Crash # Stack Overflow +constructor_redirect1_negative_test/none: MissingCompileTimeError +constructor_redirect2_negative_test: Crash # Stack Overflow +constructor_redirect2_test/01: MissingCompileTimeError +constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). +covariance_setter_test/none: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +covariance_type_parameter_test/01: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +covariance_type_parameter_test/02: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +covariance_type_parameter_test/03: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +covariance_type_parameter_test/none: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +covariant_override/runtime_check_test: RuntimeError +covariant_subtyping_test: Crash # Unsupported operation: Unsupported type parameter type node E. +cyclic_constructor_test/01: Crash # Stack Overflow +deferred_closurize_load_library_test: RuntimeError +deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError +deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError +deferred_inheritance_constraints_test/extends: MissingCompileTimeError +deferred_inheritance_constraints_test/implements: MissingCompileTimeError +deferred_inheritance_constraints_test/mixin: MissingCompileTimeError +deferred_load_constants_test/none: RuntimeError +deferred_load_library_wrong_args_test/01: MissingRuntimeError +deferred_not_loaded_check_test: RuntimeError +deferred_redirecting_factory_test: RuntimeError +double_int_to_string_test: RuntimeError +duplicate_export_negative_test: Fail +duplicate_implements_test/01: MissingCompileTimeError +duplicate_implements_test/02: MissingCompileTimeError +duplicate_implements_test/03: MissingCompileTimeError +duplicate_implements_test/04: MissingCompileTimeError +dynamic_prefix_core_test/none: RuntimeError +enum_mirror_test: RuntimeError +expect_test: RuntimeError +external_test/10: MissingRuntimeError +external_test/13: MissingRuntimeError +external_test/20: MissingRuntimeError +factory_redirection_test/07: MissingCompileTimeError +fauxverride_test/03: MissingCompileTimeError +fauxverride_test/05: MissingCompileTimeError +field_override3_test/00: MissingCompileTimeError +field_override3_test/01: MissingCompileTimeError +field_override3_test/02: MissingCompileTimeError +field_override3_test/03: MissingCompileTimeError +field_override4_test/02: MissingCompileTimeError +final_attempt_reinitialization_test/01: MissingCompileTimeError +final_attempt_reinitialization_test/02: MissingCompileTimeError +function_type_alias_test: RuntimeError +generalized_void_syntax_test: CompileTimeError +generic_closure_test/01: RuntimeError +generic_closure_test/none: RuntimeError +generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_function_bounds_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_function_dcall_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_function_typedef_test/01: RuntimeError +generic_instanceof_test: RuntimeError +generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. +generic_methods_closure_test: Crash # Unsupported operation: Unsupported type parameter type node S. +generic_methods_shadowing_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_tearoff_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_typedef_test: Crash # Unsupported operation: Unsupported type parameter type node S. +getter_override2_test/02: MissingCompileTimeError +getter_override_test/00: MissingCompileTimeError +getter_override_test/01: MissingCompileTimeError +getter_override_test/02: MissingCompileTimeError +identical_closure2_test: RuntimeError +implicit_downcast_during_assert_initializer_test: RuntimeError +infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +infinity_test: RuntimeError +instance_creation_in_function_annotation_test: RuntimeError +instanceof2_test: RuntimeError +instanceof4_test/01: RuntimeError +instanceof4_test/none: RuntimeError +integer_division_by_zero_test: RuntimeError +internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. +invocation_mirror2_test: RuntimeError +issue21079_test: RuntimeError +issue23244_test: RuntimeError +known_identifier_usage_error_test/none: RuntimeError # Issue 28815 +left_shift_test: RuntimeError +library_env_test/has_mirror_support: RuntimeError +list_literal1_test/01: MissingCompileTimeError +list_literal4_test/00: MissingCompileTimeError +list_literal4_test/01: MissingCompileTimeError +list_literal4_test/03: MissingCompileTimeError +list_literal4_test/04: MissingCompileTimeError +list_literal4_test/05: MissingCompileTimeError +list_literal_syntax_test/01: MissingCompileTimeError +list_literal_syntax_test/02: MissingCompileTimeError +list_literal_syntax_test/03: MissingCompileTimeError +malformed2_test/00: MissingCompileTimeError +many_generic_instanceof_test: RuntimeError +map_literal1_test/01: MissingCompileTimeError +map_literal8_test: RuntimeError +method_override7_test/00: MissingCompileTimeError +method_override7_test/01: MissingCompileTimeError +method_override7_test/02: MissingCompileTimeError +method_override8_test/00: MissingCompileTimeError +method_override8_test/01: MissingCompileTimeError +mint_arithmetic_test: RuntimeError +mixin_black_listed_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError +mixin_forwarding_constructor4_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/01: MissingCompileTimeError +mixin_illegal_super_use_test/02: MissingCompileTimeError +mixin_illegal_super_use_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/04: MissingCompileTimeError +mixin_illegal_super_use_test/05: MissingCompileTimeError +mixin_illegal_super_use_test/06: MissingCompileTimeError +mixin_illegal_super_use_test/07: MissingCompileTimeError +mixin_illegal_super_use_test/08: MissingCompileTimeError +mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError +mixin_mixin2_test: RuntimeError +mixin_mixin3_test: RuntimeError +mixin_mixin4_test: RuntimeError +mixin_mixin5_test: RuntimeError +mixin_mixin6_test: RuntimeError +mixin_mixin7_test: RuntimeError +mixin_mixin_bound2_test: RuntimeError +mixin_mixin_bound_test: RuntimeError +mixin_mixin_test: RuntimeError +mixin_mixin_type_arguments_test: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. +mixin_of_mixin_test/none: CompileTimeError +mixin_super_2_test/none: CompileTimeError +mixin_super_constructor_named_test/01: MissingCompileTimeError +mixin_super_constructor_positionals_test/01: MissingCompileTimeError +mixin_super_test: CompileTimeError +mixin_super_use_test: CompileTimeError +mixin_superclass_test: CompileTimeError +mixin_supertype_subclass2_test/01: CompileTimeError +mixin_supertype_subclass2_test/02: CompileTimeError +mixin_supertype_subclass2_test/03: CompileTimeError +mixin_supertype_subclass2_test/04: CompileTimeError +mixin_supertype_subclass2_test/05: CompileTimeError +mixin_supertype_subclass2_test/none: CompileTimeError +mixin_supertype_subclass3_test/01: CompileTimeError +mixin_supertype_subclass3_test/02: CompileTimeError +mixin_supertype_subclass3_test/03: CompileTimeError +mixin_supertype_subclass3_test/04: CompileTimeError +mixin_supertype_subclass3_test/05: CompileTimeError +mixin_supertype_subclass3_test/none: CompileTimeError +mixin_supertype_subclass4_test/01: CompileTimeError +mixin_supertype_subclass4_test/02: CompileTimeError +mixin_supertype_subclass4_test/03: CompileTimeError +mixin_supertype_subclass4_test/04: CompileTimeError +mixin_supertype_subclass4_test/05: CompileTimeError +mixin_supertype_subclass4_test/none: CompileTimeError +mixin_type_parameters_super_test: RuntimeError +modulo_test: RuntimeError +multiline_newline_test/04: MissingCompileTimeError +multiline_newline_test/04r: MissingCompileTimeError +multiline_newline_test/05: MissingCompileTimeError +multiline_newline_test/05r: MissingCompileTimeError +multiline_newline_test/06: MissingCompileTimeError +multiline_newline_test/06r: MissingCompileTimeError +named_parameters_default_eq_test/02: MissingCompileTimeError +nan_identical_test: RuntimeError +nested_generic_closure_test: Crash # Unsupported operation: Unsupported type parameter type node F. +nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +no_main_test/01: CompileTimeError +not_enough_positional_arguments_test/00: MissingCompileTimeError +not_enough_positional_arguments_test/01: MissingCompileTimeError +not_enough_positional_arguments_test/02: MissingCompileTimeError +not_enough_positional_arguments_test/03: MissingCompileTimeError +not_enough_positional_arguments_test/05: MissingCompileTimeError +not_enough_positional_arguments_test/06: MissingCompileTimeError +not_enough_positional_arguments_test/07: MissingCompileTimeError +null_test/02: MissingCompileTimeError +null_test/03: MissingCompileTimeError +null_test/mirrors: RuntimeError +null_test/none: RuntimeError +number_identity2_test: RuntimeError +numbers_test: RuntimeError +override_field_method1_negative_test: Fail +override_field_method2_negative_test: Fail +override_field_method4_negative_test: Fail +override_field_method5_negative_test: Fail +override_field_test/01: MissingCompileTimeError +override_inheritance_mixed_test/01: MissingCompileTimeError +override_inheritance_mixed_test/02: MissingCompileTimeError +override_inheritance_mixed_test/03: MissingCompileTimeError +override_inheritance_mixed_test/04: MissingCompileTimeError +override_inheritance_mixed_test/08: MissingCompileTimeError +override_inheritance_mixed_test/09: MissingCompileTimeError +override_method_with_field_test/01: MissingCompileTimeError +positional_parameters_type_test/01: MissingCompileTimeError +positional_parameters_type_test/02: MissingCompileTimeError +private_super_constructor_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/02: MissingCompileTimeError +redirecting_factory_long_test: RuntimeError +redirecting_factory_reflection_test: RuntimeError +regress_20394_test/01: MissingCompileTimeError +regress_22976_test/01: CompileTimeError +regress_22976_test/02: CompileTimeError +regress_22976_test/none: CompileTimeError +regress_24283_test: RuntimeError +regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant +regress_28217_test/01: MissingCompileTimeError +regress_28217_test/none: MissingCompileTimeError +regress_28255_test: RuntimeError +regress_28341_test: RuntimeError +regress_29405_test: RuntimeError +regress_29784_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in () for j:constructor(A.ok). +regress_29784_test/02: MissingCompileTimeError # Issue 29784 +regress_30339_test: RuntimeError # Issue 26429 +regress_31057_test: Crash # Unsupported operation: Unsupported type parameter type node B. +setter_override_test/00: MissingCompileTimeError +setter_override_test/03: MissingCompileTimeError +stacktrace_demangle_ctors_test: RuntimeError +stacktrace_test: RuntimeError +super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. +switch_bad_case_test/01: MissingCompileTimeError +switch_bad_case_test/02: MissingCompileTimeError +switch_case_test/00: MissingCompileTimeError +switch_case_test/01: MissingCompileTimeError +switch_case_test/02: MissingCompileTimeError +symbol_literal_test/01: MissingCompileTimeError +syntax_test/28: MissingCompileTimeError +syntax_test/29: MissingCompileTimeError +syntax_test/30: MissingCompileTimeError +syntax_test/31: MissingCompileTimeError +syntax_test/32: MissingCompileTimeError +syntax_test/33: MissingCompileTimeError +tearoff_dynamic_test: Crash # Unsupported operation: Unsupported type parameter type node T. +truncdiv_test: RuntimeError +try_catch_test/01: MissingCompileTimeError +type_check_const_function_typedef2_test: MissingCompileTimeError +type_literal_test: RuntimeError +type_parameter_test/06: Crash # Internal Error: Unexpected type variable in static context. +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 && $dart2js_with_kernel && $minified ] +inline_super_field_test: Crash +typedef_is_test: Crash + +[ $compiler == dart2js && $checked && !$dart2js_with_kernel ] +async_return_types_test/nestedFuture: Fail # Issue 26429 +async_return_types_test/wrongTypeParameter: Fail # Issue 26429 +check_member_static_test/01: MissingCompileTimeError +check_method_override_test/01: MissingCompileTimeError +check_method_override_test/02: MissingCompileTimeError +covariant_subtyping_test: CompileTimeError +default_factory2_test/01: Fail # Issue 14121 +function_malformed_result_type_test/00: MissingCompileTimeError +function_type_alias_test: RuntimeError +function_type_call_getter2_test/00: MissingCompileTimeError +function_type_call_getter2_test/01: MissingCompileTimeError +function_type_call_getter2_test/02: MissingCompileTimeError +function_type_call_getter2_test/03: MissingCompileTimeError +function_type_call_getter2_test/04: MissingCompileTimeError +function_type_call_getter2_test/05: MissingCompileTimeError +malbounded_instantiation_test/01: Fail # Issue 12702 +malbounded_redirecting_factory_test/02: Fail # Issue 12825 +malbounded_redirecting_factory_test/03: Fail # Issue 12825 +malbounded_type_cast2_test: Fail # Issue 14121 +malbounded_type_cast_test: Fail # Issue 14121 +malbounded_type_test_test/03: Fail # Issue 14121 +malbounded_type_test_test/04: Fail # Issue 14121 +regress_26133_test: RuntimeError # Issue 26429 +regress_29405_test: Fail # Issue 29422 + +[ $compiler == dart2js && !$checked ] +covariance_field_test/01: RuntimeError +covariance_field_test/02: RuntimeError +covariance_field_test/03: RuntimeError +covariance_field_test/04: RuntimeError +covariance_field_test/05: RuntimeError +covariance_method_test/01: RuntimeError +covariance_method_test/02: RuntimeError +covariance_method_test/03: RuntimeError +covariance_method_test/04: RuntimeError +covariance_method_test/05: RuntimeError +covariance_method_test/06: RuntimeError +covariance_setter_test/01: RuntimeError +covariance_setter_test/02: RuntimeError +covariance_setter_test/03: RuntimeError +covariance_setter_test/04: RuntimeError +covariance_setter_test/05: RuntimeError +recursive_mixin_test: RuntimeError # no check without --checked +type_argument_in_super_type_test: RuntimeError +type_check_const_function_typedef2_test: MissingCompileTimeError + +[ $compiler == dart2js && !$checked && $dart2js_with_kernel ] +assertion_initializer_const_error2_test/*: CompileTimeError # Issue #31321 +assertion_initializer_const_error2_test/none: Pass +cascaded_forwarding_stubs_generic_test: RuntimeError +cascaded_forwarding_stubs_test: RuntimeError +checked_setter3_test: RuntimeError # Issue 31128 +implicit_downcast_during_assignment_test: RuntimeError +implicit_downcast_during_combiner_test: RuntimeError +implicit_downcast_during_compound_assignment_test: RuntimeError +implicit_downcast_during_conditional_expression_test: RuntimeError +implicit_downcast_during_constructor_initializer_test: RuntimeError +implicit_downcast_during_do_test: RuntimeError +implicit_downcast_during_factory_constructor_invocation_test: RuntimeError +implicit_downcast_during_field_declaration_test: RuntimeError +implicit_downcast_during_for_condition_test: RuntimeError +implicit_downcast_during_for_initializer_expression_test: RuntimeError +implicit_downcast_during_for_initializer_var_test: RuntimeError +implicit_downcast_during_if_null_assignment_test: RuntimeError +implicit_downcast_during_if_statement_test: RuntimeError +implicit_downcast_during_indexed_assignment_test: RuntimeError +implicit_downcast_during_indexed_compound_assignment_test: RuntimeError +implicit_downcast_during_indexed_get_test: RuntimeError +implicit_downcast_during_indexed_if_null_assignment_test: RuntimeError +implicit_downcast_during_logical_expression_test: RuntimeError +implicit_downcast_during_map_literal_test: RuntimeError +implicit_downcast_during_method_invocation_test: RuntimeError +implicit_downcast_during_not_test: RuntimeError +implicit_downcast_during_null_aware_method_invocation_test: RuntimeError +implicit_downcast_during_return_test: RuntimeError +implicit_downcast_during_static_method_invocation_test: RuntimeError +implicit_downcast_during_super_method_invocation_test: RuntimeError +implicit_downcast_during_variable_declaration_test: RuntimeError +implicit_downcast_during_while_statement_test: RuntimeError [ $compiler == dart2js && !$checked && !$dart2js_with_kernel ] bool_check_test: RuntimeError # Issue 29647 @@ -1129,117 +1573,477 @@ function_subtype_inline2_test: RuntimeError generic_test: RuntimeError, OK list_literal1_test/01: MissingCompileTimeError -[ $compiler == dart2js && !$checked && $minified && !$dart2js_with_kernel ] +[ $compiler == dart2js && !$checked && !$dart2js_with_kernel && $minified ] function_subtype_inline2_test: RuntimeError -[ $compiler == dart2js && $minified ] -cyclic_type2_test: RuntimeError # Issue 31054 -cyclic_type_test/0*: RuntimeError # Issue 31054 -f_bounded_quantification5_test: RuntimeError # Issue 31054 -generic_closure_test: RuntimeError # Issue 31054 -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 +[ $compiler == dart2js && $dart2js_with_kernel ] +bug31436_test: RuntimeError +built_in_identifier_type_annotation_test/22: Crash # Issue 28815 +built_in_identifier_type_annotation_test/52: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/53: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/54: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/55: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/57: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/58: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/59: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/60: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/61: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/62: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/63: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/64: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/65: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/66: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/67: MissingCompileTimeError # Issue 28815 +built_in_identifier_type_annotation_test/68: MissingCompileTimeError # Issue 28815 +checked_setter2_test: RuntimeError # Issue 31128 +checked_setter_test: RuntimeError # Issue 31128 +implicit_downcast_during_constructor_invocation_test: RuntimeError +implicit_downcast_during_for_in_element_test: RuntimeError +implicit_downcast_during_for_in_iterable_test: RuntimeError +implicit_downcast_during_function_literal_arrow_test: RuntimeError +implicit_downcast_during_function_literal_return_test: RuntimeError +implicit_downcast_during_invocation_test: RuntimeError +implicit_downcast_during_list_literal_test: RuntimeError +implicit_downcast_during_redirecting_initializer_test: RuntimeError +implicit_downcast_during_return_async_test: RuntimeError +implicit_downcast_during_super_initializer_test: RuntimeError +implicit_downcast_during_yield_star_test: RuntimeError +implicit_downcast_during_yield_test: RuntimeError +invalid_cast_test/01: MissingCompileTimeError +invalid_cast_test/02: MissingCompileTimeError +invalid_cast_test/03: MissingCompileTimeError +invalid_cast_test/04: MissingCompileTimeError +invalid_cast_test/07: MissingCompileTimeError +invalid_cast_test/08: MissingCompileTimeError +invalid_cast_test/09: MissingCompileTimeError +invalid_cast_test/10: MissingCompileTimeError +invalid_cast_test/11: MissingCompileTimeError +object_has_no_call_method_test/02: MissingCompileTimeError +object_has_no_call_method_test/05: MissingCompileTimeError +object_has_no_call_method_test/08: MissingCompileTimeError -[ $compiler == dart2js && $runtime == d8 && $checked && !$dart2js_with_kernel ] -factory_implementation_test/00: Fail -regress_30339_test: RuntimeError # Issue 26429 - -[ $compiler == dart2js && $runtime == drt && $checked && !$dart2js_with_kernel ] -regress_30339_test: RuntimeError # Issue 30393 - -[ $compiler == dart2js && $runtime != none && $checked ] -assert_with_message_test: RuntimeError -function_type/function_type0_test: RuntimeError # Issue 30476 -function_type/function_type10_test: RuntimeError # Issue 30476 -function_type/function_type12_test: RuntimeError # Issue 30476 -function_type/function_type13_test: RuntimeError # Issue 30476 -function_type/function_type14_test: RuntimeError # Issue 30476 -function_type/function_type15_test: RuntimeError # Issue 30476 -function_type/function_type16_test: RuntimeError # Issue 30476 -function_type/function_type17_test: RuntimeError # Issue 30476 -function_type/function_type18_test: RuntimeError # Issue 30476 -function_type/function_type19_test: RuntimeError # Issue 30476 -function_type/function_type1_test: RuntimeError # Issue 30476 -function_type/function_type20_test: RuntimeError # Issue 30476 -function_type/function_type21_test: RuntimeError # Issue 30476 -function_type/function_type22_test: RuntimeError # Issue 30476 -function_type/function_type24_test: RuntimeError # Issue 30476 -function_type/function_type25_test: RuntimeError # Issue 30476 -function_type/function_type26_test: RuntimeError # Issue 30476 -function_type/function_type27_test: RuntimeError # Issue 30476 -function_type/function_type28_test: RuntimeError # Issue 30476 -function_type/function_type29_test: RuntimeError # Issue 30476 -function_type/function_type2_test: RuntimeError # Issue 30476 -function_type/function_type30_test: RuntimeError # Issue 30476 -function_type/function_type31_test: RuntimeError # Issue 30476 -function_type/function_type32_test: RuntimeError # Issue 30476 -function_type/function_type33_test: RuntimeError # Issue 30476 -function_type/function_type34_test: RuntimeError # Issue 30476 -function_type/function_type36_test: RuntimeError # Issue 30476 -function_type/function_type3_test: RuntimeError # Issue 30476 -function_type/function_type44_test: RuntimeError # Issue 30476 -function_type/function_type45_test: RuntimeError # Issue 30476 -function_type/function_type46_test: RuntimeError # Issue 30476 -function_type/function_type47_test: RuntimeError # Issue 30476 -function_type/function_type48_test: RuntimeError # Issue 30476 -function_type/function_type49_test: RuntimeError # Issue 30476 -function_type/function_type4_test: RuntimeError # Issue 30476 -function_type/function_type50_test: RuntimeError # Issue 30476 -function_type/function_type51_test: RuntimeError # Issue 30476 -function_type/function_type52_test: RuntimeError # Issue 30476 -function_type/function_type53_test: RuntimeError # Issue 30476 -function_type/function_type54_test: RuntimeError # Issue 30476 -function_type/function_type56_test: RuntimeError # Issue 30476 -function_type/function_type57_test: RuntimeError # Issue 30476 -function_type/function_type58_test: RuntimeError # Issue 30476 -function_type/function_type59_test: RuntimeError # Issue 30476 -function_type/function_type5_test: RuntimeError # Issue 30476 -function_type/function_type60_test: RuntimeError # Issue 30476 -function_type/function_type61_test: RuntimeError # Issue 30476 -function_type/function_type62_test: RuntimeError # Issue 30476 -function_type/function_type63_test: RuntimeError # Issue 30476 -function_type/function_type64_test: RuntimeError # Issue 30476 -function_type/function_type65_test: RuntimeError # Issue 30476 -function_type/function_type66_test: RuntimeError # Issue 30476 -function_type/function_type6_test: RuntimeError # Issue 30476 -function_type/function_type7_test: RuntimeError # Issue 30476 -function_type/function_type80_test: RuntimeError # Issue 30476 -function_type/function_type81_test: RuntimeError # Issue 30476 -function_type/function_type82_test: RuntimeError # Issue 30476 -function_type/function_type83_test: RuntimeError # Issue 30476 -function_type/function_type84_test: RuntimeError # Issue 30476 -function_type/function_type85_test: RuntimeError # Issue 30476 -function_type/function_type86_test: RuntimeError # Issue 30476 -function_type/function_type87_test: RuntimeError # Issue 30476 -function_type/function_type88_test: RuntimeError # Issue 30476 -function_type/function_type89_test: RuntimeError # Issue 30476 -function_type/function_type8_test: RuntimeError # Issue 30476 -function_type/function_type90_test: RuntimeError # Issue 30476 -function_type/function_type96_test: RuntimeError # Issue 30476 -function_type/function_type9_test: RuntimeError # Issue 30476 +[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] +arithmetic_canonicalization_test: RuntimeError +assertion_initializer_const_error2_test/none: CompileTimeError +assertion_initializer_const_function_test/01: MissingCompileTimeError +assertion_initializer_test: CompileTimeError +assertion_test: RuntimeError +async_star_cancel_while_paused_test: RuntimeError +async_star_test/02: RuntimeError +bad_override_test/03: MissingCompileTimeError +bad_override_test/04: MissingCompileTimeError +bad_override_test/05: MissingCompileTimeError +bit_operations_test: RuntimeError +bool_check_test: RuntimeError +bool_condition_check_test: RuntimeError +branch_canonicalization_test: RuntimeError +call_function_apply_test: RuntimeError +callable_test/none: RuntimeError +canonical_const2_test: RuntimeError +check_member_static_test/02: MissingCompileTimeError +class_cycle_test/02: MissingCompileTimeError +class_cycle_test/03: MissingCompileTimeError +closure_invoked_through_interface_target_field_test: MissingCompileTimeError +closure_invoked_through_interface_target_getter_test: MissingCompileTimeError +compile_time_constant_o_test/01: MissingCompileTimeError +compile_time_constant_o_test/02: MissingCompileTimeError +conditional_import_string_test: RuntimeError +conditional_import_test: RuntimeError +conditional_method_invocation_test/05: MissingCompileTimeError +conditional_method_invocation_test/06: MissingCompileTimeError +conditional_method_invocation_test/07: MissingCompileTimeError +conditional_method_invocation_test/08: MissingCompileTimeError +conditional_method_invocation_test/12: MissingCompileTimeError +conditional_method_invocation_test/13: MissingCompileTimeError +conditional_method_invocation_test/18: MissingCompileTimeError +conditional_method_invocation_test/19: MissingCompileTimeError +conditional_property_access_test/04: MissingCompileTimeError +conditional_property_access_test/05: MissingCompileTimeError +conditional_property_access_test/06: MissingCompileTimeError +conditional_property_access_test/10: MissingCompileTimeError +conditional_property_access_test/11: MissingCompileTimeError +conditional_property_access_test/16: MissingCompileTimeError +conditional_property_access_test/17: MissingCompileTimeError +conditional_property_assignment_test/04: MissingCompileTimeError +conditional_property_assignment_test/05: MissingCompileTimeError +conditional_property_assignment_test/06: MissingCompileTimeError +conditional_property_assignment_test/10: MissingCompileTimeError +conditional_property_assignment_test/11: MissingCompileTimeError +conditional_property_assignment_test/12: MissingCompileTimeError +conditional_property_assignment_test/13: MissingCompileTimeError +conditional_property_assignment_test/27: MissingCompileTimeError +conditional_property_assignment_test/28: MissingCompileTimeError +conditional_property_assignment_test/32: MissingCompileTimeError +conditional_property_assignment_test/33: MissingCompileTimeError +conditional_property_assignment_test/34: MissingCompileTimeError +conditional_property_assignment_test/35: MissingCompileTimeError +conditional_property_increment_decrement_test/04: MissingCompileTimeError +conditional_property_increment_decrement_test/08: MissingCompileTimeError +conditional_property_increment_decrement_test/12: MissingCompileTimeError +conditional_property_increment_decrement_test/16: MissingCompileTimeError +conditional_property_increment_decrement_test/21: MissingCompileTimeError +conditional_property_increment_decrement_test/22: MissingCompileTimeError +conditional_property_increment_decrement_test/27: MissingCompileTimeError +conditional_property_increment_decrement_test/28: MissingCompileTimeError +conditional_property_increment_decrement_test/33: MissingCompileTimeError +conditional_property_increment_decrement_test/34: MissingCompileTimeError +conditional_property_increment_decrement_test/39: MissingCompileTimeError +conditional_property_increment_decrement_test/40: MissingCompileTimeError +config_import_corelib_test: RuntimeError +config_import_test: RuntimeError +const_constructor2_test/05: MissingCompileTimeError +const_constructor2_test/06: MissingCompileTimeError +const_constructor2_test/13: MissingCompileTimeError +const_constructor2_test/14: MissingCompileTimeError +const_constructor2_test/15: MissingCompileTimeError +const_constructor2_test/16: MissingCompileTimeError +const_constructor2_test/17: MissingCompileTimeError +const_constructor2_test/18: MissingCompileTimeError +const_constructor2_test/20: MissingCompileTimeError +const_constructor2_test/22: MissingCompileTimeError +const_constructor2_test/24: MissingCompileTimeError +const_constructor3_test/02: MissingCompileTimeError +const_constructor3_test/04: MissingCompileTimeError +const_dynamic_type_literal_test/02: MissingCompileTimeError +const_error_multiply_initialized_test/02: MissingCompileTimeError +const_error_multiply_initialized_test/04: MissingCompileTimeError +const_evaluation_test/01: RuntimeError +const_factory_with_body_test/01: MissingCompileTimeError +const_init2_test/02: MissingCompileTimeError +const_instance_field_test/01: MissingCompileTimeError +const_map2_test/00: MissingCompileTimeError +const_map3_test/00: MissingCompileTimeError +const_switch2_test/01: MissingCompileTimeError +const_switch_test/02: RuntimeError +const_switch_test/04: RuntimeError +const_types_test/01: MissingCompileTimeError +const_types_test/02: MissingCompileTimeError +const_types_test/03: MissingCompileTimeError +const_types_test/04: MissingCompileTimeError +const_types_test/05: MissingCompileTimeError +const_types_test/06: MissingCompileTimeError +const_types_test/13: MissingCompileTimeError +const_types_test/34: MissingCompileTimeError +const_types_test/35: MissingCompileTimeError +const_types_test/39: MissingCompileTimeError +const_types_test/40: MissingCompileTimeError +constants_test/05: MissingCompileTimeError +constructor_duplicate_final_test/01: MissingCompileTimeError +constructor_duplicate_final_test/02: MissingCompileTimeError +constructor_named_arguments_test/01: MissingCompileTimeError +constructor_named_arguments_test/none: RuntimeError +constructor_redirect1_negative_test/01: Crash # Stack Overflow +constructor_redirect1_negative_test/none: MissingCompileTimeError +constructor_redirect2_negative_test: Crash # Stack Overflow +constructor_redirect2_test/01: MissingCompileTimeError +constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). +covariant_override/runtime_check_test: RuntimeError +covariant_subtyping_tearoff1_test: RuntimeError +covariant_subtyping_tearoff2_test: RuntimeError +covariant_subtyping_tearoff3_test: RuntimeError +covariant_subtyping_test: Crash # Unsupported operation: Unsupported type parameter type node E. +covariant_subtyping_unsafe_call1_test: RuntimeError +covariant_subtyping_unsafe_call2_test: RuntimeError +covariant_subtyping_unsafe_call3_test: RuntimeError +cyclic_constructor_test/01: Crash # Stack Overflow +deferred_closurize_load_library_test: RuntimeError +deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary +deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError +deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError +deferred_inheritance_constraints_test/extends: MissingCompileTimeError +deferred_inheritance_constraints_test/implements: MissingCompileTimeError +deferred_inheritance_constraints_test/mixin: MissingCompileTimeError +deferred_load_constants_test/none: RuntimeError +deferred_load_library_wrong_args_test/01: MissingRuntimeError +deferred_not_loaded_check_test: RuntimeError +deferred_redirecting_factory_test: RuntimeError +double_int_to_string_test: RuntimeError +duplicate_export_negative_test: Fail +duplicate_implements_test/01: MissingCompileTimeError +duplicate_implements_test/02: MissingCompileTimeError +duplicate_implements_test/03: MissingCompileTimeError +duplicate_implements_test/04: MissingCompileTimeError +dynamic_prefix_core_test/none: RuntimeError +enum_mirror_test: RuntimeError +expect_test: RuntimeError +external_test/10: MissingRuntimeError +external_test/13: MissingRuntimeError +external_test/20: MissingRuntimeError +factory_redirection_test/07: MissingCompileTimeError +fauxverride_test/03: MissingCompileTimeError +fauxverride_test/05: MissingCompileTimeError +field_increment_bailout_test: RuntimeError +field_override3_test/00: MissingCompileTimeError +field_override3_test/01: MissingCompileTimeError +field_override3_test/02: MissingCompileTimeError +field_override3_test/03: MissingCompileTimeError +field_override4_test/02: MissingCompileTimeError +final_attempt_reinitialization_test/01: MissingCompileTimeError +final_attempt_reinitialization_test/02: MissingCompileTimeError function_subtype_bound_closure3_test: RuntimeError function_subtype_bound_closure4_test: RuntimeError function_subtype_bound_closure7_test: RuntimeError function_subtype_call1_test: RuntimeError function_subtype_call2_test: RuntimeError function_subtype_cast1_test: RuntimeError +function_subtype_checked0_test: RuntimeError +function_subtype_closure0_test: RuntimeError +function_subtype_closure1_test: RuntimeError +function_subtype_factory1_test: RuntimeError +function_subtype_inline1_test: RuntimeError +function_subtype_inline2_test: RuntimeError function_subtype_named1_test: RuntimeError function_subtype_named2_test: RuntimeError function_subtype_not1_test: RuntimeError function_subtype_optional1_test: RuntimeError function_subtype_optional2_test: RuntimeError +function_subtype_regression_ddc_588_test: RuntimeError +function_subtype_setter0_test: RuntimeError function_subtype_typearg2_test: RuntimeError function_subtype_typearg3_test: RuntimeError function_subtype_typearg5_test: RuntimeError +function_type2_test: RuntimeError function_type_alias2_test: RuntimeError - -[ $compiler == dart2js && !$dart2js_with_kernel && !$minified ] -vm/async_await_catch_stacktrace_test: RuntimeError +function_type_alias_test: RuntimeError +function_type_call_getter2_test/none: RuntimeError +function_type_test: RuntimeError +generalized_void_syntax_test: CompileTimeError +generic_closure_test/01: RuntimeError +generic_closure_test/none: RuntimeError +generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_field_mixin6_test/none: RuntimeError +generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). +generic_function_bounds_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_function_dcall_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_function_typedef_test/01: RuntimeError +generic_instanceof_test: RuntimeError +generic_list_checked_test: RuntimeError +generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. +generic_methods_closure_test: Crash # Unsupported operation: Unsupported type parameter type node S. +generic_methods_shadowing_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_tearoff_test: Crash # Unsupported operation: Unsupported type parameter type node T. +generic_test: RuntimeError +generic_typedef_test: Crash # Unsupported operation: Unsupported type parameter type node S. +getter_override2_test/02: MissingCompileTimeError +getter_override_test/00: MissingCompileTimeError +getter_override_test/01: MissingCompileTimeError +getter_override_test/02: MissingCompileTimeError +getters_setters2_test/01: RuntimeError +getters_setters2_test/none: RuntimeError +identical_closure2_test: RuntimeError +if_null_precedence_test/none: RuntimeError +inferrer_synthesized_constructor_test: RuntimeError +infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +infinity_test: RuntimeError +instance_creation_in_function_annotation_test: RuntimeError +instanceof2_test: RuntimeError +instanceof4_test/01: RuntimeError +instanceof4_test/none: RuntimeError +integer_division_by_zero_test: RuntimeError +internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. +invocation_mirror2_test: RuntimeError +invocation_mirror_invoke_on2_test: RuntimeError +invocation_mirror_invoke_on_test: RuntimeError +issue21079_test: RuntimeError +issue23244_test: RuntimeError +left_shift_test: RuntimeError +library_env_test/has_mirror_support: RuntimeError +list_literal1_test/01: MissingCompileTimeError +list_literal4_test/00: MissingCompileTimeError +list_literal4_test/01: MissingCompileTimeError +list_literal4_test/03: MissingCompileTimeError +list_literal4_test/04: MissingCompileTimeError +list_literal4_test/05: MissingCompileTimeError +list_literal_syntax_test/01: MissingCompileTimeError +list_literal_syntax_test/02: MissingCompileTimeError +list_literal_syntax_test/03: MissingCompileTimeError +malformed2_test/00: MissingCompileTimeError +many_generic_instanceof_test: RuntimeError +many_overridden_no_such_method_test: RuntimeError +map_literal8_test: RuntimeError +method_override7_test/00: MissingCompileTimeError +method_override7_test/01: MissingCompileTimeError +method_override7_test/02: MissingCompileTimeError +method_override8_test/00: MissingCompileTimeError +method_override8_test/01: MissingCompileTimeError +mint_arithmetic_test: RuntimeError +mixin_black_listed_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError +mixin_forwarding_constructor4_test/02: MissingCompileTimeError +mixin_forwarding_constructor4_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/01: MissingCompileTimeError +mixin_illegal_super_use_test/02: MissingCompileTimeError +mixin_illegal_super_use_test/03: MissingCompileTimeError +mixin_illegal_super_use_test/04: MissingCompileTimeError +mixin_illegal_super_use_test/05: MissingCompileTimeError +mixin_illegal_super_use_test/06: MissingCompileTimeError +mixin_illegal_super_use_test/07: MissingCompileTimeError +mixin_illegal_super_use_test/08: MissingCompileTimeError +mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError +mixin_mixin2_test: RuntimeError +mixin_mixin3_test: RuntimeError +mixin_mixin4_test: RuntimeError +mixin_mixin5_test: RuntimeError +mixin_mixin6_test: RuntimeError +mixin_mixin7_test: RuntimeError +mixin_mixin_bound2_test: RuntimeError +mixin_mixin_bound_test: RuntimeError +mixin_mixin_test: RuntimeError +mixin_mixin_type_arguments_test: RuntimeError +mixin_of_mixin_test/none: CompileTimeError +mixin_super_2_test/none: CompileTimeError +mixin_super_constructor_named_test/01: MissingCompileTimeError +mixin_super_constructor_positionals_test/01: MissingCompileTimeError +mixin_super_test: CompileTimeError +mixin_super_use_test: CompileTimeError +mixin_superclass_test: CompileTimeError +mixin_supertype_subclass2_test/01: CompileTimeError +mixin_supertype_subclass2_test/02: CompileTimeError +mixin_supertype_subclass2_test/03: CompileTimeError +mixin_supertype_subclass2_test/04: CompileTimeError +mixin_supertype_subclass2_test/05: CompileTimeError +mixin_supertype_subclass2_test/none: CompileTimeError +mixin_supertype_subclass3_test/01: CompileTimeError +mixin_supertype_subclass3_test/02: CompileTimeError +mixin_supertype_subclass3_test/03: CompileTimeError +mixin_supertype_subclass3_test/04: CompileTimeError +mixin_supertype_subclass3_test/05: CompileTimeError +mixin_supertype_subclass3_test/none: CompileTimeError +mixin_supertype_subclass4_test/01: CompileTimeError +mixin_supertype_subclass4_test/02: CompileTimeError +mixin_supertype_subclass4_test/03: CompileTimeError +mixin_supertype_subclass4_test/04: CompileTimeError +mixin_supertype_subclass4_test/05: CompileTimeError +mixin_supertype_subclass4_test/none: CompileTimeError +mixin_type_parameters_super_test: RuntimeError +modulo_test: RuntimeError +multiline_newline_test/04: MissingCompileTimeError +multiline_newline_test/04r: MissingCompileTimeError +multiline_newline_test/05: MissingCompileTimeError +multiline_newline_test/05r: MissingCompileTimeError +multiline_newline_test/06: MissingCompileTimeError +multiline_newline_test/06r: MissingCompileTimeError +named_parameters_default_eq_test/02: MissingCompileTimeError +nan_identical_test: RuntimeError +nested_generic_closure_test: Crash # Unsupported operation: Unsupported type parameter type node F. +nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. +no_main_test/01: CompileTimeError +no_such_method_test: RuntimeError +not_enough_positional_arguments_test/00: MissingCompileTimeError +not_enough_positional_arguments_test/01: MissingCompileTimeError +not_enough_positional_arguments_test/02: MissingCompileTimeError +not_enough_positional_arguments_test/03: MissingCompileTimeError +not_enough_positional_arguments_test/05: MissingCompileTimeError +not_enough_positional_arguments_test/06: MissingCompileTimeError +not_enough_positional_arguments_test/07: MissingCompileTimeError +null_test/02: MissingCompileTimeError +null_test/03: MissingCompileTimeError +null_test/mirrors: RuntimeError +null_test/none: RuntimeError +number_identity2_test: RuntimeError +numbers_test: RuntimeError +overridden_no_such_method_test: RuntimeError +override_field_method1_negative_test: Fail +override_field_method2_negative_test: Fail +override_field_method4_negative_test: Fail +override_field_method5_negative_test: Fail +override_field_test/01: MissingCompileTimeError +override_inheritance_mixed_test/01: MissingCompileTimeError +override_inheritance_mixed_test/02: MissingCompileTimeError +override_inheritance_mixed_test/03: MissingCompileTimeError +override_inheritance_mixed_test/04: MissingCompileTimeError +override_inheritance_mixed_test/08: MissingCompileTimeError +override_inheritance_mixed_test/09: MissingCompileTimeError +override_method_with_field_test/01: MissingCompileTimeError +positional_parameters_type_test/01: MissingCompileTimeError +positional_parameters_type_test/02: MissingCompileTimeError +private_super_constructor_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/02: MissingCompileTimeError +redirecting_factory_long_test: RuntimeError +redirecting_factory_reflection_test: RuntimeError +regress_20394_test/01: MissingCompileTimeError +regress_22976_test/01: CompileTimeError +regress_22976_test/02: CompileTimeError +regress_22976_test/none: CompileTimeError +regress_24283_test: RuntimeError +regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant +regress_28217_test/01: MissingCompileTimeError +regress_28217_test/none: MissingCompileTimeError +regress_28255_test: RuntimeError +regress_28341_test: RuntimeError +regress_29784_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in () for j:constructor(A.ok). +regress_29784_test/02: MissingCompileTimeError # Issue 29784 +regress_31057_test: Crash # Unsupported operation: Unsupported type parameter type node B. +setter_override_test/00: MissingCompileTimeError +setter_override_test/03: MissingCompileTimeError +stacktrace_demangle_ctors_test: RuntimeError +stacktrace_test: RuntimeError +super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. +switch_bad_case_test/01: MissingCompileTimeError +switch_bad_case_test/02: MissingCompileTimeError +switch_case_test/00: MissingCompileTimeError +switch_case_test/01: MissingCompileTimeError +switch_case_test/02: MissingCompileTimeError +symbol_literal_test/01: MissingCompileTimeError +syntax_test/28: MissingCompileTimeError +syntax_test/29: MissingCompileTimeError +syntax_test/30: MissingCompileTimeError +syntax_test/31: MissingCompileTimeError +syntax_test/32: MissingCompileTimeError +syntax_test/33: MissingCompileTimeError +tearoff_dynamic_test: Crash # Unsupported operation: Unsupported type parameter type node T. +truncdiv_test: RuntimeError +try_catch_test/01: MissingCompileTimeError +type_literal_test: RuntimeError +typevariable_substitution2_test/02: RuntimeError [ $compiler == dart2js && $dart2js_with_kernel && $host_checked ] arithmetic_canonicalization_test: RuntimeError @@ -2095,1065 +2899,233 @@ try_catch_test/01: MissingCompileTimeError type_literal_test: RuntimeError typevariable_substitution2_test/02: RuntimeError -[ $compiler == dart2js && $dart2js_with_kernel && $fast_startup ] -arithmetic_canonicalization_test: RuntimeError -assertion_initializer_const_error2_test/none: CompileTimeError -assertion_initializer_const_function_test/01: MissingCompileTimeError -assertion_initializer_test: CompileTimeError -assertion_test: RuntimeError -async_star_cancel_while_paused_test: RuntimeError -async_star_test/02: RuntimeError -bad_override_test/03: MissingCompileTimeError -bad_override_test/04: MissingCompileTimeError -bad_override_test/05: MissingCompileTimeError -bit_operations_test: RuntimeError -bool_check_test: RuntimeError -bool_condition_check_test: RuntimeError -branch_canonicalization_test: RuntimeError -call_function_apply_test: RuntimeError -callable_test/none: RuntimeError -canonical_const2_test: RuntimeError -check_member_static_test/02: MissingCompileTimeError -class_cycle_test/02: MissingCompileTimeError -class_cycle_test/03: MissingCompileTimeError -closure_invoked_through_interface_target_field_test: MissingCompileTimeError -closure_invoked_through_interface_target_getter_test: MissingCompileTimeError -compile_time_constant_o_test/01: MissingCompileTimeError -compile_time_constant_o_test/02: MissingCompileTimeError -conditional_import_string_test: RuntimeError -conditional_import_test: RuntimeError -conditional_method_invocation_test/05: MissingCompileTimeError -conditional_method_invocation_test/06: MissingCompileTimeError -conditional_method_invocation_test/07: MissingCompileTimeError -conditional_method_invocation_test/08: MissingCompileTimeError -conditional_method_invocation_test/12: MissingCompileTimeError -conditional_method_invocation_test/13: MissingCompileTimeError -conditional_method_invocation_test/18: MissingCompileTimeError -conditional_method_invocation_test/19: MissingCompileTimeError -conditional_property_access_test/04: MissingCompileTimeError -conditional_property_access_test/05: MissingCompileTimeError -conditional_property_access_test/06: MissingCompileTimeError -conditional_property_access_test/10: MissingCompileTimeError -conditional_property_access_test/11: MissingCompileTimeError -conditional_property_access_test/16: MissingCompileTimeError -conditional_property_access_test/17: MissingCompileTimeError -conditional_property_assignment_test/04: MissingCompileTimeError -conditional_property_assignment_test/05: MissingCompileTimeError -conditional_property_assignment_test/06: MissingCompileTimeError -conditional_property_assignment_test/10: MissingCompileTimeError -conditional_property_assignment_test/11: MissingCompileTimeError -conditional_property_assignment_test/12: MissingCompileTimeError -conditional_property_assignment_test/13: MissingCompileTimeError -conditional_property_assignment_test/27: MissingCompileTimeError -conditional_property_assignment_test/28: MissingCompileTimeError -conditional_property_assignment_test/32: MissingCompileTimeError -conditional_property_assignment_test/33: MissingCompileTimeError -conditional_property_assignment_test/34: MissingCompileTimeError -conditional_property_assignment_test/35: MissingCompileTimeError -conditional_property_increment_decrement_test/04: MissingCompileTimeError -conditional_property_increment_decrement_test/08: MissingCompileTimeError -conditional_property_increment_decrement_test/12: MissingCompileTimeError -conditional_property_increment_decrement_test/16: MissingCompileTimeError -conditional_property_increment_decrement_test/21: MissingCompileTimeError -conditional_property_increment_decrement_test/22: MissingCompileTimeError -conditional_property_increment_decrement_test/27: MissingCompileTimeError -conditional_property_increment_decrement_test/28: MissingCompileTimeError -conditional_property_increment_decrement_test/33: MissingCompileTimeError -conditional_property_increment_decrement_test/34: MissingCompileTimeError -conditional_property_increment_decrement_test/39: MissingCompileTimeError -conditional_property_increment_decrement_test/40: MissingCompileTimeError -config_import_corelib_test: RuntimeError -config_import_test: RuntimeError -const_constructor2_test/05: MissingCompileTimeError -const_constructor2_test/06: MissingCompileTimeError -const_constructor2_test/13: MissingCompileTimeError -const_constructor2_test/14: MissingCompileTimeError -const_constructor2_test/15: MissingCompileTimeError -const_constructor2_test/16: MissingCompileTimeError -const_constructor2_test/17: MissingCompileTimeError -const_constructor2_test/18: MissingCompileTimeError -const_constructor2_test/20: MissingCompileTimeError -const_constructor2_test/22: MissingCompileTimeError -const_constructor2_test/24: MissingCompileTimeError -const_constructor3_test/02: MissingCompileTimeError -const_constructor3_test/04: MissingCompileTimeError -const_dynamic_type_literal_test/02: MissingCompileTimeError -const_error_multiply_initialized_test/02: MissingCompileTimeError -const_error_multiply_initialized_test/04: MissingCompileTimeError -const_evaluation_test/01: RuntimeError -const_factory_with_body_test/01: MissingCompileTimeError -const_init2_test/02: MissingCompileTimeError -const_instance_field_test/01: MissingCompileTimeError -const_map2_test/00: MissingCompileTimeError -const_map3_test/00: MissingCompileTimeError -const_switch2_test/01: MissingCompileTimeError -const_switch_test/02: RuntimeError -const_switch_test/04: RuntimeError -const_types_test/01: MissingCompileTimeError -const_types_test/02: MissingCompileTimeError -const_types_test/03: MissingCompileTimeError -const_types_test/04: MissingCompileTimeError -const_types_test/05: MissingCompileTimeError -const_types_test/06: MissingCompileTimeError -const_types_test/13: MissingCompileTimeError -const_types_test/34: MissingCompileTimeError -const_types_test/35: MissingCompileTimeError -const_types_test/39: MissingCompileTimeError -const_types_test/40: MissingCompileTimeError -constants_test/05: MissingCompileTimeError -constructor_duplicate_final_test/01: MissingCompileTimeError -constructor_duplicate_final_test/02: MissingCompileTimeError -constructor_named_arguments_test/01: MissingCompileTimeError -constructor_named_arguments_test/none: RuntimeError -constructor_redirect1_negative_test/01: Crash # Stack Overflow -constructor_redirect1_negative_test/none: MissingCompileTimeError -constructor_redirect2_negative_test: Crash # Stack Overflow -constructor_redirect2_test/01: MissingCompileTimeError -constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). -covariant_override/runtime_check_test: RuntimeError -covariant_subtyping_tearoff1_test: RuntimeError -covariant_subtyping_tearoff2_test: RuntimeError -covariant_subtyping_tearoff3_test: RuntimeError -covariant_subtyping_test: Crash # Unsupported operation: Unsupported type parameter type node E. -covariant_subtyping_unsafe_call1_test: RuntimeError -covariant_subtyping_unsafe_call2_test: RuntimeError -covariant_subtyping_unsafe_call3_test: RuntimeError -cyclic_constructor_test/01: Crash # Stack Overflow -deferred_closurize_load_library_test: RuntimeError -deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError -deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError -deferred_inheritance_constraints_test/extends: MissingCompileTimeError -deferred_inheritance_constraints_test/implements: MissingCompileTimeError -deferred_inheritance_constraints_test/mixin: MissingCompileTimeError -deferred_load_constants_test/none: RuntimeError -deferred_load_library_wrong_args_test/01: MissingRuntimeError -deferred_not_loaded_check_test: RuntimeError -deferred_redirecting_factory_test: RuntimeError -double_int_to_string_test: RuntimeError -duplicate_export_negative_test: Fail -duplicate_implements_test/01: MissingCompileTimeError -duplicate_implements_test/02: MissingCompileTimeError -duplicate_implements_test/03: MissingCompileTimeError -duplicate_implements_test/04: MissingCompileTimeError -dynamic_prefix_core_test/none: RuntimeError -enum_mirror_test: RuntimeError -expect_test: RuntimeError -external_test/10: MissingRuntimeError -external_test/13: MissingRuntimeError -external_test/20: MissingRuntimeError -factory_redirection_test/07: MissingCompileTimeError -fauxverride_test/03: MissingCompileTimeError -fauxverride_test/05: MissingCompileTimeError -field_increment_bailout_test: RuntimeError -field_override3_test/00: MissingCompileTimeError -field_override3_test/01: MissingCompileTimeError -field_override3_test/02: MissingCompileTimeError -field_override3_test/03: MissingCompileTimeError -field_override4_test/02: MissingCompileTimeError -final_attempt_reinitialization_test/01: MissingCompileTimeError -final_attempt_reinitialization_test/02: MissingCompileTimeError -function_subtype_bound_closure3_test: RuntimeError -function_subtype_bound_closure4_test: RuntimeError -function_subtype_bound_closure7_test: RuntimeError -function_subtype_call1_test: RuntimeError -function_subtype_call2_test: RuntimeError -function_subtype_cast1_test: RuntimeError -function_subtype_checked0_test: RuntimeError -function_subtype_closure0_test: RuntimeError -function_subtype_closure1_test: RuntimeError -function_subtype_factory1_test: RuntimeError -function_subtype_inline1_test: RuntimeError -function_subtype_inline2_test: RuntimeError -function_subtype_named1_test: RuntimeError -function_subtype_named2_test: RuntimeError -function_subtype_not1_test: RuntimeError -function_subtype_optional1_test: RuntimeError -function_subtype_optional2_test: RuntimeError -function_subtype_regression_ddc_588_test: RuntimeError -function_subtype_setter0_test: RuntimeError -function_subtype_typearg2_test: RuntimeError -function_subtype_typearg3_test: RuntimeError -function_subtype_typearg5_test: RuntimeError -function_type2_test: RuntimeError -function_type_alias2_test: RuntimeError -function_type_alias_test: RuntimeError -function_type_call_getter2_test/none: RuntimeError -function_type_test: RuntimeError -generalized_void_syntax_test: CompileTimeError -generic_closure_test/01: RuntimeError -generic_closure_test/none: RuntimeError -generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_field_mixin6_test/none: RuntimeError -generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_function_bounds_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_function_dcall_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_function_typedef_test/01: RuntimeError -generic_instanceof_test: RuntimeError -generic_list_checked_test: RuntimeError -generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. -generic_methods_closure_test: Crash # Unsupported operation: Unsupported type parameter type node S. -generic_methods_shadowing_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_tearoff_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_test: RuntimeError -generic_typedef_test: Crash # Unsupported operation: Unsupported type parameter type node S. -getter_override2_test/02: MissingCompileTimeError -getter_override_test/00: MissingCompileTimeError -getter_override_test/01: MissingCompileTimeError -getter_override_test/02: MissingCompileTimeError -getters_setters2_test/01: RuntimeError -getters_setters2_test/none: RuntimeError -identical_closure2_test: RuntimeError -if_null_precedence_test/none: RuntimeError -inferrer_synthesized_constructor_test: RuntimeError -infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -infinity_test: RuntimeError -instance_creation_in_function_annotation_test: RuntimeError -instanceof2_test: RuntimeError -instanceof4_test/01: RuntimeError -instanceof4_test/none: RuntimeError -integer_division_by_zero_test: RuntimeError -internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. -invocation_mirror2_test: RuntimeError -invocation_mirror_invoke_on2_test: RuntimeError -invocation_mirror_invoke_on_test: RuntimeError -issue21079_test: RuntimeError -issue23244_test: RuntimeError -left_shift_test: RuntimeError -library_env_test/has_mirror_support: RuntimeError -list_literal1_test/01: MissingCompileTimeError -list_literal4_test/00: MissingCompileTimeError -list_literal4_test/01: MissingCompileTimeError -list_literal4_test/03: MissingCompileTimeError -list_literal4_test/04: MissingCompileTimeError -list_literal4_test/05: MissingCompileTimeError -list_literal_syntax_test/01: MissingCompileTimeError -list_literal_syntax_test/02: MissingCompileTimeError -list_literal_syntax_test/03: MissingCompileTimeError -malformed2_test/00: MissingCompileTimeError -many_generic_instanceof_test: RuntimeError -many_overridden_no_such_method_test: RuntimeError -map_literal8_test: RuntimeError -method_override7_test/00: MissingCompileTimeError -method_override7_test/01: MissingCompileTimeError -method_override7_test/02: MissingCompileTimeError -method_override8_test/00: MissingCompileTimeError -method_override8_test/01: MissingCompileTimeError -mint_arithmetic_test: RuntimeError -mixin_black_listed_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError -mixin_forwarding_constructor4_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/01: MissingCompileTimeError -mixin_illegal_super_use_test/02: MissingCompileTimeError -mixin_illegal_super_use_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/04: MissingCompileTimeError -mixin_illegal_super_use_test/05: MissingCompileTimeError -mixin_illegal_super_use_test/06: MissingCompileTimeError -mixin_illegal_super_use_test/07: MissingCompileTimeError -mixin_illegal_super_use_test/08: MissingCompileTimeError -mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError -mixin_mixin2_test: RuntimeError -mixin_mixin3_test: RuntimeError -mixin_mixin4_test: RuntimeError -mixin_mixin5_test: RuntimeError -mixin_mixin6_test: RuntimeError -mixin_mixin7_test: RuntimeError -mixin_mixin_bound2_test: RuntimeError -mixin_mixin_bound_test: RuntimeError -mixin_mixin_test: RuntimeError -mixin_mixin_type_arguments_test: RuntimeError -mixin_of_mixin_test/none: CompileTimeError -mixin_super_2_test/none: CompileTimeError -mixin_super_constructor_named_test/01: MissingCompileTimeError -mixin_super_constructor_positionals_test/01: MissingCompileTimeError -mixin_super_test: CompileTimeError -mixin_super_use_test: CompileTimeError -mixin_superclass_test: CompileTimeError -mixin_supertype_subclass2_test/01: CompileTimeError -mixin_supertype_subclass2_test/02: CompileTimeError -mixin_supertype_subclass2_test/03: CompileTimeError -mixin_supertype_subclass2_test/04: CompileTimeError -mixin_supertype_subclass2_test/05: CompileTimeError -mixin_supertype_subclass2_test/none: CompileTimeError -mixin_supertype_subclass3_test/01: CompileTimeError -mixin_supertype_subclass3_test/02: CompileTimeError -mixin_supertype_subclass3_test/03: CompileTimeError -mixin_supertype_subclass3_test/04: CompileTimeError -mixin_supertype_subclass3_test/05: CompileTimeError -mixin_supertype_subclass3_test/none: CompileTimeError -mixin_supertype_subclass4_test/01: CompileTimeError -mixin_supertype_subclass4_test/02: CompileTimeError -mixin_supertype_subclass4_test/03: CompileTimeError -mixin_supertype_subclass4_test/04: CompileTimeError -mixin_supertype_subclass4_test/05: CompileTimeError -mixin_supertype_subclass4_test/none: CompileTimeError -mixin_type_parameters_super_test: RuntimeError -modulo_test: RuntimeError -multiline_newline_test/04: MissingCompileTimeError -multiline_newline_test/04r: MissingCompileTimeError -multiline_newline_test/05: MissingCompileTimeError -multiline_newline_test/05r: MissingCompileTimeError -multiline_newline_test/06: MissingCompileTimeError -multiline_newline_test/06r: MissingCompileTimeError -named_parameters_default_eq_test/02: MissingCompileTimeError -nan_identical_test: RuntimeError -nested_generic_closure_test: Crash # Unsupported operation: Unsupported type parameter type node F. -nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -no_main_test/01: CompileTimeError -no_such_method_test: RuntimeError -not_enough_positional_arguments_test/00: MissingCompileTimeError -not_enough_positional_arguments_test/01: MissingCompileTimeError -not_enough_positional_arguments_test/02: MissingCompileTimeError -not_enough_positional_arguments_test/03: MissingCompileTimeError -not_enough_positional_arguments_test/05: MissingCompileTimeError -not_enough_positional_arguments_test/06: MissingCompileTimeError -not_enough_positional_arguments_test/07: MissingCompileTimeError -null_test/02: MissingCompileTimeError -null_test/03: MissingCompileTimeError -null_test/mirrors: RuntimeError -null_test/none: RuntimeError -number_identity2_test: RuntimeError -numbers_test: RuntimeError -overridden_no_such_method_test: RuntimeError -override_field_method1_negative_test: Fail -override_field_method2_negative_test: Fail -override_field_method4_negative_test: Fail -override_field_method5_negative_test: Fail -override_field_test/01: MissingCompileTimeError -override_inheritance_mixed_test/01: MissingCompileTimeError -override_inheritance_mixed_test/02: MissingCompileTimeError -override_inheritance_mixed_test/03: MissingCompileTimeError -override_inheritance_mixed_test/04: MissingCompileTimeError -override_inheritance_mixed_test/08: MissingCompileTimeError -override_inheritance_mixed_test/09: MissingCompileTimeError -override_method_with_field_test/01: MissingCompileTimeError -positional_parameters_type_test/01: MissingCompileTimeError -positional_parameters_type_test/02: MissingCompileTimeError -private_super_constructor_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/02: MissingCompileTimeError -redirecting_factory_long_test: RuntimeError -redirecting_factory_reflection_test: RuntimeError -regress_20394_test/01: MissingCompileTimeError -regress_22976_test/01: CompileTimeError -regress_22976_test/02: CompileTimeError -regress_22976_test/none: CompileTimeError -regress_24283_test: RuntimeError -regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant -regress_28217_test/01: MissingCompileTimeError -regress_28217_test/none: MissingCompileTimeError -regress_28255_test: RuntimeError -regress_28341_test: RuntimeError -regress_29784_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in () for j:constructor(A.ok). -regress_29784_test/02: MissingCompileTimeError # Issue 29784 -regress_31057_test: Crash # Unsupported operation: Unsupported type parameter type node B. -setter_override_test/00: MissingCompileTimeError -setter_override_test/03: MissingCompileTimeError -stacktrace_demangle_ctors_test: RuntimeError -stacktrace_test: RuntimeError -super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. -switch_bad_case_test/01: MissingCompileTimeError -switch_bad_case_test/02: MissingCompileTimeError -switch_case_test/00: MissingCompileTimeError -switch_case_test/01: MissingCompileTimeError -switch_case_test/02: MissingCompileTimeError -symbol_literal_test/01: MissingCompileTimeError -syntax_test/28: MissingCompileTimeError -syntax_test/29: MissingCompileTimeError -syntax_test/30: MissingCompileTimeError -syntax_test/31: MissingCompileTimeError -syntax_test/32: MissingCompileTimeError -syntax_test/33: MissingCompileTimeError -tearoff_dynamic_test: Crash # Unsupported operation: Unsupported type parameter type node T. -truncdiv_test: RuntimeError -try_catch_test/01: MissingCompileTimeError -type_literal_test: RuntimeError -typevariable_substitution2_test/02: RuntimeError - -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -arithmetic_canonicalization_test: RuntimeError -assertion_initializer_const_function_test/01: MissingCompileTimeError -assertion_initializer_test: CompileTimeError -assertion_test: RuntimeError -async_star_cancel_while_paused_test: RuntimeError -async_star_test/02: RuntimeError -bad_override_test/03: MissingCompileTimeError -bad_override_test/04: MissingCompileTimeError -bad_override_test/05: MissingCompileTimeError -bit_operations_test/03: RuntimeError -bit_operations_test/04: RuntimeError -bit_operations_test/none: RuntimeError -branch_canonicalization_test: RuntimeError -call_function_apply_test: RuntimeError -canonical_const2_test: RuntimeError -check_member_static_test/02: MissingCompileTimeError -class_cycle_test/02: MissingCompileTimeError -class_cycle_test/03: MissingCompileTimeError -closure_invoked_through_interface_target_field_test: MissingCompileTimeError -closure_invoked_through_interface_target_getter_test: MissingCompileTimeError -compile_time_constant_o_test/01: MissingCompileTimeError -compile_time_constant_o_test/02: MissingCompileTimeError -conditional_import_string_test: RuntimeError -conditional_import_test: RuntimeError -conditional_method_invocation_test/05: MissingCompileTimeError -conditional_method_invocation_test/06: MissingCompileTimeError -conditional_method_invocation_test/07: MissingCompileTimeError -conditional_method_invocation_test/08: MissingCompileTimeError -conditional_method_invocation_test/12: MissingCompileTimeError -conditional_method_invocation_test/13: MissingCompileTimeError -conditional_method_invocation_test/18: MissingCompileTimeError -conditional_method_invocation_test/19: MissingCompileTimeError -conditional_property_access_test/04: MissingCompileTimeError -conditional_property_access_test/05: MissingCompileTimeError -conditional_property_access_test/06: MissingCompileTimeError -conditional_property_access_test/10: MissingCompileTimeError -conditional_property_access_test/11: MissingCompileTimeError -conditional_property_access_test/16: MissingCompileTimeError -conditional_property_access_test/17: MissingCompileTimeError -conditional_property_assignment_test/04: MissingCompileTimeError -conditional_property_assignment_test/05: MissingCompileTimeError -conditional_property_assignment_test/06: MissingCompileTimeError -conditional_property_assignment_test/10: MissingCompileTimeError -conditional_property_assignment_test/11: MissingCompileTimeError -conditional_property_assignment_test/12: MissingCompileTimeError -conditional_property_assignment_test/13: MissingCompileTimeError -conditional_property_assignment_test/27: MissingCompileTimeError -conditional_property_assignment_test/28: MissingCompileTimeError -conditional_property_assignment_test/32: MissingCompileTimeError -conditional_property_assignment_test/33: MissingCompileTimeError -conditional_property_assignment_test/34: MissingCompileTimeError -conditional_property_assignment_test/35: MissingCompileTimeError -conditional_property_increment_decrement_test/04: MissingCompileTimeError -conditional_property_increment_decrement_test/08: MissingCompileTimeError -conditional_property_increment_decrement_test/12: MissingCompileTimeError -conditional_property_increment_decrement_test/16: MissingCompileTimeError -conditional_property_increment_decrement_test/21: MissingCompileTimeError -conditional_property_increment_decrement_test/22: MissingCompileTimeError -conditional_property_increment_decrement_test/27: MissingCompileTimeError -conditional_property_increment_decrement_test/28: MissingCompileTimeError -conditional_property_increment_decrement_test/33: MissingCompileTimeError -conditional_property_increment_decrement_test/34: MissingCompileTimeError -conditional_property_increment_decrement_test/39: MissingCompileTimeError -conditional_property_increment_decrement_test/40: MissingCompileTimeError -config_import_corelib_test: RuntimeError -config_import_test: RuntimeError -const_constructor2_test/05: MissingCompileTimeError -const_constructor2_test/06: MissingCompileTimeError -const_constructor2_test/13: MissingCompileTimeError -const_constructor2_test/14: MissingCompileTimeError -const_constructor2_test/15: MissingCompileTimeError -const_constructor2_test/16: MissingCompileTimeError -const_constructor2_test/17: MissingCompileTimeError -const_constructor2_test/18: MissingCompileTimeError -const_constructor2_test/20: MissingCompileTimeError -const_constructor2_test/22: MissingCompileTimeError -const_constructor2_test/24: MissingCompileTimeError -const_constructor3_test/02: MissingCompileTimeError -const_constructor3_test/04: MissingCompileTimeError -const_dynamic_type_literal_test/02: MissingCompileTimeError -const_error_multiply_initialized_test/02: MissingCompileTimeError -const_error_multiply_initialized_test/04: MissingCompileTimeError -const_evaluation_test/01: RuntimeError -const_factory_with_body_test/01: MissingCompileTimeError -const_init2_test/02: MissingCompileTimeError -const_instance_field_test/01: MissingCompileTimeError -const_map2_test/00: MissingCompileTimeError -const_map3_test/00: MissingCompileTimeError -const_switch2_test/01: MissingCompileTimeError -const_switch_test/02: RuntimeError -const_switch_test/04: RuntimeError -const_types_test/01: MissingCompileTimeError -const_types_test/02: MissingCompileTimeError -const_types_test/03: MissingCompileTimeError -const_types_test/04: MissingCompileTimeError -const_types_test/05: MissingCompileTimeError -const_types_test/06: MissingCompileTimeError -const_types_test/13: MissingCompileTimeError -const_types_test/34: MissingCompileTimeError -const_types_test/35: MissingCompileTimeError -const_types_test/39: MissingCompileTimeError -const_types_test/40: MissingCompileTimeError -constants_test/05: MissingCompileTimeError -constructor_duplicate_final_test/01: MissingCompileTimeError -constructor_duplicate_final_test/02: MissingCompileTimeError -constructor_named_arguments_test/01: MissingCompileTimeError -constructor_named_arguments_test/none: RuntimeError -constructor_redirect1_negative_test/01: Crash # Stack Overflow -constructor_redirect1_negative_test/none: MissingCompileTimeError -constructor_redirect2_negative_test: Crash # Stack Overflow -constructor_redirect2_test/01: MissingCompileTimeError -constructor_redirect_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in (local(A.named2#x), local(A.named2#y), local(A.named2#z)) for j:constructor(A.named2). -covariance_setter_test/none: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -covariance_type_parameter_test/01: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -covariance_type_parameter_test/02: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -covariance_type_parameter_test/03: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -covariance_type_parameter_test/none: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -covariant_override/runtime_check_test: RuntimeError -covariant_subtyping_test: Crash # Unsupported operation: Unsupported type parameter type node E. -cyclic_constructor_test/01: Crash # Stack Overflow -deferred_closurize_load_library_test: RuntimeError -deferred_constraints_constants_test/default_argument2: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/none: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_constants_test/reference_after_load: Crash # Unsupported operation: KernelDeferredLoadTask.addMirrorElementsForLibrary -deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError -deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError -deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError -deferred_inheritance_constraints_test/extends: MissingCompileTimeError -deferred_inheritance_constraints_test/implements: MissingCompileTimeError -deferred_inheritance_constraints_test/mixin: MissingCompileTimeError -deferred_load_constants_test/none: RuntimeError -deferred_load_library_wrong_args_test/01: MissingRuntimeError -deferred_not_loaded_check_test: RuntimeError -deferred_redirecting_factory_test: RuntimeError -double_int_to_string_test: RuntimeError -duplicate_export_negative_test: Fail -duplicate_implements_test/01: MissingCompileTimeError -duplicate_implements_test/02: MissingCompileTimeError -duplicate_implements_test/03: MissingCompileTimeError -duplicate_implements_test/04: MissingCompileTimeError -dynamic_prefix_core_test/none: RuntimeError -enum_mirror_test: RuntimeError -expect_test: RuntimeError -external_test/10: MissingRuntimeError -external_test/13: MissingRuntimeError -external_test/20: MissingRuntimeError -factory_redirection_test/07: MissingCompileTimeError -fauxverride_test/03: MissingCompileTimeError -fauxverride_test/05: MissingCompileTimeError -field_override3_test/00: MissingCompileTimeError -field_override3_test/01: MissingCompileTimeError -field_override3_test/02: MissingCompileTimeError -field_override3_test/03: MissingCompileTimeError -field_override4_test/02: MissingCompileTimeError -final_attempt_reinitialization_test/01: MissingCompileTimeError -final_attempt_reinitialization_test/02: MissingCompileTimeError -function_type_alias_test: RuntimeError -generalized_void_syntax_test: CompileTimeError -generic_closure_test/01: RuntimeError -generic_closure_test/none: RuntimeError -generic_field_mixin4_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_field_mixin5_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_field_mixin_test: Crash # Assertion failure: Runtime type information not available for type_variable_local(M.T) in () for j:constructor(C3.). -generic_function_bounds_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_function_dcall_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_function_typedef_test/01: RuntimeError -generic_instanceof_test: RuntimeError -generic_local_functions_test: Crash # Unsupported operation: Unsupported type parameter type node Y. -generic_methods_closure_test: Crash # Unsupported operation: Unsupported type parameter type node S. -generic_methods_shadowing_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_tearoff_test: Crash # Unsupported operation: Unsupported type parameter type node T. -generic_typedef_test: Crash # Unsupported operation: Unsupported type parameter type node S. -getter_override2_test/02: MissingCompileTimeError -getter_override_test/00: MissingCompileTimeError -getter_override_test/01: MissingCompileTimeError -getter_override_test/02: MissingCompileTimeError -identical_closure2_test: RuntimeError -implicit_downcast_during_assert_initializer_test: RuntimeError -infinite_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -infinity_test: RuntimeError -instance_creation_in_function_annotation_test: RuntimeError -instanceof2_test: RuntimeError -instanceof4_test/01: RuntimeError -instanceof4_test/none: RuntimeError -integer_division_by_zero_test: RuntimeError -internal_library_test/02: Crash # NoSuchMethodError: Class 'DillLibraryBuilder' has no instance getter 'mixinApplicationClasses'. -invocation_mirror2_test: RuntimeError -issue21079_test: RuntimeError -issue23244_test: RuntimeError -left_shift_test: RuntimeError -library_env_test/has_mirror_support: RuntimeError -list_literal1_test/01: MissingCompileTimeError -list_literal4_test/00: MissingCompileTimeError -list_literal4_test/01: MissingCompileTimeError -list_literal4_test/03: MissingCompileTimeError -list_literal4_test/04: MissingCompileTimeError -list_literal4_test/05: MissingCompileTimeError -list_literal_syntax_test/01: MissingCompileTimeError -list_literal_syntax_test/02: MissingCompileTimeError -list_literal_syntax_test/03: MissingCompileTimeError -malformed2_test/00: MissingCompileTimeError -many_generic_instanceof_test: RuntimeError -map_literal1_test/01: MissingCompileTimeError -map_literal8_test: RuntimeError -method_override7_test/00: MissingCompileTimeError -method_override7_test/01: MissingCompileTimeError -method_override7_test/02: MissingCompileTimeError -method_override8_test/00: MissingCompileTimeError -method_override8_test/01: MissingCompileTimeError -mint_arithmetic_test: RuntimeError -mixin_black_listed_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError -mixin_forwarding_constructor4_test/02: MissingCompileTimeError -mixin_forwarding_constructor4_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/01: MissingCompileTimeError -mixin_illegal_super_use_test/02: MissingCompileTimeError -mixin_illegal_super_use_test/03: MissingCompileTimeError -mixin_illegal_super_use_test/04: MissingCompileTimeError -mixin_illegal_super_use_test/05: MissingCompileTimeError -mixin_illegal_super_use_test/06: MissingCompileTimeError -mixin_illegal_super_use_test/07: MissingCompileTimeError -mixin_illegal_super_use_test/08: MissingCompileTimeError -mixin_illegal_super_use_test/09: 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_issue10216_2_test: RuntimeError -mixin_mixin2_test: RuntimeError -mixin_mixin3_test: RuntimeError -mixin_mixin4_test: RuntimeError -mixin_mixin5_test: RuntimeError -mixin_mixin6_test: RuntimeError -mixin_mixin7_test: RuntimeError -mixin_mixin_bound2_test: RuntimeError -mixin_mixin_bound_test: RuntimeError -mixin_mixin_test: RuntimeError -mixin_mixin_type_arguments_test: Crash # NoSuchMethodError: The method 'hasSubclass' was called on null. -mixin_of_mixin_test/none: CompileTimeError -mixin_super_2_test/none: CompileTimeError -mixin_super_constructor_named_test/01: MissingCompileTimeError -mixin_super_constructor_positionals_test/01: MissingCompileTimeError -mixin_super_test: CompileTimeError -mixin_super_use_test: CompileTimeError -mixin_superclass_test: CompileTimeError -mixin_supertype_subclass2_test/01: CompileTimeError -mixin_supertype_subclass2_test/02: CompileTimeError -mixin_supertype_subclass2_test/03: CompileTimeError -mixin_supertype_subclass2_test/04: CompileTimeError -mixin_supertype_subclass2_test/05: CompileTimeError -mixin_supertype_subclass2_test/none: CompileTimeError -mixin_supertype_subclass3_test/01: CompileTimeError -mixin_supertype_subclass3_test/02: CompileTimeError -mixin_supertype_subclass3_test/03: CompileTimeError -mixin_supertype_subclass3_test/04: CompileTimeError -mixin_supertype_subclass3_test/05: CompileTimeError -mixin_supertype_subclass3_test/none: CompileTimeError -mixin_supertype_subclass4_test/01: CompileTimeError -mixin_supertype_subclass4_test/02: CompileTimeError -mixin_supertype_subclass4_test/03: CompileTimeError -mixin_supertype_subclass4_test/04: CompileTimeError -mixin_supertype_subclass4_test/05: CompileTimeError -mixin_supertype_subclass4_test/none: CompileTimeError -mixin_type_parameters_super_test: RuntimeError -modulo_test: RuntimeError -multiline_newline_test/04: MissingCompileTimeError -multiline_newline_test/04r: MissingCompileTimeError -multiline_newline_test/05: MissingCompileTimeError -multiline_newline_test/05r: MissingCompileTimeError -multiline_newline_test/06: MissingCompileTimeError -multiline_newline_test/06r: MissingCompileTimeError -named_parameters_default_eq_test/02: MissingCompileTimeError -nan_identical_test: RuntimeError -nested_generic_closure_test: Crash # Unsupported operation: Unsupported type parameter type node F. -nested_switch_label_test: Crash # NoSuchMethodError: The method 'generateBreak' was called on null. -no_main_test/01: CompileTimeError -not_enough_positional_arguments_test/00: MissingCompileTimeError -not_enough_positional_arguments_test/01: MissingCompileTimeError -not_enough_positional_arguments_test/02: MissingCompileTimeError -not_enough_positional_arguments_test/03: MissingCompileTimeError -not_enough_positional_arguments_test/05: MissingCompileTimeError -not_enough_positional_arguments_test/06: MissingCompileTimeError -not_enough_positional_arguments_test/07: MissingCompileTimeError -null_test/02: MissingCompileTimeError -null_test/03: MissingCompileTimeError -null_test/mirrors: RuntimeError -null_test/none: RuntimeError -number_identity2_test: RuntimeError -numbers_test: RuntimeError -override_field_method1_negative_test: Fail -override_field_method2_negative_test: Fail -override_field_method4_negative_test: Fail -override_field_method5_negative_test: Fail -override_field_test/01: MissingCompileTimeError -override_inheritance_mixed_test/01: MissingCompileTimeError -override_inheritance_mixed_test/02: MissingCompileTimeError -override_inheritance_mixed_test/03: MissingCompileTimeError -override_inheritance_mixed_test/04: MissingCompileTimeError -override_inheritance_mixed_test/08: MissingCompileTimeError -override_inheritance_mixed_test/09: MissingCompileTimeError -override_method_with_field_test/01: MissingCompileTimeError -positional_parameters_type_test/01: MissingCompileTimeError -positional_parameters_type_test/02: MissingCompileTimeError -private_super_constructor_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/02: MissingCompileTimeError -redirecting_factory_long_test: RuntimeError -redirecting_factory_reflection_test: RuntimeError -regress_20394_test/01: MissingCompileTimeError -regress_22976_test/01: CompileTimeError -regress_22976_test/02: CompileTimeError -regress_22976_test/none: CompileTimeError -regress_24283_test: RuntimeError -regress_27617_test/1: Crash # Assertion failure: Unexpected constructor j:constructor(Foo._) in ConstructorDataImpl._getConstructorConstant -regress_28217_test/01: MissingCompileTimeError -regress_28217_test/none: MissingCompileTimeError -regress_28255_test: RuntimeError -regress_28341_test: RuntimeError -regress_29405_test: RuntimeError -regress_29784_test/01: Crash # Assertion failure: Cannot find value Instance of 'ThisLocal' in () for j:constructor(A.ok). -regress_29784_test/02: MissingCompileTimeError # Issue 29784 -regress_30339_test: RuntimeError # Issue 26429 -regress_31057_test: Crash # Unsupported operation: Unsupported type parameter type node B. -setter_override_test/00: MissingCompileTimeError -setter_override_test/03: MissingCompileTimeError -stacktrace_demangle_ctors_test: RuntimeError -stacktrace_test: RuntimeError -super_call4_test: Crash # NoSuchMethodError: The getter 'thisLocal' was called on null. -switch_bad_case_test/01: MissingCompileTimeError -switch_bad_case_test/02: MissingCompileTimeError -switch_case_test/00: MissingCompileTimeError -switch_case_test/01: MissingCompileTimeError -switch_case_test/02: MissingCompileTimeError -symbol_literal_test/01: MissingCompileTimeError -syntax_test/28: MissingCompileTimeError -syntax_test/29: MissingCompileTimeError -syntax_test/30: MissingCompileTimeError -syntax_test/31: MissingCompileTimeError -syntax_test/32: MissingCompileTimeError -syntax_test/33: MissingCompileTimeError -tearoff_dynamic_test: Crash # Unsupported operation: Unsupported type parameter type node T. -truncdiv_test: RuntimeError -try_catch_test/01: MissingCompileTimeError -type_check_const_function_typedef2_test: MissingCompileTimeError -type_literal_test: RuntimeError -type_parameter_test/06: Crash # Internal Error: Unexpected type variable in static context. -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 && $dart2js_with_kernel ] -checked_setter_test: RuntimeError # Issue 31128 -checked_setter2_test: RuntimeError # Issue 31128 +[ $compiler == dart2js && !$dart2js_with_kernel ] +accessor_conflict_export2_test: Crash # Issue 25626 +accessor_conflict_export_test: Crash # Issue 25626 +assertion_initializer_const_error2_test/*: Crash # Issue 30038 +assertion_initializer_const_error2_test/none: Pass +assertion_initializer_test: Crash +bad_constructor_test/05: CompileTimeError +bad_typedef_test/00: Crash # Issue 28214 bug31436_test: RuntimeError -built_in_identifier_type_annotation_test/22: Crash # Issue 28815 -built_in_identifier_type_annotation_test/52: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/53: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/54: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/55: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/57: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/58: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/59: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/60: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/61: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/62: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/63: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/64: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/65: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/66: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/67: MissingCompileTimeError # Issue 28815 -built_in_identifier_type_annotation_test/68: MissingCompileTimeError # Issue 28815 -implicit_downcast_during_constructor_invocation_test: RuntimeError -implicit_downcast_during_for_in_element_test: RuntimeError -implicit_downcast_during_for_in_iterable_test: RuntimeError -implicit_downcast_during_function_literal_arrow_test: RuntimeError -implicit_downcast_during_function_literal_return_test: RuntimeError -implicit_downcast_during_invocation_test: RuntimeError -implicit_downcast_during_list_literal_test: RuntimeError -implicit_downcast_during_redirecting_initializer_test: RuntimeError -implicit_downcast_during_return_async_test: RuntimeError -implicit_downcast_during_super_initializer_test: RuntimeError -implicit_downcast_during_yield_star_test: RuntimeError -implicit_downcast_during_yield_test: RuntimeError -invalid_cast_test/01: MissingCompileTimeError -invalid_cast_test/02: MissingCompileTimeError -invalid_cast_test/03: MissingCompileTimeError -invalid_cast_test/04: MissingCompileTimeError -invalid_cast_test/07: MissingCompileTimeError -invalid_cast_test/08: MissingCompileTimeError -invalid_cast_test/09: MissingCompileTimeError -invalid_cast_test/10: MissingCompileTimeError -invalid_cast_test/11: MissingCompileTimeError +built_in_identifier_type_annotation_test/13: Crash # Issue 28815 +built_in_identifier_type_annotation_test/22: MissingCompileTimeError # Error only in strong mode +built_in_identifier_type_annotation_test/30: Crash # Issue 28815 +built_in_identifier_type_annotation_test/52: Crash # Issue 28815 +built_in_identifier_type_annotation_test/53: Crash # Issue 28815 +built_in_identifier_type_annotation_test/54: Crash # Issue 28815 +built_in_identifier_type_annotation_test/55: Crash # Issue 28815 +built_in_identifier_type_annotation_test/57: Crash # Issue 28815 +built_in_identifier_type_annotation_test/58: Crash # Issue 28815 +built_in_identifier_type_annotation_test/59: Crash # Issue 28815 +built_in_identifier_type_annotation_test/60: Crash # Issue 28815 +built_in_identifier_type_annotation_test/61: Crash # Issue 28815 +built_in_identifier_type_annotation_test/62: Crash # Issue 28815 +built_in_identifier_type_annotation_test/63: Crash # Issue 28815 +built_in_identifier_type_annotation_test/64: Crash # Issue 28815 +built_in_identifier_type_annotation_test/65: Crash # Issue 28815 +built_in_identifier_type_annotation_test/66: Crash # Issue 28815 +built_in_identifier_type_annotation_test/67: Crash # Issue 28815 +built_in_identifier_type_annotation_test/68: Crash # Issue 28815 +built_in_identifier_type_annotation_test/81: Crash # Issue 28815 +call_function_apply_test: RuntimeError # Issue 23873 +canonical_const2_test: RuntimeError, OK # Issue 1533 +compile_time_constant_o_test/01: MissingCompileTimeError +compile_time_constant_o_test/02: MissingCompileTimeError +conditional_method_invocation_test/05: MissingCompileTimeError +conditional_method_invocation_test/06: MissingCompileTimeError +conditional_method_invocation_test/07: MissingCompileTimeError +conditional_method_invocation_test/08: MissingCompileTimeError +conditional_method_invocation_test/12: MissingCompileTimeError +conditional_method_invocation_test/13: MissingCompileTimeError +conditional_method_invocation_test/18: MissingCompileTimeError +conditional_method_invocation_test/19: MissingCompileTimeError +conditional_property_access_test/04: MissingCompileTimeError +conditional_property_access_test/05: MissingCompileTimeError +conditional_property_access_test/06: MissingCompileTimeError +conditional_property_access_test/10: MissingCompileTimeError +conditional_property_access_test/11: MissingCompileTimeError +conditional_property_access_test/16: MissingCompileTimeError +conditional_property_access_test/17: MissingCompileTimeError +conditional_property_assignment_test/04: MissingCompileTimeError +conditional_property_assignment_test/05: MissingCompileTimeError +conditional_property_assignment_test/06: MissingCompileTimeError +conditional_property_assignment_test/10: MissingCompileTimeError +conditional_property_assignment_test/11: MissingCompileTimeError +conditional_property_assignment_test/12: MissingCompileTimeError +conditional_property_assignment_test/13: MissingCompileTimeError +conditional_property_assignment_test/27: MissingCompileTimeError +conditional_property_assignment_test/28: MissingCompileTimeError +conditional_property_assignment_test/32: MissingCompileTimeError +conditional_property_assignment_test/33: MissingCompileTimeError +conditional_property_assignment_test/34: MissingCompileTimeError +conditional_property_assignment_test/35: MissingCompileTimeError +conditional_property_increment_decrement_test/04: MissingCompileTimeError +conditional_property_increment_decrement_test/08: MissingCompileTimeError +conditional_property_increment_decrement_test/12: MissingCompileTimeError +conditional_property_increment_decrement_test/16: MissingCompileTimeError +conditional_property_increment_decrement_test/21: MissingCompileTimeError +conditional_property_increment_decrement_test/22: MissingCompileTimeError +conditional_property_increment_decrement_test/27: MissingCompileTimeError +conditional_property_increment_decrement_test/28: MissingCompileTimeError +conditional_property_increment_decrement_test/33: MissingCompileTimeError +conditional_property_increment_decrement_test/34: MissingCompileTimeError +conditional_property_increment_decrement_test/39: MissingCompileTimeError +conditional_property_increment_decrement_test/40: MissingCompileTimeError +const_constructor2_test/05: MissingCompileTimeError +const_constructor2_test/06: MissingCompileTimeError +const_dynamic_type_literal_test/03: CompileTimeError # Issue 23009 +const_switch_test/02: RuntimeError # Issue 17960 +const_switch_test/04: RuntimeError # Issue 17960 +const_types_test/01: MissingCompileTimeError +const_types_test/02: MissingCompileTimeError +const_types_test/03: MissingCompileTimeError +const_types_test/04: MissingCompileTimeError +const_types_test/05: MissingCompileTimeError +const_types_test/06: MissingCompileTimeError +const_types_test/13: MissingCompileTimeError +const_types_test/34: MissingCompileTimeError +const_types_test/35: MissingCompileTimeError +const_types_test/39: MissingCompileTimeError +const_types_test/40: MissingCompileTimeError +deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError +deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/new_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTimeError +deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError +deferred_not_loaded_check_test: Fail # Issue 27577 +double_int_to_string_test: RuntimeError # Issue 1533 +enum_test: Fail # Issue 28340 +expect_test: RuntimeError, OK # Issue 13080 +external_test/10: CompileTimeError # Issue 12887 +external_test/13: CompileTimeError # Issue 12887 +external_test/20: CompileTimeError # Issue 12887 +final_attempt_reinitialization_test.dart: Skip # Issue 29659 +final_field_override_test: RuntimeError +full_stacktrace1_test: Pass, RuntimeError # Issue 12698 +full_stacktrace2_test: Pass, RuntimeError # Issue 12698 +full_stacktrace3_test: Pass, RuntimeError # Issue 12698 +generalized_void_syntax_test: CompileTimeError # Issue #30176. +generic_field_mixin4_test: Crash # Issue 18651 +generic_field_mixin5_test: Crash # Issue 18651 +generic_function_typedef2_test/00: MissingCompileTimeError # Issue 28214 +generic_function_typedef2_test/01: MissingCompileTimeError # Issue 28214 +generic_function_typedef2_test/02: MissingCompileTimeError # Issue 28214 +generic_function_typedef2_test/03: MissingCompileTimeError # Issue 28214 +generic_function_typedef2_test/05: Crash # Issue 28214 +generic_function_typedef2_test/06: Crash # Issue 28214 +generic_methods_local_variable_declaration_test: RuntimeError +getter_setter_in_lib_test: Fail # Issue 23288 +identical_closure2_test: RuntimeError # Issue 1533, Issue 12596 +if_null_assignment_behavior_test/13: Crash # Issue 23491 +if_null_assignment_behavior_test/14: Crash # Issue 23491 +infinity_test: RuntimeError # Issue 4984 +integer_division_by_zero_test: RuntimeError # Issue 8301 +invocation_mirror2_test: RuntimeError # Issue 6490 (wrong retval). +left_shift_test: RuntimeError # Issue 1533 +list_literal4_test/00: MissingCompileTimeError +list_literal4_test/01: MissingCompileTimeError +list_literal4_test/03: MissingCompileTimeError +list_literal4_test/04: MissingCompileTimeError +list_literal4_test/05: MissingCompileTimeError +list_literal_syntax_test/01: MissingCompileTimeError +list_literal_syntax_test/02: MissingCompileTimeError +list_literal_syntax_test/03: MissingCompileTimeError +method_name_test: Fail # issue 25574 +method_override5_test: RuntimeError # Issue 12809 +mint_arithmetic_test: RuntimeError # Issue 1533 +mixin_mixin2_test: RuntimeError # Issue 13109. +mixin_mixin3_test: RuntimeError # Issue 13109. +mixin_mixin_type_arguments_test: RuntimeError # Issue 29587 +mixin_of_mixin_test/none: CompileTimeError +mixin_super_2_test/none: CompileTimeError +mixin_super_bound2_test: CompileTimeError # Issue 23773 +mixin_super_constructor_named_test/01: Fail # Issue 15101 +mixin_super_constructor_positionals_test/01: Fail # Issue 15101 +mixin_super_test: CompileTimeError # Issue 23773 +mixin_super_use_test: CompileTimeError # Issue 23773 +mixin_superclass_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass2_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass3_test: CompileTimeError # Issue 23773 +mixin_supertype_subclass4_test: CompileTimeError # Issue 23773 +mixin_type_parameters_super_test: RuntimeError +mixin_with_two_implicit_constructors_test: MissingCompileTimeError +mock_writable_final_private_field_test: CompileTimeError # Issue 17526 +modulo_test: RuntimeError # Issue 15246 +multiline_newline_test/01: CompileTimeError # Issue 23888 +multiline_newline_test/01r: CompileTimeError # Issue 23888 +multiline_newline_test/02: CompileTimeError # Issue 23888 +multiline_newline_test/02r: CompileTimeError # Issue 23888 +multiline_newline_test/03: RuntimeError +multiline_newline_test/03r: RuntimeError +multiline_newline_test/04: MissingCompileTimeError # Issue 23888 +multiline_newline_test/04r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/05: MissingCompileTimeError # Issue 23888 +multiline_newline_test/05r: MissingCompileTimeError # Issue 23888 +multiline_newline_test/none: RuntimeError # Issue 23888 +nan_identical_test: Fail # Issue 11551 +number_identity2_test: RuntimeError # Issue 12596 +numbers_test: RuntimeError, OK # Issue 1533 object_has_no_call_method_test/02: MissingCompileTimeError object_has_no_call_method_test/05: MissingCompileTimeError object_has_no_call_method_test/08: MissingCompileTimeError +positional_parameters_type_test/01: MissingCompileTimeError +positional_parameters_type_test/02: MissingCompileTimeError +regress_22976_test: CompileTimeError # Issue 23132 +regress_24283_test: RuntimeError # Issue 1533 +scope_variable_test/01: MissingCompileTimeError # Issue 13016 +setter4_test: CompileTimeError # issue 13639 +stacktrace_demangle_ctors_test: Fail # dart2js stack traces are not always compliant. +stacktrace_rethrow_error_test: Pass, RuntimeError # Issue 12698 +stacktrace_rethrow_nonerror_test: Pass, RuntimeError # Issue 12698 +stacktrace_test: Pass, RuntimeError # # Issue 12698 +truncdiv_test: RuntimeError # Issue 15246 +try_catch_on_syntax_test/10: Fail # Issue 19823 +try_catch_on_syntax_test/11: Fail # Issue 19823 +type_variable_conflict_test/01: Fail # Issue 13702 +type_variable_conflict_test/02: Fail # Issue 13702 +type_variable_conflict_test/03: Fail # Issue 13702 +type_variable_conflict_test/04: Fail # Issue 13702 +type_variable_conflict_test/05: Fail # Issue 13702 +type_variable_conflict_test/06: Fail # Issue 13702 -[ $compiler == dart2js && $dart2js_with_kernel && !$checked ] -assertion_initializer_const_error2_test/none: Pass -assertion_initializer_const_error2_test/*: CompileTimeError # Issue #31321 -cascaded_forwarding_stubs_generic_test: RuntimeError -cascaded_forwarding_stubs_test: RuntimeError -checked_setter3_test: RuntimeError # Issue 31128 -implicit_downcast_during_assignment_test: RuntimeError -implicit_downcast_during_combiner_test: RuntimeError -implicit_downcast_during_compound_assignment_test: RuntimeError -implicit_downcast_during_conditional_expression_test: RuntimeError -implicit_downcast_during_constructor_initializer_test: RuntimeError -implicit_downcast_during_do_test: RuntimeError -implicit_downcast_during_factory_constructor_invocation_test: RuntimeError -implicit_downcast_during_field_declaration_test: RuntimeError -implicit_downcast_during_for_condition_test: RuntimeError -implicit_downcast_during_for_initializer_expression_test: RuntimeError -implicit_downcast_during_for_initializer_var_test: RuntimeError -implicit_downcast_during_if_null_assignment_test: RuntimeError -implicit_downcast_during_if_statement_test: RuntimeError -implicit_downcast_during_indexed_assignment_test: RuntimeError -implicit_downcast_during_indexed_compound_assignment_test: RuntimeError -implicit_downcast_during_indexed_get_test: RuntimeError -implicit_downcast_during_indexed_if_null_assignment_test: RuntimeError -implicit_downcast_during_logical_expression_test: RuntimeError -implicit_downcast_during_map_literal_test: RuntimeError -implicit_downcast_during_method_invocation_test: RuntimeError -implicit_downcast_during_not_test: RuntimeError -implicit_downcast_during_null_aware_method_invocation_test: RuntimeError -implicit_downcast_during_return_test: RuntimeError -implicit_downcast_during_static_method_invocation_test: RuntimeError -implicit_downcast_during_super_method_invocation_test: RuntimeError -implicit_downcast_during_variable_declaration_test: RuntimeError -implicit_downcast_during_while_statement_test: RuntimeError - -[ $compiler == dart2js && $dart2js_with_kernel && $checked ] -known_identifier_usage_error_test/none: RuntimeError # Issue 28815 -built_in_identifier_test: RuntimeError # Issue 28815 -built_in_identifier_type_annotation_test/none: RuntimeError # Issue 28815 -built_in_identifier_type_annotation_test/05: RuntimeError # Issue 28815 -built_in_identifier_type_annotation_test/39: RuntimeError # Issue 28815 -built_in_identifier_type_annotation_test/56: RuntimeError # Issue 28815 -built_in_identifier_type_annotation_test/73: RuntimeError # Issue 28815 - -[ $compiler == dart2js && $dart2js_with_kernel && $minified && $checked ] -inline_super_field_test: Crash -typedef_is_test: Crash - -[ $compiler == dart2js && !$dart2js_with_kernel && $runtime != none ] -async_star_cancel_while_paused_test: RuntimeError # Issue 22853 - -[ $compiler == dart2js && $runtime == jsshell && !$dart2js_with_kernel ] -async_star_await_pauses_test: RuntimeError # Need triage -async_star_no_cancel2_test: RuntimeError # Need triage -async_star_no_cancel_test: RuntimeError # Need triage -await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728 -regress_23996_test: RuntimeError # Jsshell does not provide non-zero timers, Issue 7728 - -[ $compiler == dart2js && $runtime != none ] -covariant_subtyping_with_substitution_test: RuntimeError -covariant_tear_off_type_test: RuntimeError - -[ $compiler == dart2js && $runtime == jsshell ] -async_star_test/01: RuntimeError -async_star_test/02: RuntimeError -async_star_test/03: RuntimeError -async_star_test/04: RuntimeError -async_star_test/05: RuntimeError -async_star_test/none: RuntimeError -field_override_optimization_test: RuntimeError -field_type_check2_test/01: MissingRuntimeError - -[ $compiler == dart2js && $runtime == chrome ] -field_override_optimization_test: RuntimeError -field_type_check2_test/01: MissingRuntimeError - -[ $compiler == dart2js && $runtime == d8 && !$checked ] -field_override_optimization_test: RuntimeError -field_type_check2_test/01: MissingRuntimeError - -[ $compiler == dart2js && $checked && !$dart2js_with_kernel ] -async_return_types_test/nestedFuture: Fail # Issue 26429 -async_return_types_test/wrongTypeParameter: Fail # Issue 26429 -check_member_static_test/01: MissingCompileTimeError -check_method_override_test/01: MissingCompileTimeError -check_method_override_test/02: MissingCompileTimeError -covariant_subtyping_test: CompileTimeError -default_factory2_test/01: Fail # Issue 14121 -function_malformed_result_type_test/00: MissingCompileTimeError -function_type_alias_test: RuntimeError -function_type_call_getter2_test/00: MissingCompileTimeError -function_type_call_getter2_test/01: MissingCompileTimeError -function_type_call_getter2_test/02: MissingCompileTimeError -function_type_call_getter2_test/03: MissingCompileTimeError -function_type_call_getter2_test/04: MissingCompileTimeError -malbounded_instantiation_test/01: Fail # Issue 12702 -malbounded_redirecting_factory_test/02: Fail # Issue 12825 -malbounded_redirecting_factory_test/03: Fail # Issue 12825 -malbounded_type_cast2_test: Fail # Issue 14121 -malbounded_type_cast_test: Fail # Issue 14121 -malbounded_type_test_test/03: Fail # Issue 14121 -malbounded_type_test_test/04: Fail # Issue 14121 -regress_26133_test: RuntimeError # Issue 26429 -regress_29405_test: Fail # Issue 29422 -function_type_call_getter2_test/05: MissingCompileTimeError - -[ $compiler == dart2js && !$checked ] -covariance_field_test/01: RuntimeError -covariance_field_test/02: RuntimeError -covariance_field_test/03: RuntimeError -covariance_field_test/04: RuntimeError -covariance_field_test/05: RuntimeError -covariance_method_test/01: RuntimeError -covariance_method_test/02: RuntimeError -covariance_method_test/03: RuntimeError -covariance_method_test/04: RuntimeError -covariance_method_test/05: RuntimeError -covariance_method_test/06: RuntimeError -covariance_setter_test/01: RuntimeError -covariance_setter_test/02: RuntimeError -covariance_setter_test/03: RuntimeError -covariance_setter_test/04: RuntimeError -covariance_setter_test/05: RuntimeError -type_argument_in_super_type_test: RuntimeError -type_check_const_function_typedef2_test: MissingCompileTimeError -recursive_mixin_test: RuntimeError # no check without --checked - -[ $compiler == dart2js && $checked ] -covariant_subtyping_test: CompileTimeError - -[ $compiler == dart2js && $runtime == safarimobilesim && !$dart2js_with_kernel ] -call_through_getter_test: Fail, OK - -[ $compiler == dart2js && $fast_startup && !$dart2js_with_kernel ] +[ $compiler == dart2js && !$dart2js_with_kernel && $fast_startup ] const_evaluation_test/*: Fail # mirrors not supported +deferred_constraints_constants_test: Pass # mirrors not supported, passes for the wrong reason deferred_constraints_constants_test/none: Fail # mirrors not supported deferred_constraints_constants_test/reference_after_load: Fail # mirrors not supported -deferred_constraints_constants_test: Pass # mirrors not supported, passes for the wrong reason enum_mirror_test: Fail # mirrors not supported field_increment_bailout_test: Fail # mirrors not supported instance_creation_in_function_annotation_test: Fail # mirrors not supported invocation_mirror2_test: Fail # mirrors not supported invocation_mirror_invoke_on2_test: Fail # mirrors not supported invocation_mirror_invoke_on_test: Fail # mirrors not supported +issue21079_test: Fail # mirrors not supported library_env_test/has_mirror_support: Fail # mirrors not supported library_env_test/has_no_mirror_support: Pass # fails for the wrong reason. -issue21079_test: Fail # mirrors not supported many_overridden_no_such_method_test: Fail # mirrors not supported no_such_method_test: Fail # mirrors not supported null_test/0*: Pass # mirrors not supported, fails for the wrong reason null_test/none: Fail # mirrors not supported overridden_no_such_method_test: Fail # mirrors not supported -regress_28255_test: Fail # mirrors not supported -super_call4_test: Fail # mirrors not supported -super_getter_setter_test: CompileTimeError -vm/reflect_core_vm_test: Fail # mirrors not supported redirecting_factory_reflection_test: Fail # mirrors not supported regress_13462_0_test: Fail # mirrors not supported regress_13462_1_test: Fail # mirrors not supported regress_18535_test: Fail # mirrors not supported +regress_28255_test: Fail # mirrors not supported +super_call4_test: Fail # mirrors not supported +super_getter_setter_test: CompileTimeError +vm/reflect_core_vm_test: Fail # mirrors not supported -[ $compiler == dart2js && $runtime == chrome && $system == macos && !$dart2js_with_kernel ] -await_future_test: Pass, Timeout # Issue 26735 - -[ $compiler == dart2js && $system == windows && !$dart2js_with_kernel ] -string_literals_test: Pass, RuntimeError # Failures on dart2js-win7-chrome-4-4-be and dart2js-win7-ie11ff-4-4-be - -[ $compiler == dart2js && $runtime != drt && !$dart2js_with_kernel ] -issue23244_test: RuntimeError # 23244 - -[ $compiler == dart2js && $runtime == chrome && !$dart2js_with_kernel ] -enum_mirror_test: pass - -[ $compiler == dart2js && $runtime == chromeOnAndroid && !$dart2js_with_kernel ] -override_field_test/02: Pass, Slow # TODO(kasperl): Please triage. - -[ $compiler == dart2js && $browser && !$dart2js_with_kernel ] -library_env_test/has_no_io_support: Pass # Issue 27398 -library_env_test/has_io_support: RuntimeError # Issue 27398 -config_import_test: Fail # Test flag is not passed to the compiler. - -[ $compiler == dart2js && $runtime == safari && !$dart2js_with_kernel ] -round_test: Fail, OK # Common JavaScript engine Math.round bug. - -[ $compiler == dart2js && $runtime == ff && !$dart2js_with_kernel ] -field_override_optimization_test: RuntimeError -field_type_check2_test/01: MissingRuntimeError -round_test: Pass, Fail, OK # Fixed in ff 35. Common JavaScript engine Math.round bug. - -[ $compiler == dart2js && $runtime == drt && !$checked && !$dart2js_with_kernel ] -field_type_check2_test/01: MissingRuntimeError -field_override_optimization_test: RuntimeError - -[ $compiler == dart2js && $runtime == safari && !$dart2js_with_kernel ] -field_override_optimization_test: RuntimeError -field_type_check2_test/01: MissingRuntimeError - -[ $compiler == dart2js && $minified && !$dart2js_with_kernel ] -f_bounded_quantification4_test: Fail, Pass # Issue 12605 -symbol_conflict_test: RuntimeError # Issue 23857 -mixin_generic_test: Fail # Issue 12605 - -[ $compiler == dart2js && $host_checked && !$dart2js_with_kernel ] +[ $compiler == dart2js && !$dart2js_with_kernel && $host_checked ] implicit_downcast_during_for_in_element_test: Crash implicit_downcast_during_for_in_iterable_test: Crash regress_26855_test/1: Crash # Issue 26867 @@ -3161,6 +3133,24 @@ regress_26855_test/2: Crash # Issue 26867 regress_26855_test/3: Crash # Issue 26867 regress_26855_test/4: Crash # Issue 26867 -[ $compiler == dart2js && $csp && $browser && !$fast_startup ] -conditional_import_string_test: Fail # Issue 30615 -conditional_import_test: Fail # Issue 30615 +[ $compiler == dart2js && !$dart2js_with_kernel && $minified ] +f_bounded_quantification4_test: Fail, Pass # Issue 12605 +mixin_generic_test: Fail # Issue 12605 +symbol_conflict_test: RuntimeError # Issue 23857 + +[ $compiler == dart2js && !$dart2js_with_kernel && !$minified ] +vm/async_await_catch_stacktrace_test: RuntimeError + +[ $compiler == dart2js && $minified ] +cyclic_type2_test: RuntimeError # Issue 31054 +cyclic_type_test/0*: RuntimeError # Issue 31054 +f_bounded_quantification5_test: RuntimeError # Issue 31054 +generic_closure_test: RuntimeError # Issue 31054 +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 + diff --git a/tests/language_2/language_2_dartdevc.status b/tests/language_2/language_2_dartdevc.status index c6ce5ee8097..9d1d3513e6a 100644 --- a/tests/language_2/language_2_dartdevc.status +++ b/tests/language_2/language_2_dartdevc.status @@ -1,112 +1,8 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$compiler == dartdevc" or dartdevk. -# Compiler tests for dartdevc and dartdevk. These contain common expectations -# for all runtimes including $runtime == none. They are organized by: shared -# expectations for dartdevc and dartdevk, then expectations for dartdevc, and -# then expectations for dartdevk. -[ ($compiler == dartdevc || $compiler == dartdevk) && $runtime == none ] -unhandled_exception_negative_test: Fail -closure_call_wrong_argument_count_negative_test: Fail - -# Skip Kernel tests on Windows until bot has been fixed (Issue 31539) -[ $compiler == dartdevk && $system == windows ] -*: Skip - -[ ($compiler == dartdevc && $runtime == none) || $compiler == dartdevk ] -instantiate_type_variable_test/01: CompileTimeError -setter_no_getter_call_test/01: CompileTimeError - -[ $compiler == dartdevc || $compiler == dartdevk ] -vm/*: SkipByDesign # VM only tests.; VM only tests. -abstract_override_adds_optional_args_concrete_subclass_test: MissingCompileTimeError # Issue #30568 -abstract_override_adds_optional_args_concrete_test: MissingCompileTimeError # Issue #30568 -abstract_override_adds_optional_args_supercall_test: MissingCompileTimeError # Issue #30568 -async_return_types_test/nestedFuture: MissingCompileTimeError -bit_operations_test/01: MissingCompileTimeError -bit_operations_test/02: MissingCompileTimeError -built_in_identifier_prefix_test: CompileTimeError -config_import_corelib_test: CompileTimeError -field3_test/01: MissingCompileTimeError -generic_function_type_as_type_argument_test/01: MissingCompileTimeError # Issue 29920 -generic_function_type_as_type_argument_test/02: MissingCompileTimeError # Issue 29920 -generic_list_checked_test: CompileTimeError -generic_methods_overriding_test/01: MissingCompileTimeError # Issue 29920 -generic_methods_overriding_test/03: MissingCompileTimeError # Issue 29920 -generic_tearoff_test: CompileTimeError -internal_library_test/02: Crash -int64_literal_test/*: Skip # This is testing Dart 2.0 int64 semantics. -method_override7_test/03: MissingCompileTimeError # Issue 30514 -multiline_newline_test/04: MissingCompileTimeError -multiline_newline_test/04r: MissingCompileTimeError -multiline_newline_test/05: MissingCompileTimeError -multiline_newline_test/05r: MissingCompileTimeError -override_field_test/03: MissingCompileTimeError -override_inheritance_abstract_test/02: MissingCompileTimeError -override_inheritance_abstract_test/03: MissingCompileTimeError -override_inheritance_abstract_test/04: MissingCompileTimeError -override_inheritance_abstract_test/08: MissingCompileTimeError -override_inheritance_abstract_test/09: MissingCompileTimeError -override_inheritance_abstract_test/10: MissingCompileTimeError -override_inheritance_abstract_test/11: MissingCompileTimeError -override_inheritance_abstract_test/12: MissingCompileTimeError -override_inheritance_abstract_test/13: MissingCompileTimeError -override_inheritance_abstract_test/14: MissingCompileTimeError -override_inheritance_abstract_test/17: MissingCompileTimeError -override_inheritance_abstract_test/19: MissingCompileTimeError -override_inheritance_abstract_test/20: MissingCompileTimeError -override_inheritance_abstract_test/21: MissingCompileTimeError -override_inheritance_abstract_test/22: MissingCompileTimeError -override_inheritance_abstract_test/23: MissingCompileTimeError -override_inheritance_abstract_test/24: MissingCompileTimeError -override_inheritance_abstract_test/25: MissingCompileTimeError -override_inheritance_abstract_test/26: MissingCompileTimeError -override_inheritance_no_such_method_test/13: MissingCompileTimeError -parser_quirks_test: CompileTimeError -regress_27617_test/1: MissingCompileTimeError -void_type_function_types_test/none: CompileTimeError # Issue 30514 -void_type_override_test/none: CompileTimeError # Issue 30514 -void_type_usage_test/call_as: CompileTimeError # Issue 30514 -void_type_usage_test/call_for: CompileTimeError # Issue 30514 -void_type_usage_test/call_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/field_assign2: CompileTimeError # Issue 30514 -void_type_usage_test/field_assign: CompileTimeError # Issue 30514 -void_type_usage_test/final_local_as: CompileTimeError # Issue 30514 -void_type_usage_test/final_local_for: CompileTimeError # Issue 30514 -void_type_usage_test/final_local_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/global_as: CompileTimeError # Issue 30514 -void_type_usage_test/global_for: CompileTimeError # Issue 30514 -void_type_usage_test/global_for_in2: CompileTimeError # Issue 30514 -void_type_usage_test/global_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/instance2_as: CompileTimeError # Issue 30514 -void_type_usage_test/instance2_for: CompileTimeError # Issue 30514 -void_type_usage_test/instance2_for_in3: CompileTimeError # Issue 30514 -void_type_usage_test/instance2_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/instance3_as: CompileTimeError # Issue 30514 -void_type_usage_test/instance3_for: CompileTimeError # Issue 30514 -void_type_usage_test/instance3_for_in3: CompileTimeError # Issue 30514 -void_type_usage_test/instance3_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/instance_as: CompileTimeError # Issue 30514 -void_type_usage_test/instance_for: CompileTimeError # Issue 30514 -void_type_usage_test/instance_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/local_as: CompileTimeError # Issue 30514 -void_type_usage_test/local_assign: CompileTimeError # Issue 30514 -void_type_usage_test/local_for: CompileTimeError # Issue 30514 -void_type_usage_test/local_for_in2: CompileTimeError # Issue 30514 -void_type_usage_test/local_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/none: CompileTimeError # Issue 30514 -void_type_usage_test/param_as: CompileTimeError # Issue 30514 -void_type_usage_test/param_for: CompileTimeError # Issue 30514 -void_type_usage_test/param_for_in2: CompileTimeError # Issue 30514 -void_type_usage_test/param_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/paren_as: CompileTimeError # Issue 30514 -void_type_usage_test/paren_for: CompileTimeError # Issue 30514 -void_type_usage_test/paren_stmt: CompileTimeError # Issue 30514 -void_type_usage_test/setter_assign: CompileTimeError # Issue 30514 - [ $compiler == dartdevc ] accessor_conflict_export2_test: CompileTimeError # Issue 25626 accessor_conflict_export_test: CompileTimeError # Issue 25626 @@ -122,7 +18,7 @@ assertion_initializer_const_error2_test/none: Pass assertion_initializer_const_function_test/01: Crash assertion_initializer_test: CompileTimeError await_test: Crash # Issue 31540 -black_listed_test/none: fail # Issue 14228 +black_listed_test/none: Fail # Issue 14228 bug31436_test: CompileTimeError built_in_identifier_prefix_test: CompileTimeError built_in_identifier_type_annotation_test/22: MissingCompileTimeError # Issue 28816 @@ -226,10 +122,6 @@ type_variable_scope_test/none: CompileTimeError void_type_callbacks_test/00: MissingCompileTimeError # Issue 30514 void_type_callbacks_test/01: MissingCompileTimeError # Issue 30514 -[ $compiler == dartdevk && $runtime == none ] -no_such_method_negative_test: Fail -prefix6_negative_test: Fail - [ $compiler == dartdevk ] abstract_factory_constructor_test/00: MissingCompileTimeError abstract_getter_test/01: MissingCompileTimeError @@ -288,9 +180,9 @@ built_in_identifier_type_annotation_test/65: MissingCompileTimeError built_in_identifier_type_annotation_test/66: MissingCompileTimeError built_in_identifier_type_annotation_test/67: MissingCompileTimeError built_in_identifier_type_annotation_test/68: MissingCompileTimeError +call_function2_test: CompileTimeError # Issue 31402; Error: A value of type '#lib1::Bar' can't be assigned to a variable of type '(dart.core::Object) → dart.core::Object'. call_function_apply_test: CompileTimeError # Issue 31402 Error: A value of type '#lib1::A' can't be assigned to a variable of type 'dart.core::Function'. call_function_test: CompileTimeError -call_function2_test: CompileTimeError # Issue 31402; Error: A value of type '#lib1::Bar' can't be assigned to a variable of type '(dart.core::Object) → dart.core::Object'. call_non_method_field_test/01: MissingCompileTimeError call_non_method_field_test/02: MissingCompileTimeError call_with_no_such_method_test: CompileTimeError # Issue 31402 Error: A value of type '#lib1::F' can't be assigned to a variable of type 'dart.core::Function'. @@ -413,74 +305,74 @@ final_attempt_reinitialization_test/02: Crash final_syntax_test/09: Crash function_propagation_test: CompileTimeError function_subtype_bound_closure7_test: CompileTimeError +function_type/function_type10_test: CompileTimeError +function_type/function_type11_test: CompileTimeError +function_type/function_type14_test: CompileTimeError +function_type/function_type15_test: CompileTimeError +function_type/function_type18_test: CompileTimeError +function_type/function_type19_test: CompileTimeError +function_type/function_type20_test: CompileTimeError +function_type/function_type21_test: CompileTimeError +function_type/function_type22_test: CompileTimeError +function_type/function_type23_test: CompileTimeError +function_type/function_type24_test: CompileTimeError +function_type/function_type25_test: CompileTimeError +function_type/function_type26_test: CompileTimeError +function_type/function_type27_test: CompileTimeError +function_type/function_type28_test: CompileTimeError +function_type/function_type29_test: CompileTimeError +function_type/function_type2_test: CompileTimeError +function_type/function_type30_test: CompileTimeError +function_type/function_type31_test: CompileTimeError +function_type/function_type32_test: CompileTimeError +function_type/function_type33_test: CompileTimeError +function_type/function_type34_test: CompileTimeError +function_type/function_type35_test: CompileTimeError +function_type/function_type36_test: CompileTimeError +function_type/function_type37_test: CompileTimeError +function_type/function_type38_test: CompileTimeError +function_type/function_type39_test: CompileTimeError +function_type/function_type3_test: CompileTimeError +function_type/function_type40_test: CompileTimeError +function_type/function_type41_test: CompileTimeError +function_type/function_type42_test: CompileTimeError +function_type/function_type43_test: CompileTimeError +function_type/function_type44_test: CompileTimeError +function_type/function_type45_test: CompileTimeError +function_type/function_type46_test: CompileTimeError +function_type/function_type47_test: CompileTimeError +function_type/function_type48_test: CompileTimeError +function_type/function_type49_test: CompileTimeError +function_type/function_type50_test: CompileTimeError +function_type/function_type51_test: CompileTimeError +function_type/function_type54_test: CompileTimeError +function_type/function_type55_test: CompileTimeError +function_type/function_type58_test: CompileTimeError +function_type/function_type59_test: CompileTimeError +function_type/function_type62_test: CompileTimeError +function_type/function_type63_test: CompileTimeError +function_type/function_type66_test: CompileTimeError +function_type/function_type67_test: CompileTimeError +function_type/function_type6_test: CompileTimeError +function_type/function_type70_test: CompileTimeError +function_type/function_type71_test: CompileTimeError +function_type/function_type74_test: CompileTimeError +function_type/function_type75_test: CompileTimeError +function_type/function_type78_test: CompileTimeError +function_type/function_type79_test: CompileTimeError +function_type/function_type7_test: CompileTimeError +function_type/function_type82_test: CompileTimeError +function_type/function_type83_test: CompileTimeError +function_type/function_type86_test: CompileTimeError +function_type/function_type87_test: CompileTimeError +function_type/function_type90_test: CompileTimeError +function_type/function_type91_test: CompileTimeError +function_type/function_type94_test: CompileTimeError +function_type/function_type95_test: CompileTimeError +function_type/function_type98_test: CompileTimeError +function_type/function_type99_test: CompileTimeError function_type_parameter2_negative_test: Fail function_type_parameter_negative_test: Fail -function_type/function_type79_test: CompileTimeError -function_type/function_type20_test: CompileTimeError -function_type/function_type71_test: CompileTimeError -function_type/function_type55_test: CompileTimeError -function_type/function_type82_test: CompileTimeError -function_type/function_type25_test: CompileTimeError -function_type/function_type35_test: CompileTimeError -function_type/function_type7_test: CompileTimeError -function_type/function_type54_test: CompileTimeError -function_type/function_type70_test: CompileTimeError -function_type/function_type30_test: CompileTimeError -function_type/function_type58_test: CompileTimeError -function_type/function_type42_test: CompileTimeError -function_type/function_type2_test: CompileTimeError -function_type/function_type11_test: CompileTimeError -function_type/function_type63_test: CompileTimeError -function_type/function_type47_test: CompileTimeError -function_type/function_type83_test: CompileTimeError -function_type/function_type59_test: CompileTimeError -function_type/function_type36_test: CompileTimeError -function_type/function_type10_test: CompileTimeError -function_type/function_type24_test: CompileTimeError -function_type/function_type40_test: CompileTimeError -function_type/function_type75_test: CompileTimeError -function_type/function_type33_test: CompileTimeError -function_type/function_type95_test: CompileTimeError -function_type/function_type34_test: CompileTimeError -function_type/function_type51_test: CompileTimeError -function_type/function_type43_test: CompileTimeError -function_type/function_type41_test: CompileTimeError -function_type/function_type49_test: CompileTimeError -function_type/function_type38_test: CompileTimeError -function_type/function_type67_test: CompileTimeError -function_type/function_type27_test: CompileTimeError -function_type/function_type19_test: CompileTimeError -function_type/function_type46_test: CompileTimeError -function_type/function_type28_test: CompileTimeError -function_type/function_type99_test: CompileTimeError -function_type/function_type44_test: CompileTimeError -function_type/function_type50_test: CompileTimeError -function_type/function_type18_test: CompileTimeError -function_type/function_type29_test: CompileTimeError -function_type/function_type32_test: CompileTimeError -function_type/function_type31_test: CompileTimeError -function_type/function_type14_test: CompileTimeError -function_type/function_type66_test: CompileTimeError -function_type/function_type39_test: CompileTimeError -function_type/function_type48_test: CompileTimeError -function_type/function_type87_test: CompileTimeError -function_type/function_type37_test: CompileTimeError -function_type/function_type21_test: CompileTimeError -function_type/function_type86_test: CompileTimeError -function_type/function_type98_test: CompileTimeError -function_type/function_type91_test: CompileTimeError -function_type/function_type26_test: CompileTimeError -function_type/function_type6_test: CompileTimeError -function_type/function_type74_test: CompileTimeError -function_type/function_type90_test: CompileTimeError -function_type/function_type23_test: CompileTimeError -function_type/function_type45_test: CompileTimeError -function_type/function_type22_test: CompileTimeError -function_type/function_type62_test: CompileTimeError -function_type/function_type15_test: CompileTimeError -function_type/function_type78_test: CompileTimeError -function_type/function_type94_test: CompileTimeError -function_type/function_type3_test: CompileTimeError generalized_void_syntax_test: CompileTimeError generic_function_bounds_test: CompileTimeError generic_function_dcall_test: CompileTimeError @@ -794,12 +686,158 @@ void_block_return_test/00: MissingCompileTimeError void_type_callbacks_test/none: CompileTimeError wrong_number_type_arguments_test/01: MissingCompileTimeError +[ $compiler == dartdevc && $runtime != none ] +async_star_test/01: RuntimeError +async_star_test/03: RuntimeError +async_star_test/04: RuntimeError +async_star_test/05: RuntimeError +async_star_test/none: RuntimeError +await_future_test: Pass, Timeout # Issue 29920 +bit_operations_test: RuntimeError # No bigints on web. +const_evaluation_test/01: RuntimeError # Issue 29920 +covariance_field_test/03: RuntimeError +covariant_override/tear_off_type_test: RuntimeError # Issue 28395 +deferred_load_library_wrong_args_test/01: MissingRuntimeError, RuntimeError # Issue 29920 +execute_finally6_test: RuntimeError # Issue 29920 +expect_test: RuntimeError # Issue 29920 +f_bounded_quantification3_test: RuntimeError # Issue 29920 +final_field_initialization_order_test: RuntimeError # Issue 31058 +first_class_types_test: RuntimeError, OK # Strong mode reifies inferred type argument. +fuzzy_arrows_test/03: RuntimeError # Issue 29630 +generic_method_types_test/02: RuntimeError +getter_closure_execution_order_test: RuntimeError # Issue 29920 +implicit_downcast_during_compound_assignment_test: RuntimeError +implicit_downcast_during_indexed_compound_assignment_test: RuntimeError +implicit_downcast_during_indexed_if_null_assignment_test: RuntimeError +label_test: RuntimeError +lazy_static3_test: RuntimeError # Issue 30852 +lazy_static8_test: RuntimeError # Issue 30852 +left_shift_test: RuntimeError # Ints and doubles are unified. +library_env_test/has_io_support: RuntimeError, OK +library_env_test/has_mirror_support: RuntimeError, OK +library_env_test/has_no_html_support: RuntimeError, OK +list_is_test: RuntimeError # Issue 29920 +mixin_super_test: RuntimeError +mixin_super_use_test: RuntimeError +multiline_newline_test/03: RuntimeError +multiline_newline_test/03r: RuntimeError +multiline_newline_test/none: RuntimeError +regress_24283_test: RuntimeError, OK # Requires 64 bit numbers. +regress_29784_test/02: Crash # assert initializers not implemented +stacktrace_test: RuntimeError # Issue 29920 +super_call4_test: RuntimeError +super_no_such_method1_test: RuntimeError +super_no_such_method2_test: RuntimeError +super_no_such_method3_test: RuntimeError +super_no_such_method4_test: RuntimeError +super_operator_index5_test: RuntimeError +super_operator_index7_test: RuntimeError +super_operator_index8_test: RuntimeError +truncdiv_test: RuntimeError # Issue 29920 +yieldstar_pause_test: Skip # Times out + +[ $compiler == dartdevk && $runtime == none ] +no_such_method_negative_test: Fail +prefix6_negative_test: Fail + +[ $compiler == dartdevk && $runtime != none ] +callable_test/none: RuntimeError # Expect.throws(TypeError) fails: Did not throw +conditional_import_string_test: RuntimeError # Unsupported operation: String.fromEnvironment can only be used as a const constructor +conditional_import_test: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor +constant_string_interpolation2_test: RuntimeError # TypeError: Cannot read property 'Symbol(dartx.toString)' of null +cyclic_type_test/00: RuntimeError # Expect.equals(expected: , actual: ) fails. +cyclic_type_test/01: RuntimeError # Expect.equals(at index 0: Expected >...>, Found: ) fails. +deferred_closurize_load_library_test: RuntimeError # NoSuchMethodError: method not found: 'then' +enum_duplicate_test/01: RuntimeError # NoSuchMethodError: method not found: '' +enum_duplicate_test/02: RuntimeError # NoSuchMethodError: method not found: '' +enum_duplicate_test/none: RuntimeError # NoSuchMethodError: method not found: '' +enum_mirror_test: RuntimeError # Expect.equals(expected: , actual: ) fails. +enum_private_test/01: RuntimeError # NoSuchMethodError: method not found: '' +enum_private_test/none: RuntimeError # NoSuchMethodError: method not found: '' +enum_test: RuntimeError # NoSuchMethodError: method not found: '' +f_bounded_equality_test: RuntimeError # Expect.equals(expected: , actual: ) fails. +field_override_optimization_test: RuntimeError # Expect.fail('This should also be unreachable') +first_class_types_test: RuntimeError # Expect.equals(expected: , actual: >) fails. +function_subtype_bound_closure1_test: RuntimeError # Expect.isTrue(false, 'foo is Foo') fails. +function_subtype_bound_closure2_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_bound_closure5_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_bound_closure5a_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_bound_closure6_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_bound_closure7_test: RuntimeError # ReferenceError: TTodynamic is not defined +function_subtype_cast0_test: RuntimeError # CastError: Casting value of type '(int) => void' to type '(dynamic) => void' which is incompatible +function_subtype_cast2_test: RuntimeError # ReferenceError: TTovoid is not defined +function_subtype_cast3_test: RuntimeError # ReferenceError: TTovoid is not defined +function_subtype_checked0_test: RuntimeError # Expect.throws(TypeError) fails: Did not throw +function_subtype_closure0_test: RuntimeError # Expect.throws(TypeError) fails: Did not throw +function_subtype_local1_test: RuntimeError # Expect.isTrue(false, 'foo is Foo') fails. +function_subtype_local2_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_local5_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_not0_test: RuntimeError # Expect.isFalse(true) fails. +function_subtype_not2_test: RuntimeError # ReferenceError: TTovoid is not defined +function_subtype_not3_test: RuntimeError # ReferenceError: TTovoid is not defined +function_subtype_simple1_test: RuntimeError # Expect.isTrue(false) fails. +function_subtype_top_level1_test: RuntimeError # ReferenceError: TAndStringToint is not defined +function_subtype_typearg5_test: RuntimeError # ReferenceError: JSArrayOfXAndXToX is not defined +function_type_alias2_test: RuntimeError # Expect.isTrue(false) fails. +function_type_alias3_test: RuntimeError # TypeError: library11.Library111$ is not a function +function_type_alias4_test: RuntimeError # Expect.isTrue(false) fails. +function_type_alias_test: RuntimeError # Expect.isTrue(false) fails. +generic_closure_test/01: RuntimeError # ReferenceError: TToT is not defined +generic_closure_test/none: RuntimeError # ReferenceError: TToT is not defined +generic_list_checked_test: RuntimeError # Expect.throws fails: Did not throw +generic_method_types_test/02: RuntimeError +generic_methods_type_expression_test: RuntimeError # Expect.isTrue(false) fails. +generic_methods_unused_parameter_test: RuntimeError # Expect.isTrue(false) fails. +generic_test: RuntimeError # ReferenceError: BOfT is not defined +library_env_test/has_io_support: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor +library_env_test/has_mirror_support: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor +library_env_test/has_no_html_support: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor +method_override_test: RuntimeError # Expect.isTrue(false) fails. +mixin_bound_test: RuntimeError +mixin_extends_field_test: RuntimeError # Expect.equals(expected: , actual: ) fails. +mixin_field_test: RuntimeError # NoSuchMethodError: method not found: 'bar' +mixin_forwarding_constructor1_test: RuntimeError # Expect.equals(expected: <2>, actual: ) fails. +mixin_forwarding_constructor2_test: RuntimeError # Expect.equals(expected: <2>, actual: ) fails. +mixin_forwarding_constructor3_test: RuntimeError # Expect.equals(expected: <2>, actual: ) fails. +mixin_illegal_super_use_test/none: RuntimeError # TypeError: e.bar is not a function +mixin_is_test: RuntimeError # Expect.isTrue(false) fails. +mixin_method_test: RuntimeError # Expect.equals(expected: , actual: ) fails. +mixin_mixin_type_arguments_test: RuntimeError +mixin_naming_test: RuntimeError # Expect.isTrue(false) fails. +mixin_regress_13688_test: RuntimeError +mixin_type_parameter5_test: RuntimeError +mock_writable_final_field_test: RuntimeError # Expect.listEquals(list length, expected: <1>, actual: <0>) fails: Next element <123> +mock_writable_final_private_field_test: RuntimeError +nested_generic_closure_test: RuntimeError # Expect.equals(at index 3: Expected <...((F) => F) => void>, Found: <...((F) => F) => void...>) fails. +recursive_generic_test: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor +recursive_inheritance_test: RuntimeError # Expect.isTrue(false) fails. +redirecting_factory_long_test: RuntimeError # Expect.isTrue(false) fails. +redirecting_factory_reflection_test: RuntimeError # UnimplementedError: node `invalid-expression` +regress_24283_test: RuntimeError # Expect.equals(expected: <-1>, actual: <4294967295>) fails. +regress_30339_test: RuntimeError # Uncaught Expect.isTrue(false) fails. +runtime_type_function_test: RuntimeError # Expect.fail('Type print string does not match expectation +syncstar_yield_test/copyParameters: RuntimeError # Expect.equals(expected: <2>, actual: <3>) fails. +type_literal_test: RuntimeError # Expect.equals(expected: , actual: <(bool) => int>) fails. +yieldstar_pause_test: Timeout + +# Skip Kernel tests on Windows until bot has been fixed (Issue 31539) +[ $compiler == dartdevk && $system == windows ] +*: Skip + +# Compiler tests for dartdevc and dartdevk. These contain common expectations +# for all runtimes including $runtime == none. They are organized by: shared +# expectations for dartdevc and dartdevk, then expectations for dartdevc, and +# then expectations for dartdevk. +[ $runtime == none && ($compiler == dartdevc || $compiler == dartdevk) ] +closure_call_wrong_argument_count_negative_test: Fail +unhandled_exception_negative_test: Fail + # Runtime tests for dartdevc and dartdevk. These contain expectations for tests # that fail at run time, so they should not include $runtime == none which # cannot fail at run time. They are organized by: shared expectations for # dartdevc and dartdevk, then expectations for dartdevc, and then expectations # for dartdevk. -[ ($compiler == dartdevc || $compiler == dartdevk) && $runtime != none ] +[ $runtime != none && ($compiler == dartdevc || $compiler == dartdevk) ] assertion_test: RuntimeError # Issue 30326; Expect.equals(expected: <1>, actual: <0>) fails. async_star_cancel_while_paused_test: RuntimeError # Issue 29920; Uncaught Expect.listEquals(list length, expected: <4>, actual: <3>) fails: Next element <*3> async_star_pause_test: RuntimeError # Uncaught Expect.listEquals(at index 2, expected: <0+>, actual: <0!>) fails @@ -900,132 +938,94 @@ switch_label_test: RuntimeError # Issue 29920; UnimplementedError: node see https://github.com/dart-lang/sdk/issues/29352 `continue #L1; truncdiv_test: RuntimeError # Issue 29920; Expect.throws fails: Did not throw -[ $compiler == dartdevc && $runtime != none ] -async_star_test/01: RuntimeError -async_star_test/03: RuntimeError -async_star_test/04: RuntimeError -async_star_test/05: RuntimeError -async_star_test/none: RuntimeError -await_future_test: Pass, Timeout # Issue 29920 -bit_operations_test: RuntimeError # No bigints on web. -const_evaluation_test/01: RuntimeError # Issue 29920 -covariance_field_test/03: RuntimeError -covariant_override/tear_off_type_test: RuntimeError # Issue 28395 -deferred_load_library_wrong_args_test/01: MissingRuntimeError, RuntimeError # Issue 29920 -execute_finally6_test: RuntimeError # Issue 29920 -expect_test: RuntimeError # Issue 29920 -f_bounded_quantification3_test: RuntimeError # Issue 29920 -final_field_initialization_order_test: RuntimeError # Issue 31058 -first_class_types_test: RuntimeError, OK # Strong mode reifies inferred type argument. -fuzzy_arrows_test/03: RuntimeError # Issue 29630 -generic_method_types_test/02: RuntimeError -getter_closure_execution_order_test: RuntimeError # Issue 29920 -implicit_downcast_during_compound_assignment_test: RuntimeError -implicit_downcast_during_indexed_compound_assignment_test: RuntimeError -implicit_downcast_during_indexed_if_null_assignment_test: RuntimeError -label_test: RuntimeError -lazy_static3_test: RuntimeError # Issue 30852 -lazy_static8_test: RuntimeError # Issue 30852 -left_shift_test: RuntimeError # Ints and doubles are unified. -library_env_test/has_io_support: RuntimeError, OK -library_env_test/has_mirror_support: RuntimeError, OK -library_env_test/has_no_html_support: RuntimeError, OK -list_is_test: RuntimeError # Issue 29920 -mixin_super_test: RuntimeError -mixin_super_use_test: RuntimeError -multiline_newline_test/03: RuntimeError -multiline_newline_test/03r: RuntimeError -multiline_newline_test/none: RuntimeError -regress_24283_test: RuntimeError, OK # Requires 64 bit numbers. -regress_29784_test/02: Crash # assert initializers not implemented -stacktrace_test: RuntimeError # Issue 29920 -super_call4_test: RuntimeError -super_no_such_method1_test: RuntimeError -super_no_such_method2_test: RuntimeError -super_no_such_method3_test: RuntimeError -super_no_such_method4_test: RuntimeError -super_operator_index5_test: RuntimeError -super_operator_index7_test: RuntimeError -super_operator_index8_test: RuntimeError -truncdiv_test: RuntimeError # Issue 29920 -yieldstar_pause_test: Skip # Times out +[ $compiler == dartdevc || $compiler == dartdevk ] +abstract_override_adds_optional_args_concrete_subclass_test: MissingCompileTimeError # Issue #30568 +abstract_override_adds_optional_args_concrete_test: MissingCompileTimeError # Issue #30568 +abstract_override_adds_optional_args_supercall_test: MissingCompileTimeError # Issue #30568 +async_return_types_test/nestedFuture: MissingCompileTimeError +bit_operations_test/01: MissingCompileTimeError +bit_operations_test/02: MissingCompileTimeError +built_in_identifier_prefix_test: CompileTimeError +config_import_corelib_test: CompileTimeError +field3_test/01: MissingCompileTimeError +generic_function_type_as_type_argument_test/01: MissingCompileTimeError # Issue 29920 +generic_function_type_as_type_argument_test/02: MissingCompileTimeError # Issue 29920 +generic_list_checked_test: CompileTimeError +generic_methods_overriding_test/01: MissingCompileTimeError # Issue 29920 +generic_methods_overriding_test/03: MissingCompileTimeError # Issue 29920 +generic_tearoff_test: CompileTimeError +int64_literal_test/*: Skip # This is testing Dart 2.0 int64 semantics. +internal_library_test/02: Crash +method_override7_test/03: MissingCompileTimeError # Issue 30514 +multiline_newline_test/04: MissingCompileTimeError +multiline_newline_test/04r: MissingCompileTimeError +multiline_newline_test/05: MissingCompileTimeError +multiline_newline_test/05r: MissingCompileTimeError +override_field_test/03: MissingCompileTimeError +override_inheritance_abstract_test/02: MissingCompileTimeError +override_inheritance_abstract_test/03: MissingCompileTimeError +override_inheritance_abstract_test/04: MissingCompileTimeError +override_inheritance_abstract_test/08: MissingCompileTimeError +override_inheritance_abstract_test/09: MissingCompileTimeError +override_inheritance_abstract_test/10: MissingCompileTimeError +override_inheritance_abstract_test/11: MissingCompileTimeError +override_inheritance_abstract_test/12: MissingCompileTimeError +override_inheritance_abstract_test/13: MissingCompileTimeError +override_inheritance_abstract_test/14: MissingCompileTimeError +override_inheritance_abstract_test/17: MissingCompileTimeError +override_inheritance_abstract_test/19: MissingCompileTimeError +override_inheritance_abstract_test/20: MissingCompileTimeError +override_inheritance_abstract_test/21: MissingCompileTimeError +override_inheritance_abstract_test/22: MissingCompileTimeError +override_inheritance_abstract_test/23: MissingCompileTimeError +override_inheritance_abstract_test/24: MissingCompileTimeError +override_inheritance_abstract_test/25: MissingCompileTimeError +override_inheritance_abstract_test/26: MissingCompileTimeError +override_inheritance_no_such_method_test/13: MissingCompileTimeError +parser_quirks_test: CompileTimeError +regress_27617_test/1: MissingCompileTimeError +vm/*: SkipByDesign # VM only tests.; VM only tests. +void_type_function_types_test/none: CompileTimeError # Issue 30514 +void_type_override_test/none: CompileTimeError # Issue 30514 +void_type_usage_test/call_as: CompileTimeError # Issue 30514 +void_type_usage_test/call_for: CompileTimeError # Issue 30514 +void_type_usage_test/call_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/field_assign: CompileTimeError # Issue 30514 +void_type_usage_test/field_assign2: CompileTimeError # Issue 30514 +void_type_usage_test/final_local_as: CompileTimeError # Issue 30514 +void_type_usage_test/final_local_for: CompileTimeError # Issue 30514 +void_type_usage_test/final_local_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/global_as: CompileTimeError # Issue 30514 +void_type_usage_test/global_for: CompileTimeError # Issue 30514 +void_type_usage_test/global_for_in2: CompileTimeError # Issue 30514 +void_type_usage_test/global_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/instance2_as: CompileTimeError # Issue 30514 +void_type_usage_test/instance2_for: CompileTimeError # Issue 30514 +void_type_usage_test/instance2_for_in3: CompileTimeError # Issue 30514 +void_type_usage_test/instance2_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/instance3_as: CompileTimeError # Issue 30514 +void_type_usage_test/instance3_for: CompileTimeError # Issue 30514 +void_type_usage_test/instance3_for_in3: CompileTimeError # Issue 30514 +void_type_usage_test/instance3_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/instance_as: CompileTimeError # Issue 30514 +void_type_usage_test/instance_for: CompileTimeError # Issue 30514 +void_type_usage_test/instance_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/local_as: CompileTimeError # Issue 30514 +void_type_usage_test/local_assign: CompileTimeError # Issue 30514 +void_type_usage_test/local_for: CompileTimeError # Issue 30514 +void_type_usage_test/local_for_in2: CompileTimeError # Issue 30514 +void_type_usage_test/local_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/none: CompileTimeError # Issue 30514 +void_type_usage_test/param_as: CompileTimeError # Issue 30514 +void_type_usage_test/param_for: CompileTimeError # Issue 30514 +void_type_usage_test/param_for_in2: CompileTimeError # Issue 30514 +void_type_usage_test/param_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/paren_as: CompileTimeError # Issue 30514 +void_type_usage_test/paren_for: CompileTimeError # Issue 30514 +void_type_usage_test/paren_stmt: CompileTimeError # Issue 30514 +void_type_usage_test/setter_assign: CompileTimeError # Issue 30514 + +[ $compiler == dartdevk || $compiler == dartdevc && $runtime == none ] +instantiate_type_variable_test/01: CompileTimeError +setter_no_getter_call_test/01: CompileTimeError -[ $compiler == dartdevk && $runtime != none ] -callable_test/none: RuntimeError # Expect.throws(TypeError) fails: Did not throw -conditional_import_string_test: RuntimeError # Unsupported operation: String.fromEnvironment can only be used as a const constructor -conditional_import_test: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor -constant_string_interpolation2_test: RuntimeError # TypeError: Cannot read property 'Symbol(dartx.toString)' of null -cyclic_type_test/00: RuntimeError # Expect.equals(expected: , actual: ) fails. -cyclic_type_test/01: RuntimeError # Expect.equals(at index 0: Expected >...>, Found: ) fails. -deferred_closurize_load_library_test: RuntimeError # NoSuchMethodError: method not found: 'then' -enum_duplicate_test/01: RuntimeError # NoSuchMethodError: method not found: '' -enum_duplicate_test/02: RuntimeError # NoSuchMethodError: method not found: '' -enum_duplicate_test/none: RuntimeError # NoSuchMethodError: method not found: '' -enum_mirror_test: RuntimeError # Expect.equals(expected: , actual: ) fails. -enum_private_test/01: RuntimeError # NoSuchMethodError: method not found: '' -enum_private_test/none: RuntimeError # NoSuchMethodError: method not found: '' -enum_test: RuntimeError # NoSuchMethodError: method not found: '' -f_bounded_equality_test: RuntimeError # Expect.equals(expected: , actual: ) fails. -field_override_optimization_test: RuntimeError # Expect.fail('This should also be unreachable') -first_class_types_test: RuntimeError # Expect.equals(expected: , actual: >) fails. -function_subtype_bound_closure1_test: RuntimeError # Expect.isTrue(false, 'foo is Foo') fails. -function_subtype_bound_closure2_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_bound_closure5_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_bound_closure5a_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_bound_closure6_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_bound_closure7_test: RuntimeError # ReferenceError: TTodynamic is not defined -function_subtype_cast0_test: RuntimeError # CastError: Casting value of type '(int) => void' to type '(dynamic) => void' which is incompatible -function_subtype_cast2_test: RuntimeError # ReferenceError: TTovoid is not defined -function_subtype_cast3_test: RuntimeError # ReferenceError: TTovoid is not defined -function_subtype_checked0_test: RuntimeError # Expect.throws(TypeError) fails: Did not throw -function_subtype_closure0_test: RuntimeError # Expect.throws(TypeError) fails: Did not throw -function_subtype_local1_test: RuntimeError # Expect.isTrue(false, 'foo is Foo') fails. -function_subtype_local2_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_local5_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_not0_test: RuntimeError # Expect.isFalse(true) fails. -function_subtype_not2_test: RuntimeError # ReferenceError: TTovoid is not defined -function_subtype_not3_test: RuntimeError # ReferenceError: TTovoid is not defined -function_subtype_simple1_test: RuntimeError # Expect.isTrue(false) fails. -function_subtype_top_level1_test: RuntimeError # ReferenceError: TAndStringToint is not defined -function_subtype_typearg5_test: RuntimeError # ReferenceError: JSArrayOfXAndXToX is not defined -function_type_alias2_test: RuntimeError # Expect.isTrue(false) fails. -function_type_alias3_test: RuntimeError # TypeError: library11.Library111$ is not a function -function_type_alias4_test: RuntimeError # Expect.isTrue(false) fails. -function_type_alias_test: RuntimeError # Expect.isTrue(false) fails. -generic_closure_test/01: RuntimeError # ReferenceError: TToT is not defined -generic_closure_test/none: RuntimeError # ReferenceError: TToT is not defined -generic_list_checked_test: RuntimeError # Expect.throws fails: Did not throw -generic_method_types_test/02: RuntimeError -generic_methods_type_expression_test: RuntimeError # Expect.isTrue(false) fails. -generic_methods_unused_parameter_test: RuntimeError # Expect.isTrue(false) fails. -generic_test: RuntimeError # ReferenceError: BOfT is not defined -library_env_test/has_io_support: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor -library_env_test/has_mirror_support: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor -library_env_test/has_no_html_support: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor -method_override_test: RuntimeError # Expect.isTrue(false) fails. -mixin_bound_test: RuntimeError -mixin_extends_field_test: RuntimeError # Expect.equals(expected: , actual: ) fails. -mixin_field_test: RuntimeError # NoSuchMethodError: method not found: 'bar' -mixin_forwarding_constructor1_test: RuntimeError # Expect.equals(expected: <2>, actual: ) fails. -mixin_forwarding_constructor2_test: RuntimeError # Expect.equals(expected: <2>, actual: ) fails. -mixin_forwarding_constructor3_test: RuntimeError # Expect.equals(expected: <2>, actual: ) fails. -mixin_illegal_super_use_test/none: RuntimeError # TypeError: e.bar is not a function -mixin_is_test: RuntimeError # Expect.isTrue(false) fails. -mixin_method_test: RuntimeError # Expect.equals(expected: , actual: ) fails. -mixin_mixin_type_arguments_test: RuntimeError -mixin_naming_test: RuntimeError # Expect.isTrue(false) fails. -mixin_regress_13688_test: RuntimeError -mixin_type_parameter5_test: RuntimeError -mock_writable_final_field_test: RuntimeError # Expect.listEquals(list length, expected: <1>, actual: <0>) fails: Next element <123> -mock_writable_final_private_field_test: RuntimeError -nested_generic_closure_test: RuntimeError # Expect.equals(at index 3: Expected <...((F) => F) => void>, Found: <...((F) => F) => void...>) fails. -recursive_generic_test: RuntimeError # Unsupported operation: bool.fromEnvironment can only be used as a const constructor -recursive_inheritance_test: RuntimeError # Expect.isTrue(false) fails. -redirecting_factory_long_test: RuntimeError # Expect.isTrue(false) fails. -redirecting_factory_reflection_test: RuntimeError # UnimplementedError: node `invalid-expression` -regress_24283_test: RuntimeError # Expect.equals(expected: <-1>, actual: <4294967295>) fails. -regress_30339_test: RuntimeError # Uncaught Expect.isTrue(false) fails. -runtime_type_function_test: RuntimeError # Expect.fail('Type print string does not match expectation -syncstar_yield_test/copyParameters: RuntimeError # Expect.equals(expected: <2>, actual: <3>) fails. -type_literal_test: RuntimeError # Expect.equals(expected: , actual: <(bool) => int>) fails. -yieldstar_pause_test: Timeout diff --git a/tests/language_2/language_2_flutter.status b/tests/language_2/language_2_flutter.status index 051ef482eb0..70037b488dd 100644 --- a/tests/language_2/language_2_flutter.status +++ b/tests/language_2/language_2_flutter.status @@ -1,12 +1,9 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$runtime == flutter". - # What tests does this comment apply to? Please add it to each test's line # or file an issue an put it there, and add the issue to the relevant tests: - # flutter uses --error_on_bad_type, --error_on_bad_override # and --await_is_keyword so the following tests fail with a Compilation Error @@ -15,6 +12,7 @@ async_await_syntax_test/a05c: CompileTimeError async_await_syntax_test/a05e: CompileTimeError async_await_syntax_test/d08c: CompileTimeError async_await_test: CompileTimeError +asyncstar_yield_test: Skip # Flutter Issue 9110 await_backwards_compatibility_test/none: CompileTimeError await_for_cancel_test: Skip # Flutter Issue 9110 await_for_test: Skip # Flutter Issue 9110 @@ -24,6 +22,8 @@ call_constructor_on_unresolvable_class_test/01: CompileTimeError call_constructor_on_unresolvable_class_test/02: CompileTimeError call_constructor_on_unresolvable_class_test/03: CompileTimeError call_constructor_on_unresolvable_class_test/07: CompileTimeError +check_method_override_test/01: CompileTimeError +check_method_override_test/02: CompileTimeError class_keyword_test/02: CompileTimeError, MissingCompileTimeError # Issue 13627 class_override_test/00: CompileTimeError conditional_import_string_test: CompileTimeError @@ -83,13 +83,14 @@ factory4_test: CompileTimeError factory6_test/00: CompileTimeError field_increment_bailout_test: CompileTimeError field_override_test/01: CompileTimeError +function_malformed_result_type_test: CompileTimeError generalized_void_syntax_test: CompileTimeError # Issue #30176 generic_function_typedef2_test/04: CompileTimeError instance_creation_in_function_annotation_test: CompileTimeError internal_library_test/01: CompileTimeError internal_library_test/01: MissingCompileTimeError -internal_library_test/02: CompileTimeError internal_library_test/02: MissingCompileTimeError +internal_library_test/02: CompileTimeError invocation_mirror2_test: CompileTimeError invocation_mirror_invoke_on2_test: CompileTimeError invocation_mirror_invoke_on_test: CompileTimeError @@ -102,7 +103,7 @@ is_malformed_type_test/99: CompileTimeError is_not_class2_test: RuntimeError issue21079_test: CompileTimeError issue_25671b_test/01: CompileTimeError -library_env_test/has_mirror_support: RuntimeError, Ok +library_env_test/has_mirror_support: RuntimeError, OK library_env_test/has_no_mirror_support: Pass list_literal_syntax_test/01: CompileTimeError list_literal_syntax_test/02: CompileTimeError @@ -227,13 +228,10 @@ vm/regress_27201_test: Fail # Flutter Issue 9110 wrong_number_type_arguments_test/00: CompileTimeError wrong_number_type_arguments_test/01: CompileTimeError wrong_number_type_arguments_test/02: CompileTimeError -check_method_override_test/01: CompileTimeError -check_method_override_test/02: CompileTimeError -function_malformed_result_type_test: CompileTimeError -asyncstar_yield_test: Skip # Flutter Issue 9110 -[ $runtime == flutter && $compiler == none && $checked ] +[ $arch == arm64 && $runtime == flutter ] +large_class_declaration_test: SkipSlow # Uses too much memory. + +[ $compiler == none && $runtime == flutter && $checked ] assert_initializer_test/4*: MissingCompileTimeError # Issue 392. The VM doesn't enforce that potentially const expressions are actually const expressions when the constructor is called with `const`. -[ $runtime == flutter && $arch == arm64 ] -large_class_declaration_test: SkipSlow # Uses too much memory. diff --git a/tests/language_2/language_2_kernel.status b/tests/language_2/language_2_kernel.status index 08bcbcafd86..ef2af34fcfd 100644 --- a/tests/language_2/language_2_kernel.status +++ b/tests/language_2/language_2_kernel.status @@ -1,7 +1,6 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$compiler == dartk" or # "$compiler == dartkp". # @@ -10,14 +9,147 @@ # in the existing sections, if possible keep the alphabetic ordering. If we are # missing a section you need, please reach out to sigmund@ to see the best way # to add them. - # ===== Skip dartk and darkp in !$strong mode ==== -[ $compiler == dartk && !$strong] -*: SkipByDesign # language_2 is only supported in strong mode. +[ $compiler == dartkp ] +bit_operations_test: CompileTimeError # Issue 31339 +generic_no_such_method_dispatcher_test: RuntimeError # Issue 31424 +identical_closure2_test: CompileTimeError # Issue 31339 +mint_arithmetic_test: CompileTimeError # Issue 31339 +mock_writable_final_field_test: RuntimeError # Issue 31424 +no_such_method_subtype_test: RuntimeError # Issue 31424 +vm/unaligned_integer_access_literal_index_test: CompileTimeError # Issue 31339 +vm/unaligned_integer_access_register_index_test: CompileTimeError # Issue 31339 -[ $compiler == dartkp && !$strong] -*: SkipByDesign # language_2 is only supported in strong mode. +[ $compiler == dartk && $mode == debug && $runtime == vm && $strong ] +const_instance_field_test/01: Crash +cyclic_type_variable_test/01: Crash +cyclic_type_variable_test/02: Crash +cyclic_type_variable_test/03: Crash +cyclic_type_variable_test/04: Crash +cyclic_type_variable_test/none: Crash +deopt_inlined_function_lazy_test: Skip +flatten_test/04: Crash # Issue #31381 +tearoff_dynamic_test: Crash + +[ $compiler == dartk && $mode == product && $runtime == vm ] +deferred_load_constants_test/02: Fail +deferred_load_constants_test/03: Fail +deferred_load_constants_test/05: Fail +deferred_not_loaded_check_test: RuntimeError +vm/causal_async_exception_stack2_test: SkipByDesign +vm/causal_async_exception_stack_test: SkipByDesign +vm/regress_27201_test: Fail +vm/type_vm_test/28: MissingRuntimeError +vm/type_vm_test/29: MissingRuntimeError +vm/type_vm_test/30: MissingRuntimeError +vm/type_vm_test/31: MissingRuntimeError +vm/type_vm_test/32: MissingRuntimeError +vm/type_vm_test/33: MissingRuntimeError +vm/type_vm_test/34: MissingRuntimeError +vm/type_vm_test/35: MissingRuntimeError +vm/type_vm_test/36: MissingRuntimeError + +[ $compiler == dartk && $runtime == vm && $checked && $strong ] +assert_initializer_test/31: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/32: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/33: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/34: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/35: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/36: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/37: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/38: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/41: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/42: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/43: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/44: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/45: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/46: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/47: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/48: MissingCompileTimeError # KernelVM bug: Constant evaluation. +assert_initializer_test/none: RuntimeError # KernelVM bug: Constant evaluation. +assertion_initializer_const_function_test/01: RuntimeError +assign_static_type_test/02: MissingCompileTimeError +async_await_test/02: RuntimeError +async_await_test/03: RuntimeError +async_await_test/none: RuntimeError +async_return_types_test/nestedFuture: Fail +async_return_types_test/wrongTypeParameter: Fail +async_star_regression_2238_test: RuntimeError +async_star_test/01: RuntimeError +async_star_test/03: RuntimeError +async_star_test/04: RuntimeError +async_star_test/05: RuntimeError +async_star_test/none: RuntimeError +compile_time_constant_checked_test/02: MissingCompileTimeError +const_constructor2_test/20: MissingCompileTimeError +const_constructor2_test/22: MissingCompileTimeError +const_constructor2_test/24: MissingCompileTimeError +const_init2_test/02: MissingCompileTimeError +default_factory2_test/01: Fail +factory_redirection_test/08: Fail +factory_redirection_test/09: Fail +factory_redirection_test/10: Fail +factory_redirection_test/12: Fail +factory_redirection_test/13: Fail +factory_redirection_test/14: Fail +if_null_precedence_test/none: Pass +known_identifier_usage_error_test/none: RuntimeError # Issue 28814 +list_literal1_test/01: MissingCompileTimeError +malbounded_redirecting_factory_test/03: Fail +malbounded_redirecting_factory_test/04: Fail +malbounded_type_cast_test: RuntimeError +malbounded_type_test_test/03: Fail +malbounded_type_test_test/04: Fail +malformed2_test/00: RuntimeError +malformed2_test/01: MissingCompileTimeError +map_literal1_test/01: MissingCompileTimeError +mixin_invalid_bound2_test/08: Fail +mixin_invalid_bound2_test/09: Fail +mixin_invalid_bound2_test/10: Fail +mixin_invalid_bound_test/06: Fail +mixin_invalid_bound_test/07: Fail +recursive_mixin_test: Crash +redirecting_factory_infinite_steps_test/01: Fail +redirecting_factory_malbounded_test/01: Fail +regress_22728_test: Fail # Dartk Issue 28498 +regress_22728_test: RuntimeError +regress_26133_test: RuntimeError +regress_30339_test: RuntimeError +setter_override_test/01: MissingCompileTimeError +setter_override_test/02: MissingCompileTimeError +type_parameter_test/05: MissingCompileTimeError +type_parameter_test/none: RuntimeError +type_variable_bounds4_test/01: RuntimeError + +[ $compiler == dartk && $runtime == vm && !$checked && $strong ] +bool_check_test: RuntimeError +bool_condition_check_test: RuntimeError +callable_test/none: RuntimeError +checked_setter2_test: RuntimeError +checked_setter_test: RuntimeError +covariance_field_test/01: RuntimeError +covariance_field_test/02: RuntimeError +covariance_field_test/03: RuntimeError +covariance_field_test/04: RuntimeError +covariance_field_test/05: RuntimeError +deferred_constraints_type_annotation_test/type_annotation1: Crash # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic1: Crash # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic4: Crash # KernelVM bug: Deferred loading kernel issue 28335. +field_override_optimization_test: RuntimeError +field_type_check2_test/01: MissingRuntimeError +function_subtype_checked0_test: RuntimeError +function_subtype_inline2_test: RuntimeError +function_subtype_setter0_test: RuntimeError +generic_list_checked_test: RuntimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_forwarding_constructor4_test/02: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_forwarding_constructor4_test/03: MissingCompileTimeError # KernelVM bug: Issue 15101 +private_super_constructor_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. +redirecting_factory_default_values_test/01: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +redirecting_factory_default_values_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +redirecting_factory_long_test: RuntimeError # Fasta bug: Bad compilation of type arguments for redirecting factory. +regress_20394_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. # ===== dartk + vm status lines ===== [ $compiler == dartk && $runtime == vm && $strong ] @@ -191,8 +323,8 @@ const_locals_test: RuntimeError const_map2_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. const_map3_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. const_map4_test: RuntimeError -const_native_factory_test/01: MissingCompileTimeError # Fasta bug: Issue 29763 const_native_factory_test: MissingCompileTimeError +const_native_factory_test/01: MissingCompileTimeError # Fasta bug: Issue 29763 const_nested_test: RuntimeError # KernelVM bug: Constant evaluation. const_optional_args_test/01: MissingCompileTimeError # Fasta bug: Default parameter values must be const. const_redirecting_factory_test: CompileTimeError # Issue 31402 (Field declaration) @@ -217,9 +349,9 @@ constructor3_test: Fail, OK, Pass constructor_duplicate_final_test/01: MissingCompileTimeError constructor_duplicate_final_test/02: MissingCompileTimeError constructor_named_arguments_test/01: MissingCompileTimeError +constructor_redirect1_negative_test: MissingCompileTimeError constructor_redirect1_negative_test/01: MissingCompileTimeError constructor_redirect1_negative_test/none: MissingCompileTimeError -constructor_redirect1_negative_test: MissingCompileTimeError constructor_redirect2_negative_test: MissingCompileTimeError constructor_redirect2_test/01: MissingCompileTimeError # Fasta bug: Body on redirecting constructor. constructor_redirect_test/01: MissingCompileTimeError # Fasta bug: Initializer refers to this. @@ -556,8 +688,8 @@ initializing_formal_final_test: MissingCompileTimeError initializing_formal_type_annotation_test/01: MissingCompileTimeError initializing_formal_type_annotation_test/02: MissingCompileTimeError instanceof2_test: RuntimeError -int64_literal_test/03: MissingCompileTimeError # http://dartbug.com/31479 -int64_literal_test/30: MissingCompileTimeError # http://dartbug.com/31479 +int64_literal_test/03: MissingCompileTimeError # http://dartbug.com/31479 +int64_literal_test/30: MissingCompileTimeError # http://dartbug.com/31479 interface_test/00: MissingCompileTimeError invocation_mirror_test: CompileTimeError # Issue 31402 (Invocation arguments) is_malformed_type_test/95: MissingCompileTimeError @@ -1009,7 +1141,7 @@ unresolved_top_level_var_test: MissingCompileTimeError vm/canonicalization_preserves_deopt_test: CompileTimeError # Issue 31402 (Assert statement) vm/causal_async_exception_stack2_test: CompileTimeError # Issue 31402 (Invocation arguments) vm/causal_async_exception_stack_test: CompileTimeError # Issue 31402 (Invocation arguments) -vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM +vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM vm/debug_break_enabled_vm_test/01: CompileTimeError # KernelVM bug: Bad test using extended break syntax. vm/debug_break_enabled_vm_test/none: CompileTimeError # KernelVM bug: Bad test using extended break syntax. vm/optimized_guarded_field_isolates_test: RuntimeError # Issue 31402 (Variable declaration) @@ -1024,8 +1156,8 @@ void_type_override_test/none: CompileTimeError void_type_usage_test/call_as: CompileTimeError void_type_usage_test/call_for: CompileTimeError void_type_usage_test/call_stmt: CompileTimeError -void_type_usage_test/field_assign2: CompileTimeError void_type_usage_test/field_assign: CompileTimeError +void_type_usage_test/field_assign2: CompileTimeError void_type_usage_test/final_local_as: CompileTimeError void_type_usage_test/final_local_for: CompileTimeError void_type_usage_test/final_local_stmt: CompileTimeError @@ -1061,25 +1193,34 @@ void_type_usage_test/setter_assign: CompileTimeError wrong_number_type_arguments_test/*: MissingCompileTimeError wrong_number_type_arguments_test/none: Pass -[ $compiler == dartk && $runtime == vm && $strong && $mode == debug ] +[ $compiler == dartk && !$strong ] +*: SkipByDesign # language_2 is only supported in strong mode. + +[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled && $strong ] +bad_named_parameters_test/01: Crash +bad_named_parameters_test/02: Crash +bad_named_parameters_test/05: Crash const_instance_field_test/01: Crash cyclic_type_variable_test/01: Crash cyclic_type_variable_test/02: Crash cyclic_type_variable_test/03: Crash cyclic_type_variable_test/04: Crash cyclic_type_variable_test/none: Crash -deopt_inlined_function_lazy_test: Skip -flatten_test/04: Crash # Issue #31381 +external_test/13: Crash +final_syntax_test/09: Crash +flatten_test/04: Crash +optional_named_parameters_test/06: Crash +optional_named_parameters_test/08: Crash +regress_29025_test: Crash tearoff_dynamic_test: Crash +type_promotion_functions_test/05: Pass +type_promotion_functions_test/06: Pass +type_promotion_functions_test/07: Pass +type_promotion_functions_test/08: Pass +type_promotion_functions_test/10: Pass +vm/async_await_catch_stacktrace_test: Crash -[ $compiler == dartk && $runtime == vm && $mode == product ] -deferred_load_constants_test/02: Fail -deferred_load_constants_test/03: Fail -deferred_load_constants_test/05: Fail -deferred_not_loaded_check_test: RuntimeError -vm/causal_async_exception_stack2_test: SkipByDesign -vm/causal_async_exception_stack_test: SkipByDesign -vm/regress_27201_test: Fail +[ $compiler == dartkp && $mode == product && $runtime == dart_precompiled && $strong ] vm/type_vm_test/28: MissingRuntimeError vm/type_vm_test/29: MissingRuntimeError vm/type_vm_test/30: MissingRuntimeError @@ -1090,36 +1231,7 @@ vm/type_vm_test/34: MissingRuntimeError vm/type_vm_test/35: MissingRuntimeError vm/type_vm_test/36: MissingRuntimeError -[ $compiler == dartk && $runtime == vm && $strong && !$checked ] -bool_check_test: RuntimeError -bool_condition_check_test: RuntimeError -callable_test/none: RuntimeError -checked_setter2_test: RuntimeError -checked_setter_test: RuntimeError -covariance_field_test/01: RuntimeError -covariance_field_test/02: RuntimeError -covariance_field_test/03: RuntimeError -covariance_field_test/04: RuntimeError -covariance_field_test/05: RuntimeError -deferred_constraints_type_annotation_test/type_annotation1: Crash # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic1: Crash # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic4: Crash # KernelVM bug: Deferred loading kernel issue 28335. -field_override_optimization_test: RuntimeError -field_type_check2_test/01: MissingRuntimeError -function_subtype_checked0_test: RuntimeError -function_subtype_inline2_test: RuntimeError -function_subtype_setter0_test: RuntimeError -generic_list_checked_test: RuntimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_forwarding_constructor4_test/02: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_forwarding_constructor4_test/03: MissingCompileTimeError # KernelVM bug: Issue 15101 -private_super_constructor_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. -redirecting_factory_default_values_test/01: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. -redirecting_factory_default_values_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. -redirecting_factory_long_test: RuntimeError # Fasta bug: Bad compilation of type arguments for redirecting factory. -regress_20394_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. - -[ $compiler == dartk && $runtime == vm && $strong && $checked ] +[ $compiler == dartkp && $runtime == dart_precompiled && $checked && $strong ] assert_initializer_test/31: MissingCompileTimeError # KernelVM bug: Constant evaluation. assert_initializer_test/32: MissingCompileTimeError # KernelVM bug: Constant evaluation. assert_initializer_test/33: MissingCompileTimeError # KernelVM bug: Constant evaluation. @@ -1137,17 +1249,12 @@ assert_initializer_test/46: MissingCompileTimeError # KernelVM bug: Constant eva assert_initializer_test/47: MissingCompileTimeError # KernelVM bug: Constant evaluation. assert_initializer_test/48: MissingCompileTimeError # KernelVM bug: Constant evaluation. assert_initializer_test/none: RuntimeError # KernelVM bug: Constant evaluation. -assertion_initializer_const_function_test/01: RuntimeError +assertion_initializer_const_error2_test/cc02: Crash +assertion_initializer_const_error_test/none: Crash +assertion_initializer_const_function_test/01: Crash +assertion_initializer_const_function_test/none: Crash assign_static_type_test/02: MissingCompileTimeError -async_await_test/none: RuntimeError -async_await_test/02: RuntimeError -async_await_test/03: RuntimeError -async_star_regression_2238_test: RuntimeError -async_star_test/01: RuntimeError -async_star_test/03: RuntimeError -async_star_test/04: RuntimeError -async_star_test/05: RuntimeError -async_star_test/none: RuntimeError +async_await_test: RuntimeError async_return_types_test/nestedFuture: Fail async_return_types_test/wrongTypeParameter: Fail compile_time_constant_checked_test/02: MissingCompileTimeError @@ -1162,8 +1269,20 @@ factory_redirection_test/10: Fail factory_redirection_test/12: Fail factory_redirection_test/13: Fail factory_redirection_test/14: Fail -if_null_precedence_test/none: Pass -known_identifier_usage_error_test/none: RuntimeError # Issue 28814 +function_subtype_checked0_test: Pass +function_subtype_closure0_test: Pass +function_subtype_closure1_test: Pass +function_subtype_factory1_test: Pass +function_subtype_inline1_test: Pass +function_subtype_inline2_test: Pass +function_subtype_setter0_test: Pass +function_type2_test: RuntimeError +generic_functions_test: Pass # Issue 25869 +generic_local_functions_test: Pass # Issue 25869 +generic_methods_function_type_test: Pass # Issue 25869 +generic_methods_generic_function_parameter_test: Pass # Issue 25869 +generic_methods_new_test: Pass # Issue 25869 +generic_methods_test: Pass # Issue 25869 list_literal1_test/01: MissingCompileTimeError malbounded_redirecting_factory_test/03: Fail malbounded_redirecting_factory_test/04: Fail @@ -1178,19 +1297,63 @@ mixin_invalid_bound2_test/09: Fail mixin_invalid_bound2_test/10: Fail mixin_invalid_bound_test/06: Fail mixin_invalid_bound_test/07: Fail -recursive_mixin_test: Crash redirecting_factory_infinite_steps_test/01: Fail redirecting_factory_malbounded_test/01: Fail regress_22728_test: Fail # Dartk Issue 28498 regress_22728_test: RuntimeError regress_26133_test: RuntimeError -regress_30339_test: RuntimeError +regress_30339_test: Crash setter_override_test/01: MissingCompileTimeError setter_override_test/02: MissingCompileTimeError type_parameter_test/05: MissingCompileTimeError type_parameter_test/none: RuntimeError type_variable_bounds4_test/01: RuntimeError +[ $compiler == dartkp && $runtime == dart_precompiled && !$checked && $strong ] +assertion_initializer_const_error_test/01: MissingCompileTimeError +assertion_initializer_const_function_error_test/01: MissingCompileTimeError +callable_test/none: RuntimeError +checked_setter2_test: RuntimeError +checked_setter_test: RuntimeError +covariance_field_test/01: RuntimeError +covariance_field_test/02: RuntimeError +covariance_field_test/03: RuntimeError +covariance_field_test/04: RuntimeError +covariance_field_test/05: RuntimeError +deferred_constraints_type_annotation_test/type_annotation1: Crash # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic1: Crash # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_type_annotation_test/type_annotation_generic4: Crash # KernelVM bug: Deferred loading kernel issue 28335. +implicit_downcast_during_assignment_test: RuntimeError +implicit_downcast_during_combiner_test: RuntimeError +implicit_downcast_during_compound_assignment_test: RuntimeError +implicit_downcast_during_conditional_expression_test: RuntimeError +implicit_downcast_during_do_test: RuntimeError +implicit_downcast_during_for_condition_test: RuntimeError +implicit_downcast_during_for_initializer_expression_test: RuntimeError +implicit_downcast_during_for_initializer_var_test: RuntimeError +implicit_downcast_during_if_null_assignment_test: RuntimeError +implicit_downcast_during_if_statement_test: RuntimeError +implicit_downcast_during_list_literal_test: RuntimeError +implicit_downcast_during_logical_expression_test: RuntimeError +implicit_downcast_during_map_literal_test: RuntimeError +implicit_downcast_during_not_test: RuntimeError +implicit_downcast_during_return_async_test: RuntimeError +implicit_downcast_during_return_test: RuntimeError +implicit_downcast_during_variable_declaration_test: RuntimeError +implicit_downcast_during_while_statement_test: RuntimeError +implicit_downcast_during_yield_star_test: RuntimeError +implicit_downcast_during_yield_test: RuntimeError +mixin_forwarding_constructor4_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_forwarding_constructor4_test/02: MissingCompileTimeError # KernelVM bug: Issue 15101 +mixin_forwarding_constructor4_test/03: MissingCompileTimeError # KernelVM bug: Issue 15101 +private_super_constructor_test/01: MissingCompileTimeError +redirecting_factory_default_values_test/01: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +redirecting_factory_default_values_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. +redirecting_factory_long_test: RuntimeError # Fasta bug: Bad compilation of type arguments for redirecting factory. +regress_20394_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. +regress_30339_test: RuntimeError +vm/causal_async_exception_stack_test: RuntimeError + # ==== dartkp + dart_precompiled status lines ==== [ $compiler == dartkp && $runtime == dart_precompiled && $strong ] abstract_beats_arguments_test: MissingCompileTimeError @@ -1230,14 +1393,13 @@ async_return_types_test/wrongReturnType: MissingCompileTimeError async_star_cancel_while_paused_test: RuntimeError async_star_pause_test: Fail, OK async_star_regression_2238_test: RuntimeError -async_star_regression_2238_test: RuntimeError async_star_regression_23116_test: RuntimeError async_star_regression_fisk_test: RuntimeError async_star_test/01: CompileTimeError # Issue 2238. async_star_test/01: Crash async_star_test/01: Pass -async_star_test/02: CompileTimeError # Issue 31402 (Invocation arguments) async_star_test/02: RuntimeError +async_star_test/02: CompileTimeError # Issue 31402 (Invocation arguments) async_star_test/03: CompileTimeError # Issue 31402 (Invocation arguments) async_star_test/04: CompileTimeError # Issue 31402 (Invocation arguments) async_star_test/05: CompileTimeError # Issue 31402 (Invocation arguments) @@ -1308,8 +1470,8 @@ checked_setter3_test/02: MissingCompileTimeError checked_setter3_test/03: MissingCompileTimeError class_cycle_test/02: MissingCompileTimeError class_cycle_test/03: MissingCompileTimeError -class_keyword_test/02: MissingCompileTimeError # Issue 13627 class_keyword_test/02: Pass +class_keyword_test/02: MissingCompileTimeError # Issue 13627 class_literal_static_test/12: MissingCompileTimeError class_literal_static_test/13: MissingCompileTimeError class_literal_static_test/17: MissingCompileTimeError @@ -1373,8 +1535,8 @@ const_list_test: RuntimeError const_map2_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. const_map3_test/00: MissingCompileTimeError # KernelVM bug: Constant evaluation. const_map4_test: RuntimeError -const_native_factory_test/01: MissingCompileTimeError # Fasta bug: Issue 29763 const_native_factory_test: MissingCompileTimeError +const_native_factory_test/01: MissingCompileTimeError # Fasta bug: Issue 29763 const_nested_test: RuntimeError # KernelVM bug: Constant evaluation. const_optional_args_test/01: MissingCompileTimeError # Fasta bug: Default parameter values must be const. const_redirecting_factory_test: CompileTimeError # Issue 31402 (Field declaration) @@ -1418,17 +1580,17 @@ cyclic_type_variable_test/02: MissingCompileTimeError cyclic_type_variable_test/03: MissingCompileTimeError cyclic_type_variable_test/04: MissingCompileTimeError cyclic_typedef_test/13: MissingCompileTimeError -deep_nesting1_negative_test: Skip # Issue 31158 -deep_nesting2_negative_test: Skip # Issue 31158 +deep_nesting1_negative_test: Skip # Issue 31158 +deep_nesting2_negative_test: Skip # Issue 31158 default_factory2_test/01: MissingCompileTimeError default_factory_test/01: MissingCompileTimeError deferred_call_empty_before_load_test: RuntimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. deferred_closurize_load_library_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. deferred_constant_list_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. +deferred_constraints_constants_test: SkipByDesign deferred_constraints_constants_test/default_argument2: Pass # Passes by mistake. KernelVM bug: Deferred loading kernel issue 28335. deferred_constraints_constants_test/none: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. deferred_constraints_constants_test/reference_after_load: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_constants_test: SkipByDesign deferred_constraints_type_annotation_test/as_operation: MissingCompileTimeError deferred_constraints_type_annotation_test/as_operation: Pass deferred_constraints_type_annotation_test/catch_check: MissingCompileTimeError @@ -1436,8 +1598,8 @@ deferred_constraints_type_annotation_test/catch_check: Pass deferred_constraints_type_annotation_test/is_check: MissingCompileTimeError deferred_constraints_type_annotation_test/is_check: Pass deferred_constraints_type_annotation_test/new: CompileTimeError -deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError deferred_constraints_type_annotation_test/new_before_load: Pass +deferred_constraints_type_annotation_test/new_before_load: MissingCompileTimeError deferred_constraints_type_annotation_test/new_generic1: CompileTimeError deferred_constraints_type_annotation_test/new_generic2: MissingCompileTimeError deferred_constraints_type_annotation_test/new_generic2: Pass @@ -1452,8 +1614,8 @@ deferred_constraints_type_annotation_test/type_annotation_generic1: MissingCompi deferred_constraints_type_annotation_test/type_annotation_generic1: Pass deferred_constraints_type_annotation_test/type_annotation_generic2: MissingCompileTimeError deferred_constraints_type_annotation_test/type_annotation_generic2: Pass -deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError deferred_constraints_type_annotation_test/type_annotation_generic3: Pass +deferred_constraints_type_annotation_test/type_annotation_generic3: MissingCompileTimeError deferred_constraints_type_annotation_test/type_annotation_generic4: MissingCompileTimeError deferred_constraints_type_annotation_test/type_annotation_generic4: Pass deferred_constraints_type_annotation_test/type_annotation_non_deferred: CompileTimeError @@ -1509,10 +1671,10 @@ empty_block_case_test: MissingCompileTimeError enum_mirror_test: SkipByDesign enum_private_test/02: MissingCompileTimeError example_constructor_test: Fail, OK -export_ambiguous_main_negative_test: Fail # Issue 14763 export_ambiguous_main_negative_test: Skip # Issue 29895 -export_double_same_main_test: Crash # Issue 29895 +export_ambiguous_main_negative_test: Fail # Issue 14763 export_double_same_main_test: Skip # Issue 29895 +export_double_same_main_test: Crash # Issue 29895 external_test/10: MissingRuntimeError # KernelVM bug: Unbound external. external_test/13: MissingRuntimeError # KernelVM bug: Unbound external. external_test/20: MissingRuntimeError # KernelVM bug: Unbound external. @@ -1522,9 +1684,9 @@ f_bounded_quantification_test/01: MissingCompileTimeError f_bounded_quantification_test/02: MissingCompileTimeError factory2_test/03: MissingCompileTimeError factory2_test/none: MissingCompileTimeError +factory3_test: Crash factory3_test/01: Pass factory3_test/none: MissingCompileTimeError -factory3_test: Crash factory4_test/00: MissingCompileTimeError factory5_test/00: MissingCompileTimeError factory6_test/00: MissingCompileTimeError @@ -1562,17 +1724,15 @@ function_malformed_result_type_test/00: MissingCompileTimeError function_propagation_test: CompileTimeError # Issue 31402 (Variable declaration) function_subtype3_test: RuntimeError function_subtype_bound_closure1_test: RuntimeError -function_subtype_bound_closure1_test: RuntimeError function_subtype_bound_closure2_test: RuntimeError function_subtype_bound_closure5_test: RuntimeError function_subtype_bound_closure5a_test: RuntimeError function_subtype_bound_closure6_test: RuntimeError -function_subtype_bound_closure7_test: CompileTimeError # Issue 31402 (Variable declaration) function_subtype_bound_closure7_test: RuntimeError +function_subtype_bound_closure7_test: CompileTimeError # Issue 31402 (Variable declaration) function_subtype_call1_test: RuntimeError function_subtype_call2_test: RuntimeError function_subtype_cast2_test: RuntimeError -function_subtype_cast2_test: RuntimeError function_subtype_cast3_test: RuntimeError function_subtype_checked0_test: RuntimeError function_subtype_inline2_test: RuntimeError @@ -1698,10 +1858,9 @@ function_type_alias6_test/none: RuntimeError function_type_alias_test: RuntimeError generalized_void_syntax_test: CompileTimeError # Issue #30176 generic_async_star_test: RuntimeError -generic_async_star_test: RuntimeError generic_closure_test: RuntimeError -generic_function_bounds_test: CompileTimeError generic_function_bounds_test: RuntimeError +generic_function_bounds_test: CompileTimeError generic_function_dcall_test: CompileTimeError generic_function_dcall_test: RuntimeError generic_function_type_as_type_argument_test/02: MissingCompileTimeError, OK # No type inference @@ -1712,8 +1871,8 @@ generic_function_typedef_test/01: RuntimeError generic_instanceof2_test: RuntimeError generic_instanceof_test: RuntimeError generic_is_check_test: RuntimeError -generic_list_checked_test: CompileTimeError # Issue 31402 (Variable declaration) generic_list_checked_test: RuntimeError +generic_list_checked_test: CompileTimeError # Issue 31402 (Variable declaration) generic_method_types_test/02: RuntimeError generic_methods_bounds_test/01: Crash generic_methods_bounds_test/01: MissingCompileTimeError @@ -1724,12 +1883,12 @@ generic_methods_overriding_test/01: MissingCompileTimeError generic_methods_overriding_test/03: MissingCompileTimeError generic_methods_recursive_bound_test/02: Crash generic_methods_recursive_bound_test/02: MissingCompileTimeError -generic_methods_recursive_bound_test/03: Crash, Pass -generic_methods_recursive_bound_test/03: MissingRuntimeError generic_methods_recursive_bound_test/03: Pass +generic_methods_recursive_bound_test/03: MissingRuntimeError +generic_methods_recursive_bound_test/03: Crash, Pass generic_methods_reuse_type_variables_test: Pass -generic_methods_tearoff_specialization_test: CompileTimeError # Issue 31402 (Variable declaration) generic_methods_tearoff_specialization_test: RuntimeError +generic_methods_tearoff_specialization_test: CompileTimeError # Issue 31402 (Variable declaration) generic_methods_type_expression_test: Crash generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 generic_methods_unused_parameter_test: CompileTimeError # Issue 31402 (Variable declaration) @@ -1791,8 +1950,8 @@ instanceof4_test/01: Pass instanceof4_test/01: RuntimeError instanceof4_test/none: Pass instanceof4_test/none: RuntimeError -int64_literal_test/03: MissingCompileTimeError # http://dartbug.com/31479 -int64_literal_test/30: MissingCompileTimeError # http://dartbug.com/31479 +int64_literal_test/03: MissingCompileTimeError # http://dartbug.com/31479 +int64_literal_test/30: MissingCompileTimeError # http://dartbug.com/31479 interface_test/00: MissingCompileTimeError invocation_mirror2_test: SkipByDesign invocation_mirror_invoke_on2_test: SkipByDesign @@ -2000,10 +2159,10 @@ mixin_type_parameters_errors_test/04: MissingCompileTimeError mixin_type_parameters_errors_test/05: MissingCompileTimeError mixin_with_two_implicit_constructors_test: MissingCompileTimeError mock_writable_final_private_field_test: RuntimeError # Issue 30849 -multiline_strings_test: Fail # Issue 23020 multiline_strings_test: Pass -named_constructor_test/01: MissingCompileTimeError +multiline_strings_test: Fail # Issue 23020 named_constructor_test/01: MissingRuntimeError # Fasta bug: Bad compilation of constructor reference. +named_constructor_test/01: MissingCompileTimeError named_constructor_test/03: MissingCompileTimeError named_parameters2_test: MissingCompileTimeError named_parameters3_test: MissingCompileTimeError @@ -2029,8 +2188,8 @@ new_expression_type_args_test/02: MissingCompileTimeError new_prefix_test/01: MissingCompileTimeError no_main_test/01: Skip no_such_constructor_test/01: MissingCompileTimeError -no_such_method_mock_test: Pass no_such_method_mock_test: RuntimeError +no_such_method_mock_test: Pass no_such_method_test: SkipByDesign not_enough_positional_arguments_test/00: MissingCompileTimeError not_enough_positional_arguments_test/01: MissingCompileTimeError @@ -2173,8 +2332,8 @@ regress_28217_test/01: MissingCompileTimeError # Fasta bug: Bad constructor redi regress_28217_test/none: MissingCompileTimeError # Fasta bug: Bad constructor redirection. regress_28255_test: SkipByDesign regress_28278_test: CompileTimeError # KernelVM bug: Deferred loading kernel issue 28335. -regress_28341_test: Pass regress_28341_test: RuntimeError +regress_28341_test: Pass regress_29025_test: CompileTimeError # Issue 31402 (Variable declaration) regress_29405_test: CompileTimeError # Issue 31402 (Invocation arguments) regress_29784_test/01: MissingCompileTimeError @@ -2279,7 +2438,7 @@ unresolved_top_level_var_test: MissingCompileTimeError vm/canonicalization_preserves_deopt_test: CompileTimeError # Issue 31402 (Assert statement) vm/causal_async_exception_stack2_test: SkipByDesign vm/causal_async_exception_stack_test: SkipByDesign -vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM +vm/closure_memory_retention_test: Skip # KernelVM bug: Hits OOM vm/debug_break_enabled_vm_test/01: CompileTimeError # KernelVM bug: Bad test using extended break syntax. vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. vm/debug_break_enabled_vm_test/none: CompileTimeError # KernelVM bug: Bad test using extended break syntax. @@ -2289,10 +2448,12 @@ vm/optimized_stacktrace_test: Skip # Issue 30198 vm/reflect_core_vm_test: SkipByDesign vm/regress_27201_test: CompileTimeError # Fasta/KernelVM bug: Deferred loading kernel issue 28335. vm/regress_27201_test: Fail -vm/regress_27671_test: Crash vm/regress_27671_test: Skip # Unsupported +vm/regress_27671_test: Crash vm/regress_29145_test: Skip # Issue 29145 vm/type_cast_vm_test: RuntimeError # Expects line and column numbers +vm/type_vm_test: RuntimeError, Pass # Expects line and column numbers +vm/type_vm_test: RuntimeError # Expects line and column numbers vm/type_vm_test/01: MissingCompileTimeError vm/type_vm_test/02: MissingCompileTimeError vm/type_vm_test/03: MissingCompileTimeError @@ -2316,8 +2477,6 @@ vm/type_vm_test/29: MissingRuntimeError vm/type_vm_test/30: MissingRuntimeError vm/type_vm_test/31: MissingRuntimeError vm/type_vm_test/32: MissingRuntimeError -vm/type_vm_test: RuntimeError # Expects line and column numbers -vm/type_vm_test: RuntimeError, Pass # Expects line and column numbers void_block_return_test/00: MissingCompileTimeError void_type_callbacks_test/none: CompileTimeError void_type_function_types_test/none: CompileTimeError @@ -2325,8 +2484,8 @@ void_type_override_test/none: CompileTimeError void_type_usage_test/call_as: CompileTimeError void_type_usage_test/call_for: CompileTimeError void_type_usage_test/call_stmt: CompileTimeError -void_type_usage_test/field_assign2: CompileTimeError void_type_usage_test/field_assign: CompileTimeError +void_type_usage_test/field_assign2: CompileTimeError void_type_usage_test/final_local_as: CompileTimeError void_type_usage_test/final_local_for: CompileTimeError void_type_usage_test/final_local_stmt: CompileTimeError @@ -2362,170 +2521,6 @@ void_type_usage_test/setter_assign: CompileTimeError wrong_number_type_arguments_test/*: MissingCompileTimeError wrong_number_type_arguments_test/none: Pass -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && $mode == debug ] -bad_named_parameters_test/01: Crash -bad_named_parameters_test/02: Crash -bad_named_parameters_test/05: Crash -const_instance_field_test/01: Crash -cyclic_type_variable_test/01: Crash -cyclic_type_variable_test/02: Crash -cyclic_type_variable_test/03: Crash -cyclic_type_variable_test/04: Crash -cyclic_type_variable_test/none: Crash -external_test/13: Crash -final_syntax_test/09: Crash -flatten_test/04: Crash -optional_named_parameters_test/06: Crash -optional_named_parameters_test/08: Crash -regress_29025_test: Crash -tearoff_dynamic_test: Crash -type_promotion_functions_test/05: Pass -type_promotion_functions_test/06: Pass -type_promotion_functions_test/07: Pass -type_promotion_functions_test/08: Pass -type_promotion_functions_test/10: Pass -vm/async_await_catch_stacktrace_test: Crash +[ $compiler == dartkp && !$strong ] +*: SkipByDesign # language_2 is only supported in strong mode. -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && $mode == product ] -vm/type_vm_test/28: MissingRuntimeError -vm/type_vm_test/29: MissingRuntimeError -vm/type_vm_test/30: MissingRuntimeError -vm/type_vm_test/31: MissingRuntimeError -vm/type_vm_test/32: MissingRuntimeError -vm/type_vm_test/33: MissingRuntimeError -vm/type_vm_test/34: MissingRuntimeError -vm/type_vm_test/35: MissingRuntimeError -vm/type_vm_test/36: MissingRuntimeError - -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && $checked ] -assert_initializer_test/31: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/32: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/33: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/34: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/35: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/36: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/37: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/38: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/41: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/42: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/43: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/44: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/45: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/46: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/47: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/48: MissingCompileTimeError # KernelVM bug: Constant evaluation. -assert_initializer_test/none: RuntimeError # KernelVM bug: Constant evaluation. -assertion_initializer_const_error2_test/cc02: Crash -assertion_initializer_const_error_test/none: Crash -assertion_initializer_const_function_test/01: Crash -assertion_initializer_const_function_test/none: Crash -assign_static_type_test/02: MissingCompileTimeError -async_await_test: RuntimeError -async_return_types_test/nestedFuture: Fail -async_return_types_test/wrongTypeParameter: Fail -compile_time_constant_checked_test/02: MissingCompileTimeError -const_constructor2_test/20: MissingCompileTimeError -const_constructor2_test/22: MissingCompileTimeError -const_constructor2_test/24: MissingCompileTimeError -const_init2_test/02: MissingCompileTimeError -default_factory2_test/01: Fail -factory_redirection_test/08: Fail -factory_redirection_test/09: Fail -factory_redirection_test/10: Fail -factory_redirection_test/12: Fail -factory_redirection_test/13: Fail -factory_redirection_test/14: Fail -function_subtype_checked0_test: Pass -function_subtype_closure0_test: Pass -function_subtype_closure1_test: Pass -function_subtype_factory1_test: Pass -function_subtype_inline1_test: Pass -function_subtype_inline2_test: Pass -function_subtype_setter0_test: Pass -function_type2_test: RuntimeError -generic_functions_test: Pass # Issue 25869 -generic_local_functions_test: Pass # Issue 25869 -generic_methods_function_type_test: Pass # Issue 25869 -generic_methods_generic_function_parameter_test: Pass # Issue 25869 -generic_methods_new_test: Pass # Issue 25869 -generic_methods_test: Pass # Issue 25869 -list_literal1_test/01: MissingCompileTimeError -malbounded_redirecting_factory_test/03: Fail -malbounded_redirecting_factory_test/04: Fail -malbounded_type_cast_test: RuntimeError -malbounded_type_test_test/03: Fail -malbounded_type_test_test/04: Fail -malformed2_test/00: RuntimeError -malformed2_test/01: MissingCompileTimeError -map_literal1_test/01: MissingCompileTimeError -mixin_invalid_bound2_test/08: Fail -mixin_invalid_bound2_test/09: Fail -mixin_invalid_bound2_test/10: Fail -mixin_invalid_bound_test/06: Fail -mixin_invalid_bound_test/07: Fail -redirecting_factory_infinite_steps_test/01: Fail -redirecting_factory_malbounded_test/01: Fail -regress_22728_test: Fail # Dartk Issue 28498 -regress_22728_test: RuntimeError -regress_26133_test: RuntimeError -regress_30339_test: Crash -setter_override_test/01: MissingCompileTimeError -setter_override_test/02: MissingCompileTimeError -type_parameter_test/05: MissingCompileTimeError -type_parameter_test/none: RuntimeError -type_variable_bounds4_test/01: RuntimeError - -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && !$checked ] -assertion_initializer_const_error_test/01: MissingCompileTimeError -assertion_initializer_const_function_error_test/01: MissingCompileTimeError -callable_test/none: RuntimeError -checked_setter2_test: RuntimeError -checked_setter_test: RuntimeError -covariance_field_test/01: RuntimeError -covariance_field_test/02: RuntimeError -covariance_field_test/03: RuntimeError -covariance_field_test/04: RuntimeError -covariance_field_test/05: RuntimeError -deferred_constraints_type_annotation_test/type_annotation1: Crash # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic1: Crash # KernelVM bug: Deferred loading kernel issue 28335. -deferred_constraints_type_annotation_test/type_annotation_generic4: Crash # KernelVM bug: Deferred loading kernel issue 28335. -implicit_downcast_during_assignment_test: RuntimeError -implicit_downcast_during_combiner_test: RuntimeError -implicit_downcast_during_compound_assignment_test: RuntimeError -implicit_downcast_during_conditional_expression_test: RuntimeError -implicit_downcast_during_do_test: RuntimeError -implicit_downcast_during_for_condition_test: RuntimeError -implicit_downcast_during_for_initializer_expression_test: RuntimeError -implicit_downcast_during_for_initializer_var_test: RuntimeError -implicit_downcast_during_if_null_assignment_test: RuntimeError -implicit_downcast_during_if_statement_test: RuntimeError -implicit_downcast_during_list_literal_test: RuntimeError -implicit_downcast_during_logical_expression_test: RuntimeError -implicit_downcast_during_map_literal_test: RuntimeError -implicit_downcast_during_not_test: RuntimeError -implicit_downcast_during_return_async_test: RuntimeError -implicit_downcast_during_return_test: RuntimeError -implicit_downcast_during_variable_declaration_test: RuntimeError -implicit_downcast_during_while_statement_test: RuntimeError -implicit_downcast_during_yield_star_test: RuntimeError -implicit_downcast_during_yield_test: RuntimeError -mixin_forwarding_constructor4_test/01: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_forwarding_constructor4_test/02: MissingCompileTimeError # KernelVM bug: Issue 15101 -mixin_forwarding_constructor4_test/03: MissingCompileTimeError # KernelVM bug: Issue 15101 -private_super_constructor_test/01: MissingCompileTimeError -redirecting_factory_default_values_test/01: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. -redirecting_factory_default_values_test/02: MissingCompileTimeError # Fasta bug: Default values are not allowed on redirecting factory constructors. -redirecting_factory_long_test: RuntimeError # Fasta bug: Bad compilation of type arguments for redirecting factory. -regress_20394_test/01: MissingCompileTimeError # Fasta bug: Illegal access to private constructor. -regress_30339_test: RuntimeError -vm/causal_async_exception_stack_test: RuntimeError - -[ $compiler == dartkp ] -bit_operations_test: CompileTimeError # Issue 31339 -vm/unaligned_integer_access_register_index_test: CompileTimeError # Issue 31339 -vm/unaligned_integer_access_literal_index_test: CompileTimeError # Issue 31339 -mint_arithmetic_test: CompileTimeError # Issue 31339 -identical_closure2_test: CompileTimeError # Issue 31339 -mock_writable_final_field_test: RuntimeError # Issue 31424 -no_such_method_subtype_test: RuntimeError # Issue 31424 -generic_no_such_method_dispatcher_test: RuntimeError # Issue 31424 diff --git a/tests/language_2/language_2_precompiled.status b/tests/language_2/language_2_precompiled.status index e5380e4b284..f7ed038dd3e 100644 --- a/tests/language_2/language_2_precompiled.status +++ b/tests/language_2/language_2_precompiled.status @@ -1,12 +1,25 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should start with "$runtime == dart_precompiled". +[ $arch != arm && $arch != simarm64 && $arch != x64 && $compiler == precompiler && $runtime == dart_precompiled ] +built_in_identifier_type_annotation_test/15: Crash + +[ $arch == arm64 && $runtime == dart_precompiled ] +large_class_declaration_test: SkipSlow # Uses too much memory. +setter4_test: MissingCompileTimeError + +[ $arch == ia32 && $runtime == dart_precompiled ] +vm/regress_24517_test: Pass, Fail # Issue 24517. + +[ $arch == x64 && $compiler == precompiler && $mode == debug && $runtime == dart_precompiled ] +built_in_identifier_type_annotation_test/15: Crash + +[ $compiler == precompiler && $mode == debug && $runtime == dart_precompiled ] +regress_29025_test: Crash # Issue dartbug.com/29331 + [ $compiler == precompiler && $runtime == dart_precompiled ] -constructor13_test/01: MissingCompileTimeError -constructor13_test/02: MissingCompileTimeError abstract_beats_arguments_test: MissingCompileTimeError abstract_exact_selector_test/01: MissingCompileTimeError abstract_factory_constructor_test/00: MissingCompileTimeError @@ -41,15 +54,15 @@ async_await_syntax_test/b10a: MissingCompileTimeError async_await_syntax_test/c10a: MissingCompileTimeError async_await_syntax_test/d08b: MissingCompileTimeError async_await_syntax_test/d10a: MissingCompileTimeError -async_congruence_local_test/none: RuntimeError async_congruence_local_test/01: MissingCompileTimeError async_congruence_local_test/02: MissingCompileTimeError -async_congruence_method_test/none: RuntimeError +async_congruence_local_test/none: RuntimeError async_congruence_method_test/01: MissingCompileTimeError +async_congruence_method_test/none: RuntimeError async_congruence_top_level_test: RuntimeError -async_congruence_unnamed_test/none: RuntimeError async_congruence_unnamed_test/01: MissingCompileTimeError async_congruence_unnamed_test/02: MissingCompileTimeError +async_congruence_unnamed_test/none: RuntimeError async_or_generator_return_type_stacktrace_test/01: MissingCompileTimeError async_or_generator_return_type_stacktrace_test/02: MissingCompileTimeError async_or_generator_return_type_stacktrace_test/03: MissingCompileTimeError @@ -203,6 +216,9 @@ const_types_test/34: MissingCompileTimeError const_types_test/35: MissingCompileTimeError const_types_test/39: MissingCompileTimeError const_types_test/40: MissingCompileTimeError +constructor13_test/01: MissingCompileTimeError +constructor13_test/02: MissingCompileTimeError +constructor3_test: Fail, OK, Pass constructor_call_as_function_test/01: MissingCompileTimeError covariant_override/runtime_check_test: RuntimeError covariant_subtyping_tearoff1_test: RuntimeError @@ -216,13 +232,16 @@ covariant_subtyping_with_substitution_test: RuntimeError covariant_tear_off_type_test: RuntimeError create_unresolved_type_test/01: MissingCompileTimeError ct_const2_test: Skip # Incompatible flag: --compile_all +cyclic_type2_test: Fail, OK # Non-contractive types are not supported in the vm. +cyclic_type_test/02: Fail, OK # Non-contractive types are not supported in the vm. +cyclic_type_test/04: Fail, OK # Non-contractive types are not supported in the vm. cyclic_type_variable_test/01: MissingCompileTimeError cyclic_type_variable_test/02: MissingCompileTimeError cyclic_type_variable_test/03: MissingCompileTimeError cyclic_type_variable_test/04: MissingCompileTimeError cyclic_typedef_test/13: MissingCompileTimeError -deep_nesting1_negative_test: Skip # Issue 31158 -deep_nesting2_negative_test: Skip # Issue 31158 +deep_nesting1_negative_test: Skip # Issue 31158 +deep_nesting2_negative_test: Skip # Issue 31158 default_factory2_test/01: MissingCompileTimeError default_factory_test/01: MissingCompileTimeError deferred_constraints_constants_test: SkipByDesign @@ -241,9 +260,13 @@ deferred_constraints_type_annotation_test/type_annotation_null: MissingCompileTi deferred_constraints_type_annotation_test/type_annotation_top_level: MissingCompileTimeError deferred_global_test: Fail deferred_inheritance_constraints_test/redirecting_constructor: MissingCompileTimeError +deferred_load_constants_test/02: Fail +deferred_load_constants_test/03: Fail +deferred_load_constants_test/05: Fail deferred_not_loaded_check_test: RuntimeError deferred_redirecting_factory_test: Fail, Crash # Issue 23408 deopt_inlined_function_lazy_test: Skip # Incompatible flag: --deoptimize-alot +duplicate_export_negative_test: Fail # Issue 6134 dynamic_field_test/01: MissingCompileTimeError dynamic_field_test/02: MissingCompileTimeError dynamic_prefix_core_test/01: MissingCompileTimeError @@ -253,6 +276,7 @@ empty_block_case_test: MissingCompileTimeError enum_mirror_test: SkipByDesign enum_private_test/02: MissingCompileTimeError error_stacktrace_test/00: MissingCompileTimeError +example_constructor_test: Fail, OK export_ambiguous_main_negative_test: Fail # Issue 14763 export_ambiguous_main_negative_test: Skip # Issue 29895 export_ambiguous_main_test: Crash @@ -283,13 +307,16 @@ factory_redirection_test/none: MissingCompileTimeError factory_return_type_checked_test/00: MissingCompileTimeError field3_test/01: MissingCompileTimeError field_increment_bailout_test: SkipByDesign +field_initialization_order_test: Fail, OK field_method4_test: MissingCompileTimeError field_override2_test: MissingCompileTimeError field_override_optimization_test: RuntimeError field_override_test/00: MissingCompileTimeError field_override_test/01: MissingCompileTimeError +field_override_test/02: MissingCompileTimeError field_override_test/none: MissingCompileTimeError field_type_check2_test/01: MissingRuntimeError +field_type_check_test/01: MissingCompileTimeError final_for_in_variable_test: MissingCompileTimeError final_param_test: MissingCompileTimeError final_super_field_set_test: MissingCompileTimeError @@ -347,6 +374,7 @@ function_type_call_getter2_test/03: MissingCompileTimeError function_type_call_getter2_test/04: MissingCompileTimeError function_type_call_getter2_test/05: MissingCompileTimeError fuzzy_arrows_test/01: MissingCompileTimeError +fuzzy_arrows_test/03: RuntimeError generalized_void_syntax_test: CompileTimeError # Issue #30176 generic_closure_test: RuntimeError generic_constructor_mixin2_test/01: MissingCompileTimeError @@ -399,25 +427,36 @@ if_null_assignment_behavior_test/15: MissingCompileTimeError if_null_assignment_static_test/02: MissingCompileTimeError if_null_assignment_static_test/04: MissingCompileTimeError if_null_assignment_static_test/06: MissingCompileTimeError +if_null_assignment_static_test/07: MissingCompileTimeError if_null_assignment_static_test/09: MissingCompileTimeError if_null_assignment_static_test/11: MissingCompileTimeError if_null_assignment_static_test/13: MissingCompileTimeError +if_null_assignment_static_test/14: MissingCompileTimeError if_null_assignment_static_test/16: MissingCompileTimeError if_null_assignment_static_test/18: MissingCompileTimeError if_null_assignment_static_test/20: MissingCompileTimeError +if_null_assignment_static_test/21: MissingCompileTimeError if_null_assignment_static_test/23: MissingCompileTimeError if_null_assignment_static_test/25: MissingCompileTimeError if_null_assignment_static_test/27: MissingCompileTimeError +if_null_assignment_static_test/28: MissingCompileTimeError if_null_assignment_static_test/30: MissingCompileTimeError if_null_assignment_static_test/32: MissingCompileTimeError if_null_assignment_static_test/34: MissingCompileTimeError +if_null_assignment_static_test/35: MissingCompileTimeError if_null_assignment_static_test/37: MissingCompileTimeError if_null_assignment_static_test/39: MissingCompileTimeError if_null_assignment_static_test/41: MissingCompileTimeError +if_null_assignment_static_test/42: MissingCompileTimeError if_null_precedence_test/06: MissingCompileTimeError if_null_precedence_test/07: MissingCompileTimeError if_null_precedence_test/none: RuntimeError implicit_closure_test: Skip # Incompatible flag: --use_slow_path +implicit_downcast_during_for_in_iterable_test: RuntimeError +implicit_downcast_during_function_literal_arrow_test: RuntimeError +implicit_downcast_during_function_literal_return_test: RuntimeError +implicit_downcast_during_yield_star_test: RuntimeError +implicit_downcast_during_yield_test: RuntimeError implicit_this_test/01: MissingCompileTimeError implicit_this_test/02: MissingCompileTimeError implicit_this_test/04: MissingCompileTimeError @@ -445,6 +484,7 @@ invocation_mirror2_test: SkipByDesign invocation_mirror_invoke_on2_test: SkipByDesign invocation_mirror_invoke_on_test: SkipByDesign issue21079_test: SkipByDesign +language_2/least_upper_bound_expansive_test/none: CompileTimeError least_upper_bound_expansive_test/none: CompileTimeError least_upper_bound_test/03: MissingCompileTimeError least_upper_bound_test/04: MissingCompileTimeError @@ -467,6 +507,7 @@ library_env_test/has_no_io_support: RuntimeError, OK list_literal1_test/01: MissingCompileTimeError list_literal4_test/00: MissingCompileTimeError list_literal4_test/01: MissingCompileTimeError +list_literal4_test/03: MissingCompileTimeError list_literal4_test/04: MissingCompileTimeError list_literal4_test/05: MissingCompileTimeError list_literal_syntax_test/01: MissingCompileTimeError @@ -480,8 +521,10 @@ local_function3_test/none: RuntimeError local_function_test/01: MissingCompileTimeError local_function_test/02: MissingCompileTimeError local_function_test/03: MissingCompileTimeError +local_function_test/04: MissingCompileTimeError local_function_test/none: RuntimeError logical_expression3_test: MissingCompileTimeError +main_not_a_function_test: Skip main_test/03: RuntimeError malbounded_instantiation_test/01: MissingCompileTimeError malbounded_instantiation_test/02: MissingCompileTimeError @@ -567,6 +610,8 @@ mixin_illegal_constructor_test/15: MissingCompileTimeError mixin_illegal_constructor_test/16: MissingCompileTimeError mixin_illegal_static_access_test/01: MissingCompileTimeError mixin_illegal_static_access_test/02: MissingCompileTimeError +mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 +mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 mixin_illegal_syntax_test/13: MissingCompileTimeError mixin_invalid_bound2_test/02: MissingCompileTimeError mixin_invalid_bound2_test/03: MissingCompileTimeError @@ -638,6 +683,7 @@ new_expression_type_args_test/00: MissingCompileTimeError new_expression_type_args_test/01: MissingCompileTimeError new_expression_type_args_test/02: MissingCompileTimeError new_prefix_test/01: MissingCompileTimeError +no_main_test/01: Skip no_such_constructor_test/01: MissingCompileTimeError no_such_method_mock_test: RuntimeError no_such_method_test: SkipByDesign @@ -757,7 +803,10 @@ regress_13494_test: MissingCompileTimeError regress_17382_test: MissingCompileTimeError regress_18535_test: SkipByDesign regress_19413_test: MissingCompileTimeError +regress_19728_test: MissingCompileTimeError regress_21793_test/01: MissingCompileTimeError +regress_21912_test/01: MissingCompileTimeError +regress_21912_test/02: MissingCompileTimeError regress_22438_test: MissingCompileTimeError regress_22936_test: MissingCompileTimeError regress_23089_test: MissingCompileTimeError @@ -818,6 +867,7 @@ super_operator_index_test/04: MissingCompileTimeError super_operator_index_test/05: MissingCompileTimeError super_operator_index_test/06: MissingCompileTimeError super_operator_index_test/07: MissingCompileTimeError +super_test: Fail, OK switch_fallthru_test/01: MissingCompileTimeError symbol_literal_test/01: MissingCompileTimeError sync_generator1_test/01: MissingCompileTimeError @@ -831,6 +881,11 @@ try_catch_syntax_test/08: MissingCompileTimeError type_checks_in_factory_method_test/01: MissingCompileTimeError type_parameter_test/05: MissingCompileTimeError type_promotion_functions_test/01: MissingCompileTimeError +type_promotion_functions_test/05: MissingCompileTimeError +type_promotion_functions_test/06: MissingCompileTimeError +type_promotion_functions_test/07: MissingCompileTimeError +type_promotion_functions_test/08: MissingCompileTimeError +type_promotion_functions_test/10: MissingCompileTimeError type_promotion_parameter_test/01: MissingCompileTimeError type_promotion_parameter_test/02: MissingCompileTimeError type_promotion_parameter_test/03: MissingCompileTimeError @@ -933,54 +988,12 @@ vm/optimized_stacktrace_test: Skip # Issue 30198 vm/reflect_core_vm_test: SkipByDesign vm/regress_27201_test: Fail vm/regress_27671_test: Skip # Unsupported +vm/regress_29145_test: Skip # Issue 29145 vm/type_cast_vm_test: RuntimeError # Expects line and column numbers -vm/type_vm_test: RuntimeError # Expects line and column numbers vm/type_vm_test: RuntimeError, Pass # Expects line and column numbers +vm/type_vm_test: RuntimeError # Expects line and column numbers void_block_return_test/00: MissingCompileTimeError wrong_number_type_arguments_test/*: MissingCompileTimeError -cyclic_type_test/02: Fail, OK # Non-contractive types are not supported in the vm. -cyclic_type_test/04: Fail, OK # Non-contractive types are not supported in the vm. -cyclic_type2_test: Fail, OK # Non-contractive types are not supported in the vm. -language_2/least_upper_bound_expansive_test/none: CompileTimeError -duplicate_export_negative_test: Fail # Issue 6134 -example_constructor_test: Fail, OK -field_initialization_order_test: Fail, OK -no_main_test/01: Skip -constructor3_test: Fail, OK, Pass -main_not_a_function_test: Skip -mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 -mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 -super_test: Fail, OK -vm/regress_29145_test: Skip # Issue 29145 - -[ $compiler == precompiler && $runtime == dart_precompiled ] -deferred_load_constants_test/02: Fail -deferred_load_constants_test/03: Fail -deferred_load_constants_test/05: Fail -field_override_test/02: MissingCompileTimeError -field_type_check_test/01: MissingCompileTimeError -fuzzy_arrows_test/03: RuntimeError -if_null_assignment_static_test/07: MissingCompileTimeError -if_null_assignment_static_test/14: MissingCompileTimeError -if_null_assignment_static_test/21: MissingCompileTimeError -if_null_assignment_static_test/28: MissingCompileTimeError -if_null_assignment_static_test/35: MissingCompileTimeError -if_null_assignment_static_test/42: MissingCompileTimeError -implicit_downcast_during_for_in_iterable_test: RuntimeError -implicit_downcast_during_function_literal_arrow_test: RuntimeError -implicit_downcast_during_function_literal_return_test: RuntimeError -implicit_downcast_during_yield_star_test: RuntimeError -implicit_downcast_during_yield_test: RuntimeError -list_literal4_test/03: MissingCompileTimeError -local_function_test/04: MissingCompileTimeError -regress_19728_test: MissingCompileTimeError -regress_21912_test/01: MissingCompileTimeError -regress_21912_test/02: MissingCompileTimeError -type_promotion_functions_test/05: MissingCompileTimeError -type_promotion_functions_test/06: MissingCompileTimeError -type_promotion_functions_test/07: MissingCompileTimeError -type_promotion_functions_test/08: MissingCompileTimeError -type_promotion_functions_test/10: MissingCompileTimeError [ $compiler == precompiler && $runtime == dart_precompiled && $checked ] covariance_type_parameter_test/01: RuntimeError @@ -996,11 +1009,11 @@ function_subtype_inline2_test: Pass function_subtype_regression_ddc_588_test: Pass function_subtype_setter0_test: Pass generic_functions_test: Pass # Issue 25869 +generic_local_functions_test: Pass # Issue 25869 generic_methods_function_type_test: Pass # Issue 25869 generic_methods_generic_function_parameter_test: Pass # Issue 25869 -generic_methods_test: Pass # Issue 25869 generic_methods_new_test: Pass # Issue 25869 -generic_local_functions_test: Pass # Issue 25869 +generic_methods_test: Pass # Issue 25869 [ $compiler == precompiler && $runtime == dart_precompiled && !$checked ] assertion_initializer_const_error_test/01: MissingCompileTimeError @@ -1071,28 +1084,16 @@ tearoff_dynamic_test: RuntimeError type_argument_in_super_type_test: RuntimeError type_check_const_function_typedef2_test: MissingCompileTimeError -[ $compiler == precompiler && $runtime == dart_precompiled && $arch != arm && $arch != simarm64 && $arch != x64 ] -built_in_identifier_type_annotation_test/15: Crash - -[ $compiler == precompiler && $runtime == dart_precompiled && $arch == x64 && $mode == debug ] -built_in_identifier_type_annotation_test/15: Crash - -[ $runtime == dart_precompiled && $arch == arm64 ] -large_class_declaration_test: SkipSlow # Uses too much memory. -setter4_test: MissingCompileTimeError - -[ $runtime == dart_precompiled && $arch == ia32 ] -vm/regress_24517_test: Pass, Fail # Issue 24517. - [ $runtime == dart_precompiled && $minified ] cyclic_type_test/*: Skip -enum_duplicate_test/*: Skip # Uses Enum.toString() -enum_private_test/*: Skip # Uses Enum.toString() -enum_test: Skip # Uses Enum.toString() +enum_duplicate_test/*: Skip # Uses Enum.toString() +enum_private_test/*: Skip # Uses Enum.toString() +enum_test: Skip # Uses Enum.toString() f_bounded_quantification4_test: Skip f_bounded_quantification5_test: Skip full_stacktrace1_test: Skip full_stacktrace2_test: Skip +full_stacktrace3_test: Skip mixin_generic_test: Skip mixin_mixin2_test: Skip mixin_mixin3_test: Skip @@ -1101,14 +1102,11 @@ mixin_mixin6_test: Skip mixin_mixin_bound2_test: Skip mixin_mixin_type_arguments_test: Skip mixin_super_2_test: Skip -no_such_method_dispatcher_test: Skip # Uses new Symbol() +no_such_method_dispatcher_test: Skip # Uses new Symbol() stacktrace_rethrow_error_test: Skip stacktrace_rethrow_nonerror_test: Skip vm/no_such_args_error_message_vm_test: Skip vm/no_such_method_error_message_callable_vm_test: Skip vm/no_such_method_error_message_vm_test: Skip -vm/regress_28325_test:Skip -full_stacktrace3_test: Skip +vm/regress_28325_test: Skip -[ $compiler == precompiler && $runtime == dart_precompiled && $mode == debug ] -regress_29025_test: Crash # Issue dartbug.com/29331 diff --git a/tests/language_2/language_2_spec_parser.status b/tests/language_2/language_2_spec_parser.status index d53f7c4f5a6..55eb1d2a1f6 100644 --- a/tests/language_2/language_2_spec_parser.status +++ b/tests/language_2/language_2_spec_parser.status @@ -3,53 +3,55 @@ # BSD-style license that can be found in the LICENSE file. [ $compiler == spec_parser ] - -getter_declaration_negative_test: Fail # Negative, uses getter with parameter. -interface_injection1_negative_test: Fail # Negative, uses interface injection. -interface_injection2_negative_test: Fail # Negative, uses interface injection. -issue1578_negative_test: Fail # Negative, is line noise. -is_not_class1_negative_test: Fail # Negative, uses `a is "A"`. -is_not_class4_negative_test: Fail # Negative, uses `a is A is A`. -label8_negative_test: Fail # Negative, uses misplaced label. -list_literal_negative_test: Fail # Negative, uses `new List[1, 2]`. -map_literal_negative_test: Fail # Negative, uses `new Map{..}`. -new_expression1_negative_test: Fail # Negative, uses `new id`. -new_expression2_negative_test: Fail # Negative, uses `new id(`. -new_expression3_negative_test: Fail # Negative, uses `new id(...`. -operator1_negative_test: Fail # Negative, declares static operator. -operator2_negative_test: Fail # Negative, declares `operator ===`. -prefix18_negative_test: Fail # Negative, uses `lib1.invalid` as library prefix. -string_escape4_negative_test: Fail # Negative, uses newline in string literal. -string_interpolate1_negative_test: Fail # Negative, misplaced '$'. -string_interpolate2_negative_test: Fail # Negative, misplaced '$'. -switch1_negative_test: Fail # Negative, `default` clause not last. -test_negative_test: Fail # Negative, uses non-terminated string literal. -unary_plus_negative_test: Fail # Negative, uses non-existing unary plus. -unhandled_exception_negative_test: Fail # Negative, defaults required parameter. - +built_in_identifier_prefix_test: Skip # A built-in identifier can _not_ be a prefix. +closure_type_test: Pass # Marked as RuntimeError for all in language_2.status. +conditional_import_string_test: Fail # Uses conditional import. +conditional_import_test: Fail # Uses conditional import. +config_import_corelib_test: Fail # Uses conditional import. +config_import_test: Fail # Uses conditional import. +const_native_factory_test: Skip # Uses `native`. constructor_call_wrong_argument_count_negative_test: Skip # Negative, not syntax. constructor_redirect1_negative_test/01: Skip # Negative, not syntax. constructor_redirect1_negative_test/none: Skip # Negative, not syntax. constructor_redirect2_negative_test: Skip # Negative, not syntax. constructor_setter_negative_test: Skip # Negative, not syntax. +deep_nesting1_negative_test: Skip # Stack overflow. +deep_nesting2_negative_test: Skip # Stack overflow. +double_invalid_test: Skip # Contains illegaly formatted double. duplicate_export_negative_test: Skip # Negative, not syntax. duplicate_interface_negative_test: Skip # Negative, not syntax. +external_test/21: Fail # Test expects `runtime error`, it is a syntax error. +getter_declaration_negative_test: Fail # Negative, uses getter with parameter. inst_field_initializer1_negative_test: Skip # Negative, not syntax. instance_call_wrong_argument_count_negative_test: Skip # Negative, not syntax. instance_method2_negative_test: Skip # Negative, not syntax. instance_method_negative_test: Skip # Negative, not syntax. interface2_negative_test: Skip # Negative, not syntax. +interface_injection1_negative_test: Fail # Negative, uses interface injection. +interface_injection2_negative_test: Fail # Negative, uses interface injection. interface_static_method_negative_test: Skip # Negative, not syntax. interface_static_non_final_fields_negative_test: Skip # Negative, not syntax. +is_not_class1_negative_test: Fail # Negative, uses `a is "A"`. +is_not_class4_negative_test: Fail # Negative, uses `a is A is A`. +issue1578_negative_test: Fail # Negative, is line noise. +issue_1751477_test: Skip # Times out: 9 levels, exponential blowup => 430 secs. label2_negative_test: Skip # Negative, not syntax. label3_negative_test: Skip # Negative, not syntax. label5_negative_test: Skip # Negative, not syntax. label6_negative_test: Skip # Negative, not syntax. +label8_negative_test: Fail # Negative, uses misplaced label. library_negative_test: Skip # Negative, not syntax. list_literal2_negative_test: Skip # Negative, not syntax. +list_literal_negative_test: Fail # Negative, uses `new List[1, 2]`. map_literal2_negative_test: Skip # Negative, not syntax. +map_literal_negative_test: Fail # Negative, uses `new Map{..}`. +new_expression1_negative_test: Fail # Negative, uses `new id`. +new_expression2_negative_test: Fail # Negative, uses `new id(`. +new_expression3_negative_test: Fail # Negative, uses `new id(...`. no_such_method_negative_test: Skip # Negative, not syntax. non_const_super_negative_test: Skip # Negative, not syntax. +operator1_negative_test: Fail # Negative, declares static operator. +operator2_negative_test: Fail # Negative, declares `operator ===`. override_field_method1_negative_test: Skip # Negative, not syntax. override_field_method2_negative_test: Skip # Negative, not syntax. override_field_method4_negative_test: Skip # Negative, not syntax. @@ -64,6 +66,7 @@ prefix11_negative_test: Skip # Negative, not syntax. prefix12_negative_test: Skip # Negative, not syntax. prefix13_negative_test: Skip # Negative, not syntax. prefix15_negative_test: Skip # Negative, not syntax. +prefix18_negative_test: Fail # Negative, uses `lib1.invalid` as library prefix. prefix1_negative_test: Skip # Negative, not syntax. prefix2_negative_test: Skip # Negative, not syntax. prefix3_negative_test: Skip # Negative, not syntax. @@ -77,31 +80,19 @@ private_member2_negative_test: Skip # Negative, not syntax. private_member3_negative_test: Skip # Negative, not syntax. script1_negative_test: Skip # Negative, not syntax. script2_negative_test: Skip # Negative, not syntax. +string_escape4_negative_test: Fail # Negative, uses newline in string literal. +string_interpolate1_negative_test: Fail # Negative, misplaced '$'. +string_interpolate2_negative_test: Fail # Negative, misplaced '$'. string_unicode1_negative_test: Skip # Negative, not syntax. string_unicode2_negative_test: Skip # Negative, not syntax. string_unicode3_negative_test: Skip # Negative, not syntax. string_unicode4_negative_test: Skip # Negative, not syntax. +switch1_negative_test: Fail # Negative, `default` clause not last. +test_negative_test: Fail # Negative, uses non-terminated string literal. +unary_plus_negative_test: Fail # Negative, uses non-existing unary plus. +unhandled_exception_negative_test: Fail # Negative, defaults required parameter. unhandled_exception_negative_test: Skip # Negative, not syntax. - -double_invalid_test: Skip # Contains illegaly formatted double. - -const_native_factory_test: Skip # Uses `native`. - -built_in_identifier_prefix_test: Skip # A built-in identifier can _not_ be a prefix. - -external_test/21: Fail # Test expects `runtime error`, it is a syntax error. - -conditional_import_string_test: Fail # Uses conditional import. -conditional_import_test: Fail # Uses conditional import. -config_import_corelib_test: Fail # Uses conditional import. -config_import_test: Fail # Uses conditional import. vm/debug_break_enabled_vm_test/01: Fail # Uses debug break. vm/debug_break_enabled_vm_test/none: Fail # Uses debug break. - void_type_function_types_test: Skip # Not yet supported. -deep_nesting1_negative_test: Skip # Stack overflow. -deep_nesting2_negative_test: Skip # Stack overflow. -issue_1751477_test: Skip # Times out: 9 levels, exponential blowup => 430 secs. - -closure_type_test: Pass # Marked as RuntimeError for all in language_2.status. diff --git a/tests/language_2/language_2_vm.status b/tests/language_2/language_2_vm.status index 302a4b9e10b..2f47dc902d3 100644 --- a/tests/language_2/language_2_vm.status +++ b/tests/language_2/language_2_vm.status @@ -1,11 +1,106 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$runtime == vm". +[ $arch == arm64 && $runtime == vm ] +closure_cycles_test: Pass, Slow +large_class_declaration_test: SkipSlow # Uses too much memory. + +[ $arch == ia32 && $compiler == app_jit && $runtime == vm ] +vm/regress_24517_test: Pass, Fail # Issue 24517. + +[ $arch == ia32 && $compiler == none && $runtime == vm ] +vm/regress_24517_test: Pass, Fail # Issue 24517. + +[ $arch == ia32 && $compiler == none && $runtime == vm && $system == windows ] +vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 + +[ $arch == ia32 && $mode == release && $runtime == vm ] +deep_nesting1_negative_test: Crash, Pass # Issue 31496 + +[ $compiler == app_jit && $mode != product && $runtime == vm ] +vm/type_vm_test/none: RuntimeError + +[ $compiler == app_jit && $runtime == vm ] +async_star_cancel_while_paused_test: RuntimeError +async_star_pause_test: Fail, OK +async_star_regression_2238_test: CompileTimeError, RuntimeError +class_keyword_test/02: MissingCompileTimeError # Issue 13627 +constructor3_test: Fail, OK, Pass +ct_const2_test: Skip # Incompatible flag: --compile_all +cyclic_type2_test: Fail, OK +cyclic_type_test/02: Fail, OK +cyclic_type_test/04: Fail, OK +deferred_load_constants_test/02: Fail +deferred_load_constants_test/03: Fail +deferred_load_constants_test/05: Fail +deferred_not_loaded_check_test: RuntimeError +deferred_redirecting_factory_test: Fail, Crash # Issue 23408 +duplicate_export_negative_test: Fail # Issue 6134 +dynamic_prefix_core_test/01: RuntimeError # Issue 12478 +example_constructor_test: Fail, OK +export_ambiguous_main_negative_test: Fail # Issue 14763 +field_initialization_order_test: Fail, OK +generalized_void_syntax_test: CompileTimeError # Issue #30176 +generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 +hello_dart_test: Skip # Incompatible flag: --compile_all +language_2/least_upper_bound_expansive_test/none: CompileTimeError +library_env_test/has_html_support: RuntimeError, OK +library_env_test/has_no_io_support: RuntimeError, OK +main_not_a_function_test: Skip +mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 +mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 +multiline_strings_test: Fail # Issue 23020 +no_main_test/01: Skip +regress_21793_test/01: MissingCompileTimeError +regress_23408_test: Crash +super_test: Fail, OK +type_parameter_test/05: MissingCompileTimeError +type_variable_scope_test/03: MissingCompileTimeError +unicode_bom_test: Fail # Issue 16067 +vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. +vm/regress_27201_test: Fail +vm/regress_29145_test: Skip # Issue 29145 +vm/type_cast_vm_test: RuntimeError # Expects line and column numbers + +[ $compiler == app_jit && $runtime == vm && $checked ] +generic_functions_test: Pass # Issue 25869 +generic_local_functions_test: Pass # Issue 25869 +generic_methods_function_type_test: Pass # Issue 25869 +generic_methods_generic_function_parameter_test: Pass # Issue 25869 +generic_methods_new_test: Pass # Issue 25869 +generic_methods_test: Pass # Issue 25869 + +[ $compiler == app_jit && $runtime == vm && !$checked ] +assertion_initializer_const_error_test/01: MissingCompileTimeError +generic_methods_bounds_test/02: MissingRuntimeError +generic_methods_dynamic_test/02: MissingRuntimeError +generic_methods_dynamic_test/04: MissingRuntimeError + +[ $compiler != dartk && $mode == debug && $runtime == vm && $checked ] +tearoff_dynamic_test: Crash + +[ $compiler != dartk && $mode == product && $runtime == vm ] +deferred_load_constants_test/02: Fail +deferred_load_constants_test/03: Fail +deferred_load_constants_test/05: Fail +deferred_not_loaded_check_test: RuntimeError +vm/causal_async_exception_stack2_test: SkipByDesign +vm/causal_async_exception_stack_test: SkipByDesign +vm/regress_27201_test: Fail +vm/type_vm_test/28: MissingRuntimeError +vm/type_vm_test/29: MissingRuntimeError +vm/type_vm_test/30: MissingRuntimeError +vm/type_vm_test/31: MissingRuntimeError +vm/type_vm_test/32: MissingRuntimeError +vm/type_vm_test/33: MissingRuntimeError +vm/type_vm_test/34: MissingRuntimeError +vm/type_vm_test/35: MissingRuntimeError +vm/type_vm_test/36: MissingRuntimeError + # The VM does not implement the Dart 2.0 static type errors yet. -[ $runtime == vm && $compiler != dartk ] +[ $compiler != dartk && $runtime == vm ] abstract_beats_arguments_test: MissingCompileTimeError abstract_exact_selector_test/01: MissingCompileTimeError abstract_factory_constructor_test/00: MissingCompileTimeError @@ -42,9 +137,13 @@ async_await_syntax_test/d08b: MissingCompileTimeError async_await_syntax_test/d10a: MissingCompileTimeError async_congruence_local_test/01: MissingCompileTimeError async_congruence_local_test/02: MissingCompileTimeError +async_congruence_local_test/none: RuntimeError async_congruence_method_test/01: MissingCompileTimeError +async_congruence_method_test/none: RuntimeError +async_congruence_top_level_test: RuntimeError async_congruence_unnamed_test/01: MissingCompileTimeError async_congruence_unnamed_test/02: MissingCompileTimeError +async_congruence_unnamed_test/none: RuntimeError async_or_generator_return_type_stacktrace_test/01: MissingCompileTimeError async_or_generator_return_type_stacktrace_test/02: MissingCompileTimeError async_or_generator_return_type_stacktrace_test/03: MissingCompileTimeError @@ -179,6 +278,7 @@ const_types_test/40: MissingCompileTimeError constructor13_test/01: MissingCompileTimeError constructor13_test/02: MissingCompileTimeError constructor_call_as_function_test/01: MissingCompileTimeError +covariant_override/runtime_check_test: RuntimeError covariant_tear_off_type_test: RuntimeError create_unresolved_type_test/01: MissingCompileTimeError cyclic_type_variable_test/01: MissingCompileTimeError @@ -239,7 +339,9 @@ field_method4_test: MissingCompileTimeError field_override2_test: MissingCompileTimeError field_override_test/00: MissingCompileTimeError field_override_test/01: MissingCompileTimeError +field_override_test/02: MissingCompileTimeError field_override_test/none: MissingCompileTimeError +field_type_check_test/01: MissingCompileTimeError final_for_in_variable_test: MissingCompileTimeError final_param_test: MissingCompileTimeError final_super_field_set_test: MissingCompileTimeError @@ -280,6 +382,8 @@ function_type_call_getter2_test/02: MissingCompileTimeError function_type_call_getter2_test/03: MissingCompileTimeError function_type_call_getter2_test/04: MissingCompileTimeError function_type_call_getter2_test/05: MissingCompileTimeError +fuzzy_arrows_test/01: MissingCompileTimeError +fuzzy_arrows_test/03: RuntimeError generic_closure_test: RuntimeError generic_constructor_mixin2_test/01: MissingCompileTimeError generic_constructor_mixin3_test/01: MissingCompileTimeError @@ -299,6 +403,7 @@ generic_methods_overriding_test/03: MissingCompileTimeError generic_methods_recursive_bound_test/02: MissingCompileTimeError generic_methods_tearoff_specialization_test: RuntimeError generic_methods_unused_parameter_test: RuntimeError +generic_no_such_method_dispatcher_simple_test: Skip # This test is only for kernel. generic_tearoff_test: RuntimeError getter_no_setter2_test/00: MissingCompileTimeError getter_no_setter2_test/01: MissingCompileTimeError @@ -318,21 +423,27 @@ if_null_assignment_behavior_test/15: MissingCompileTimeError if_null_assignment_static_test/02: MissingCompileTimeError if_null_assignment_static_test/04: MissingCompileTimeError if_null_assignment_static_test/06: MissingCompileTimeError +if_null_assignment_static_test/07: MissingCompileTimeError if_null_assignment_static_test/09: MissingCompileTimeError if_null_assignment_static_test/11: MissingCompileTimeError if_null_assignment_static_test/13: MissingCompileTimeError +if_null_assignment_static_test/14: MissingCompileTimeError if_null_assignment_static_test/16: MissingCompileTimeError if_null_assignment_static_test/18: MissingCompileTimeError if_null_assignment_static_test/20: MissingCompileTimeError +if_null_assignment_static_test/21: MissingCompileTimeError if_null_assignment_static_test/23: MissingCompileTimeError if_null_assignment_static_test/25: MissingCompileTimeError if_null_assignment_static_test/27: MissingCompileTimeError +if_null_assignment_static_test/28: MissingCompileTimeError if_null_assignment_static_test/30: MissingCompileTimeError if_null_assignment_static_test/32: MissingCompileTimeError if_null_assignment_static_test/34: MissingCompileTimeError +if_null_assignment_static_test/35: MissingCompileTimeError if_null_assignment_static_test/37: MissingCompileTimeError if_null_assignment_static_test/39: MissingCompileTimeError if_null_assignment_static_test/41: MissingCompileTimeError +if_null_assignment_static_test/42: MissingCompileTimeError if_null_precedence_test/06: MissingCompileTimeError if_null_precedence_test/07: MissingCompileTimeError implicit_downcast_during_for_in_iterable_test: RuntimeError @@ -377,6 +488,7 @@ library_ambiguous_test/03: MissingCompileTimeError library_ambiguous_test/04: MissingCompileTimeError list_literal4_test/00: MissingCompileTimeError list_literal4_test/01: MissingCompileTimeError +list_literal4_test/03: MissingCompileTimeError list_literal4_test/04: MissingCompileTimeError list_literal4_test/05: MissingCompileTimeError list_literal_syntax_test/01: MissingCompileTimeError @@ -390,6 +502,7 @@ local_function3_test/none: RuntimeError local_function_test/01: MissingCompileTimeError local_function_test/02: MissingCompileTimeError local_function_test/03: MissingCompileTimeError +local_function_test/04: MissingCompileTimeError local_function_test/none: RuntimeError logical_expression3_test: MissingCompileTimeError main_test/03: RuntimeError @@ -653,6 +766,9 @@ regress_12561_test: MissingCompileTimeError regress_13494_test: MissingCompileTimeError regress_17382_test: MissingCompileTimeError regress_19413_test: MissingCompileTimeError +regress_19728_test: MissingCompileTimeError +regress_21912_test/01: MissingCompileTimeError +regress_21912_test/02: MissingCompileTimeError regress_22438_test: MissingCompileTimeError regress_22936_test: MissingCompileTimeError regress_23089_test: MissingCompileTimeError @@ -719,6 +835,12 @@ try_catch_on_syntax_test/10: MissingCompileTimeError try_catch_on_syntax_test/11: MissingCompileTimeError try_catch_syntax_test/08: MissingCompileTimeError type_checks_in_factory_method_test/01: MissingCompileTimeError +type_promotion_functions_test/01: MissingCompileTimeError +type_promotion_functions_test/05: MissingCompileTimeError +type_promotion_functions_test/06: MissingCompileTimeError +type_promotion_functions_test/07: MissingCompileTimeError +type_promotion_functions_test/08: MissingCompileTimeError +type_promotion_functions_test/10: MissingCompileTimeError type_promotion_parameter_test/01: MissingCompileTimeError type_promotion_parameter_test/02: MissingCompileTimeError type_promotion_parameter_test/03: MissingCompileTimeError @@ -810,57 +932,7 @@ unresolved_in_factory_test: MissingCompileTimeError unresolved_top_level_method_test: MissingCompileTimeError unresolved_top_level_var_test: MissingCompileTimeError -[ ($runtime == vm && $compiler != dartk) || ($runtime == dart_precompiled && $compiler != dartkp) ] -built_in_identifier_type_annotation_test/22: MissingCompileTimeError # Error only in strong mode -int64_literal_test/*: Skip # This is testing Dart 2.0 int64 semantics. - -[ $runtime == vm && $compiler != dartk ] -async_congruence_top_level_test: RuntimeError -async_congruence_unnamed_test/none: RuntimeError -async_congruence_local_test/none: RuntimeError -async_congruence_method_test/none: RuntimeError -covariant_override/runtime_check_test: RuntimeError -field_override_test/02: MissingCompileTimeError -field_type_check_test/01: MissingCompileTimeError -if_null_assignment_static_test/07: MissingCompileTimeError -if_null_assignment_static_test/14: MissingCompileTimeError -if_null_assignment_static_test/21: MissingCompileTimeError -if_null_assignment_static_test/28: MissingCompileTimeError -if_null_assignment_static_test/35: MissingCompileTimeError -if_null_assignment_static_test/42: MissingCompileTimeError -list_literal4_test/03: MissingCompileTimeError -local_function_test/04: MissingCompileTimeError -regress_19728_test: MissingCompileTimeError -regress_21912_test/01: MissingCompileTimeError -regress_21912_test/02: MissingCompileTimeError - -[ $runtime == vm && $compiler != dartk && ! $strong ] -covariant_subtyping_with_substitution_test: RuntimeError -function_subtype_named1_test: RuntimeError -function_subtype_named2_test: RuntimeError -function_subtype_optional1_test: RuntimeError -function_subtype_optional2_test: RuntimeError -function_subtype_typearg2_test: RuntimeError -function_subtype_typearg3_test: RuntimeError -generic_function_typedef_test/01: RuntimeError -generic_methods_named_parameters_test: RuntimeError -generic_methods_optional_parameters_test: RuntimeError -instanceof4_test/01: RuntimeError -instanceof4_test/none: RuntimeError -malbounded_type_cast_test/none: RuntimeError -malbounded_type_test_test/none: RuntimeError -map_literal8_test: RuntimeError -mixin_type_parameters_mixin_extends_test: RuntimeError -mixin_type_parameters_mixin_test: RuntimeError -mixin_type_parameters_super_extends_test: RuntimeError -mixin_type_parameters_super_test: RuntimeError -no_such_method_mock_test: RuntimeError -override_inheritance_mixed_test/08: MissingCompileTimeError -regress_28341_test: Fail # Issue 28340 -type_variable_nested_test/01: RuntimeError -type_variable_promotion_test: RuntimeError - -[ $runtime == vm && $compiler != dartk && $checked ] +[ $compiler != dartk && $runtime == vm && $checked ] constructor_call_as_function_test/01: MissingCompileTimeError covariance_type_parameter_test/01: RuntimeError covariance_type_parameter_test/02: RuntimeError @@ -941,7 +1013,7 @@ recursive_mixin_test: Crash # The VM and does not implement the Dart 2.0 runtime checks yet unless # --checked is explicitly passed). -[ $runtime == vm && $compiler != dartk && !$checked && !$strong] +[ $compiler != dartk && $runtime == vm && !$checked && !$strong ] bool_check_test: RuntimeError bool_condition_check_test: RuntimeError callable_test/none: RuntimeError @@ -1004,23 +1076,43 @@ function_type_call_getter2_test/none: RuntimeError function_type_test: RuntimeError generic_field_mixin6_test/none: RuntimeError generic_list_checked_test: RuntimeError +getters_setters2_test/01: RuntimeError +getters_setters2_test/none: RuntimeError if_null_precedence_test/none: RuntimeError +implicit_downcast_during_assignment_test: RuntimeError +implicit_downcast_during_combiner_test: RuntimeError +implicit_downcast_during_compound_assignment_test: RuntimeError +implicit_downcast_during_conditional_expression_test: RuntimeError implicit_downcast_during_constructor_initializer_test: RuntimeError implicit_downcast_during_constructor_invocation_test: RuntimeError +implicit_downcast_during_do_test: RuntimeError implicit_downcast_during_factory_constructor_invocation_test: RuntimeError implicit_downcast_during_field_declaration_test: RuntimeError +implicit_downcast_during_for_condition_test: RuntimeError implicit_downcast_during_for_in_element_test: RuntimeError +implicit_downcast_during_for_initializer_expression_test: RuntimeError +implicit_downcast_during_for_initializer_var_test: RuntimeError +implicit_downcast_during_if_null_assignment_test: RuntimeError +implicit_downcast_during_if_statement_test: RuntimeError implicit_downcast_during_indexed_assignment_test: RuntimeError implicit_downcast_during_indexed_compound_assignment_test: RuntimeError implicit_downcast_during_indexed_get_test: RuntimeError implicit_downcast_during_indexed_if_null_assignment_test: RuntimeError implicit_downcast_during_invocation_test: RuntimeError +implicit_downcast_during_list_literal_test: RuntimeError +implicit_downcast_during_logical_expression_test: RuntimeError +implicit_downcast_during_map_literal_test: RuntimeError implicit_downcast_during_method_invocation_test: RuntimeError +implicit_downcast_during_not_test: RuntimeError implicit_downcast_during_null_aware_method_invocation_test: RuntimeError implicit_downcast_during_redirecting_initializer_test: RuntimeError +implicit_downcast_during_return_async_test: RuntimeError +implicit_downcast_during_return_test: RuntimeError implicit_downcast_during_static_method_invocation_test: RuntimeError implicit_downcast_during_super_initializer_test: RuntimeError implicit_downcast_during_super_method_invocation_test: RuntimeError +implicit_downcast_during_variable_declaration_test: RuntimeError +implicit_downcast_during_while_statement_test: RuntimeError inferrer_synthesized_constructor_test: RuntimeError list_literal1_test/01: MissingCompileTimeError malformed2_test/00: MissingCompileTimeError @@ -1029,42 +1121,57 @@ type_argument_in_super_type_test: RuntimeError type_check_const_function_typedef2_test: MissingCompileTimeError typevariable_substitution2_test/02: RuntimeError -[ $runtime == vm && $compiler != dartk && !$checked && !$strong] -getters_setters2_test/01: RuntimeError -getters_setters2_test/none: RuntimeError -implicit_downcast_during_assignment_test: RuntimeError -implicit_downcast_during_combiner_test: RuntimeError -implicit_downcast_during_compound_assignment_test: RuntimeError -implicit_downcast_during_conditional_expression_test: RuntimeError -implicit_downcast_during_do_test: RuntimeError -implicit_downcast_during_for_condition_test: RuntimeError -implicit_downcast_during_for_initializer_expression_test: RuntimeError -implicit_downcast_during_for_initializer_var_test: RuntimeError -implicit_downcast_during_if_null_assignment_test: RuntimeError -implicit_downcast_during_if_statement_test: RuntimeError -implicit_downcast_during_list_literal_test: RuntimeError -implicit_downcast_during_logical_expression_test: RuntimeError -implicit_downcast_during_map_literal_test: RuntimeError -implicit_downcast_during_not_test: RuntimeError -implicit_downcast_during_return_async_test: RuntimeError -implicit_downcast_during_return_test: RuntimeError -implicit_downcast_during_variable_declaration_test: RuntimeError -implicit_downcast_during_while_statement_test: RuntimeError +[ $compiler != dartk && $runtime == vm && !$strong ] +covariant_subtyping_with_substitution_test: RuntimeError +function_subtype_named1_test: RuntimeError +function_subtype_named2_test: RuntimeError +function_subtype_optional1_test: RuntimeError +function_subtype_optional2_test: RuntimeError +function_subtype_typearg2_test: RuntimeError +function_subtype_typearg3_test: RuntimeError +generic_function_typedef_test/01: RuntimeError +generic_methods_named_parameters_test: RuntimeError +generic_methods_optional_parameters_test: RuntimeError +instanceof4_test/01: RuntimeError +instanceof4_test/none: RuntimeError +malbounded_type_cast_test/none: RuntimeError +malbounded_type_test_test/none: RuntimeError +map_literal8_test: RuntimeError +mixin_type_parameters_mixin_extends_test: RuntimeError +mixin_type_parameters_mixin_test: RuntimeError +mixin_type_parameters_super_extends_test: RuntimeError +mixin_type_parameters_super_test: RuntimeError +no_such_method_mock_test: RuntimeError +override_inheritance_mixed_test/08: MissingCompileTimeError +regress_28341_test: Fail # Issue 28340 +type_variable_nested_test/01: RuntimeError +type_variable_promotion_test: RuntimeError -[ $runtime == vm && $checked && $mode == debug && $compiler != dartk ] -tearoff_dynamic_test: Crash +[ $compiler != dartkp && $mode == product && $runtime == dart_precompiled ] +vm/type_vm_test/28: MissingRuntimeError +vm/type_vm_test/29: MissingRuntimeError +vm/type_vm_test/30: MissingRuntimeError +vm/type_vm_test/31: MissingRuntimeError +vm/type_vm_test/32: MissingRuntimeError +vm/type_vm_test/33: MissingRuntimeError +vm/type_vm_test/34: MissingRuntimeError +vm/type_vm_test/35: MissingRuntimeError +vm/type_vm_test/36: MissingRuntimeError -[ $runtime == vm && $compiler == none ] +[ $compiler == none && $mode != product && $runtime == vm ] +vm/type_vm_test/none: RuntimeError + +[ $compiler == none && $runtime == vm ] async_star_cancel_while_paused_test: RuntimeError async_star_pause_test: Fail, OK async_star_regression_2238_test: CompileTimeError, RuntimeError class_keyword_test/02: MissingCompileTimeError # Issue 13627 constructor3_test: Fail, OK, Pass +cyclic_type2_test: Fail, OK cyclic_type_test/02: Fail, OK # Non-contractive types are not supported in the vm. cyclic_type_test/04: Fail, OK -cyclic_type2_test: Fail, OK -duplicate_export_negative_test: Fail # Issue 6134 deferred_redirecting_factory_test: Fail, Crash # Issue 23408 +duplicate_export_negative_test: Fail # Issue 6134 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 example_constructor_test: Fail, OK export_ambiguous_main_negative_test: Fail # Issue 14763 @@ -1087,7 +1194,15 @@ unicode_bom_test: Fail # Issue 16067 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. vm/regress_29145_test: Skip # Issue 29145 -[ $runtime == vm && $compiler == none && $checked ] +[ $compiler == none && $runtime == vm && $system == fuchsia ] +async_await_test: RuntimeError +async_star_test: RuntimeError +closure_cycles_test: Pass, Crash +vm/causal_async_exception_stack2_test: RuntimeError +vm/causal_async_exception_stack_test: RuntimeError +vm/math_vm_test: Crash + +[ $compiler == none && $runtime == vm && $checked ] assert_initializer_test/4*: MissingCompileTimeError # Issue 392. The VM doesn't enforce that potentially const expressions are actually const expressions when the constructor is called with `const`. generic_functions_test: Pass # Issue 25869 generic_local_functions_test: Pass # Issue 25869 @@ -1096,137 +1211,14 @@ generic_methods_generic_function_parameter_test: Pass # Issue 25869 generic_methods_new_test: Pass # Issue 25869 generic_methods_test: Pass # Issue 25869 -[ $runtime == vm && $compiler == none && !$checked ] +[ $compiler == none && $runtime == vm && !$checked ] assertion_initializer_const_error_test/01: MissingCompileTimeError assertion_initializer_const_function_error_test/01: MissingCompileTimeError generic_methods_dynamic_test/02: MissingRuntimeError generic_methods_dynamic_test/04: MissingRuntimeError type_parameter_test/05: MissingCompileTimeError -[ $runtime == vm && $compiler == none && $system == windows && $arch == ia32 ] -vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 +[ $compiler != dartk && $runtime == vm || $compiler != dartkp && $runtime == dart_precompiled ] +built_in_identifier_type_annotation_test/22: MissingCompileTimeError # Error only in strong mode +int64_literal_test/*: Skip # This is testing Dart 2.0 int64 semantics. -[ $runtime == vm && $compiler == none && $arch == ia32 ] -vm/regress_24517_test: Pass, Fail # Issue 24517. - -[ $runtime == vm && $compiler == none && $mode != product ] -vm/type_vm_test/none: RuntimeError - -[ $runtime == vm && $compiler == none && $system == fuchsia ] -async_await_test: RuntimeError -async_star_test: RuntimeError -closure_cycles_test: Pass, Crash -vm/causal_async_exception_stack_test: RuntimeError -vm/causal_async_exception_stack2_test: RuntimeError -vm/math_vm_test: Crash - -[ $runtime == vm && $compiler == app_jit ] -async_star_cancel_while_paused_test: RuntimeError -async_star_pause_test: Fail, OK -async_star_regression_2238_test: CompileTimeError, RuntimeError -class_keyword_test/02: MissingCompileTimeError # Issue 13627 -constructor3_test: Fail, OK, Pass -ct_const2_test: Skip # Incompatible flag: --compile_all -cyclic_type2_test: Fail, OK -cyclic_type_test/02: Fail, OK -cyclic_type_test/04: Fail, OK -deferred_load_constants_test/02: Fail -deferred_load_constants_test/03: Fail -deferred_load_constants_test/05: Fail -deferred_not_loaded_check_test: RuntimeError -deferred_redirecting_factory_test: Fail, Crash # Issue 23408 -duplicate_export_negative_test: Fail # Issue 6134 -dynamic_prefix_core_test/01: RuntimeError # Issue 12478 -example_constructor_test: Fail, OK -export_ambiguous_main_negative_test: Fail # Issue 14763 -field_initialization_order_test: Fail, OK -generalized_void_syntax_test: CompileTimeError # Issue #30176 -generic_methods_type_expression_test: RuntimeError # Issue 25869 / 27460 -hello_dart_test: Skip # Incompatible flag: --compile_all -language_2/least_upper_bound_expansive_test/none: CompileTimeError -library_env_test/has_html_support: RuntimeError, OK -library_env_test/has_no_io_support: RuntimeError, OK -main_not_a_function_test: Skip -mixin_illegal_super_use_test: Skip # Issues 24478 and 23773 -mixin_illegal_superclass_test: Skip # Issues 24478 and 23773 -multiline_strings_test: Fail # Issue 23020 -no_main_test/01: Skip -regress_21793_test/01: MissingCompileTimeError -regress_23408_test: Crash -super_test: Fail, OK -type_parameter_test/05: MissingCompileTimeError -type_variable_scope_test/03: MissingCompileTimeError -unicode_bom_test: Fail # Issue 16067 -vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. -vm/regress_27201_test: Fail -vm/regress_29145_test: Skip # Issue 29145 -vm/type_cast_vm_test: RuntimeError # Expects line and column numbers - -[ $runtime == vm && $compiler == app_jit && $checked ] -generic_functions_test: Pass # Issue 25869 -generic_methods_function_type_test: Pass # Issue 25869 -generic_methods_test: Pass # Issue 25869 -generic_methods_new_test: Pass # Issue 25869 -generic_local_functions_test: Pass # Issue 25869 -generic_methods_generic_function_parameter_test: Pass # Issue 25869 - -[ $runtime == vm && $compiler == app_jit && !$checked ] -assertion_initializer_const_error_test/01: MissingCompileTimeError -generic_methods_bounds_test/02: MissingRuntimeError -generic_methods_dynamic_test/02: MissingRuntimeError -generic_methods_dynamic_test/04: MissingRuntimeError - -[ $runtime == vm && $compiler == app_jit && $arch == ia32 ] -vm/regress_24517_test: Pass, Fail # Issue 24517. - -[ $runtime == vm && $compiler == app_jit && $mode != product ] -vm/type_vm_test/none: RuntimeError - -[ $runtime == vm && $arch == arm64 ] -closure_cycles_test: Pass, Slow -large_class_declaration_test: SkipSlow # Uses too much memory. - -[ $runtime == vm && $compiler != dartk && $mode == product ] -vm/causal_async_exception_stack_test: SkipByDesign -vm/causal_async_exception_stack2_test: SkipByDesign -vm/regress_27201_test: Fail -vm/type_vm_test/28: MissingRuntimeError -vm/type_vm_test/29: MissingRuntimeError -vm/type_vm_test/30: MissingRuntimeError -vm/type_vm_test/31: MissingRuntimeError -vm/type_vm_test/32: MissingRuntimeError -vm/type_vm_test/33: MissingRuntimeError -vm/type_vm_test/34: MissingRuntimeError -vm/type_vm_test/35: MissingRuntimeError -vm/type_vm_test/36: MissingRuntimeError -deferred_load_constants_test/02: Fail -deferred_load_constants_test/03: Fail -deferred_load_constants_test/05: Fail -deferred_not_loaded_check_test: RuntimeError - -[ $compiler != dartkp && $runtime == dart_precompiled && $mode == product ] -vm/type_vm_test/28: MissingRuntimeError -vm/type_vm_test/29: MissingRuntimeError -vm/type_vm_test/30: MissingRuntimeError -vm/type_vm_test/31: MissingRuntimeError -vm/type_vm_test/32: MissingRuntimeError -vm/type_vm_test/33: MissingRuntimeError -vm/type_vm_test/34: MissingRuntimeError -vm/type_vm_test/35: MissingRuntimeError -vm/type_vm_test/36: MissingRuntimeError - -[ $runtime == vm && $compiler != dartk ] -generic_no_such_method_dispatcher_simple_test: Skip # This test is only for kernel. -type_promotion_functions_test/01: MissingCompileTimeError - -[ $runtime == vm && $compiler != dartk ] -fuzzy_arrows_test/01: MissingCompileTimeError -fuzzy_arrows_test/03: RuntimeError -type_promotion_functions_test/05: MissingCompileTimeError -type_promotion_functions_test/06: MissingCompileTimeError -type_promotion_functions_test/07: MissingCompileTimeError -type_promotion_functions_test/08: MissingCompileTimeError -type_promotion_functions_test/10: MissingCompileTimeError - -[ $runtime == vm && $mode == release && $arch == ia32 ] -deep_nesting1_negative_test: Crash, Pass # Issue 31496 diff --git a/tests/lib/analyzer/analyze_library.status b/tests/lib/analyzer/analyze_library.status index c36c18a82b2..55060cfee5c 100644 --- a/tests/lib/analyzer/analyze_library.status +++ b/tests/lib/analyzer/analyze_library.status @@ -2,16 +2,6 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $compiler == dart2analyzer && $use_sdk ] -lib/*: Skip # Issue 28620 -lib/analyzer: Skip # Issue 28620 -lib/analysis_server: Skip # Issue 28620 -lib/dev_compiler: Skip # Issue 28620 -lib/front_end: Skip # Issue 28620 - -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - [ $compiler == dart2analyzer ] lib/_blink/dartium/_blink_dartium: Skip # TODO: Remove Dartium lib/_chrome/dart2js/chrome_dart2js: CompileTimeError # Issue 16522 @@ -22,6 +12,8 @@ lib/html/html_common/html_common_dart2js: CompileTimeError # Issue 16522 lib/indexed_db/dart2js/indexed_db_dart2js: CompileTimeError # Issue 16522 lib/indexed_db/dartium/indexed_db_dartium: Skip # TODO: Remove Dartium lib/js/dart2js/js_dart2js: CompileTimeError # Issue 16522 +lib/js/dartium/js_dartium: Skip # TODO: Remove Dartium +lib/js_util/dartium/js_util_dartium: Skip # TODO: Remove Dartium lib/svg/dart2js/svg_dart2js: CompileTimeError # Issue 16522 lib/svg/dartium/svg_dartium: Skip # TODO: Remove Dartium lib/typed_data/dart2js/native_typed_data_dart2js: CompileTimeError # Issue 16522 @@ -32,5 +24,14 @@ lib/web_gl/dart2js/web_gl_dart2js: CompileTimeError # Issue 16522 lib/web_gl/dartium/web_gl_dartium: Skip # TODO: Remove Dartium lib/web_sql/dart2js/web_sql_dart2js: CompileTimeError # Issue 16522 lib/web_sql/dartium/web_sql_dartium: Skip # TODO: Remove Dartium -lib/js/dartium/js_dartium: Skip # TODO: Remove Dartium -lib/js_util/dartium/js_util_dartium: Skip # TODO: Remove Dartium + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + +[ $compiler == dart2analyzer && $use_sdk ] +lib/*: Skip # Issue 28620 +lib/analysis_server: Skip # Issue 28620 +lib/analyzer: Skip # Issue 28620 +lib/dev_compiler: Skip # Issue 28620 +lib/front_end: Skip # Issue 28620 + diff --git a/tests/lib/lib.status b/tests/lib/lib.status index 23b23a2d3c9..b7a1b22d0b5 100644 --- a/tests/lib/lib.status +++ b/tests/lib/lib.status @@ -2,20 +2,36 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $strong ] -*: SkipByDesign # tests/lib_strong has the strong mode versions of these tests. +[ $arch == simarm64 ] +convert/utf85_test: Skip # Pass, Slow Issue 20111. -[ ! $checked ] -mirrors/redirecting_factory_different_type_test: SkipByDesign # Tests type checks. +[ $arch == simarmv5te ] +mirrors/mirrors_reader_test: Pass, Slow + +[ $compiler == app_jit ] +mirrors/*: Skip # Issue 27929: Triage + +[ $compiler == dart2analyzer ] +mirrors/generic_f_bounded_mixin_application_test: StaticWarning # Test Issue +mirrors/immutable_collections_test: StaticWarning, OK # Expect failure for any type of Iterable. +mirrors/inference_and_no_such_method_test: StaticWarning, OK # Expect to trigger noSuchMethod. +mirrors/mirrors_nsm_mismatch_test: StaticWarning, OK # Expect to trigger noSuchMethod. +mirrors/mirrors_nsm_test: StaticWarning, OK # Expect to trigger noSuchMethod. +mirrors/redirecting_factory_test/01: StaticWarning # test issue X, The return type 'Class' of the redirected constructor is not assignable to 'Class' +mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class' of the redirected constructor is not assignable to 'Class +mirrors/removed_api_test: StaticWarning, OK # Deliberately refers to undeclared members. +mirrors/repeated_private_anon_mixin_app_test: StaticWarning, OK # Intentional library name conflict. +profiler/metrics_num_test: Fail # Issue 20309 +profiler/metrics_test: Fail # Issue 20309 [ $compiler == dart2js ] async/schedule_microtask6_test: RuntimeError # global error handling is not supported. Issue 5958 - - +convert/base64_test/01: Fail, OK # Uses bit-wise operations to detect invalid values. Some large invalid values accepted by dart2js. +convert/chunked_conversion_utf88_test: Slow, Pass +convert/utf85_test: Slow, Pass +developer/timeline_test: Skip # Not supported math/double_pow_test: RuntimeError math/low_test: RuntimeError - -mirrors/invocation_fuzz_test: RuntimeError # Issue 29086 mirrors/class_declarations_test/none: RuntimeError # Issue 13440 mirrors/class_mirror_location_test: RuntimeError # Issue 6490 mirrors/closurization_equivalence_test: RuntimeError # Issue 6490 @@ -25,6 +41,8 @@ mirrors/generic_f_bounded_mixin_application_test: RuntimeError # Issue 12087 mirrors/generic_function_typedef_test: RuntimeError # Issue 12333 mirrors/generic_interface_test: RuntimeError # Issue 12087 mirrors/get_field_static_test/00: RuntimeError # Issue 21323 +mirrors/globalized_closures2_test/00: RuntimeError # Issue 17118. Please remove the multi-test comments when this test starts succeeding. +mirrors/globalized_closures_test/00: RuntimeError # Issue 17118. Please remove the multi-test comments when this test starts succeeding. mirrors/hierarchy_invariants_test: RuntimeError # Issue 15262 mirrors/hot_get_field_test: CompileTimeError # Issue 12164 mirrors/hot_set_field_test: CompileTimeError # Issue 12164 @@ -33,77 +51,195 @@ mirrors/initializing_formals_test/01: RuntimeError # Issue 6490 mirrors/initializing_formals_test/03: CompileTimeError # Issue 12164 mirrors/instance_members_test: RuntimeError # Issue 14633 mirrors/instantiate_abstract_class_test: RuntimeError # Issue 6490 +mirrors/invocation_fuzz_test: RuntimeError # Issue 29086 mirrors/invoke_call_on_closure_test: RuntimeError # 6490 -mirrors/invoke_call_through_getter_test/named: RuntimeError # Issue 12863. When updating the status, remove the "///" in the test. mirrors/invoke_call_through_getter_previously_accessed_test/named: RuntimeError # Issue 12863. When updating the status, remove the "///" in the test. +mirrors/invoke_call_through_getter_test/named: RuntimeError # Issue 12863. When updating the status, remove the "///" in the test. mirrors/invoke_call_through_implicit_getter_previously_accessed_test/named: RuntimeError # Issue 12863. When updating the status, remove the "///" in the test. mirrors/invoke_call_through_implicit_getter_test: RuntimeError # Issue 17638 mirrors/invoke_named_test/none: RuntimeError # Issue 12863 mirrors/invoke_private_test: CompileTimeError # Issue 12164 mirrors/invoke_private_wrong_library_test: CompileTimeError # Issue 12164 mirrors/library_declarations_test/none: RuntimeError # Issue 13439, Issue 13733 -mirrors/library_exports_shown_test: RuntimeError # Issue 6490 mirrors/library_exports_hidden_test: RuntimeError # Issue 6490 +mirrors/library_exports_shown_test: RuntimeError # Issue 6490 mirrors/library_import_deferred_loading_test: RuntimeError # Issue 6490 -mirrors/library_imports_deferred_test: RuntimeError # Issue 6490 -mirrors/library_imports_metadata_test: RuntimeError # Issue 6490 mirrors/library_imports_bad_metadata_test/none: RuntimeError # Issue 6490 -mirrors/library_imports_shown_test: RuntimeError # Issue 6490 +mirrors/library_imports_deferred_test: RuntimeError # Issue 6490 mirrors/library_imports_hidden_test: RuntimeError # Issue 6490 -mirrors/library_imports_prefixed_test: RuntimeError # Issue 6490 +mirrors/library_imports_metadata_test: RuntimeError # Issue 6490 mirrors/library_imports_prefixed_show_hide_test: RuntimeError # Issue 6490 +mirrors/library_imports_prefixed_test: RuntimeError # Issue 6490 +mirrors/library_imports_shown_test: RuntimeError # Issue 6490 mirrors/library_uri_io_test: SkipByDesign # Uses dart:io. mirrors/load_library_test: RuntimeError # Issue 6335 mirrors/local_function_is_static_test: RuntimeError # Issue 6335 mirrors/lru_test: Skip # dart2js_native/lru_test is used instead mirrors/metadata_scope_test/none: RuntimeError # Issue 10905 +mirrors/method_mirror_location_test: RuntimeError # Issue 6490 mirrors/method_mirror_name_test: RuntimeError # Issue 6335 mirrors/method_mirror_properties_test: RuntimeError # Issue 11861 -mirrors/method_mirror_source_test : RuntimeError # Issue 6490 -mirrors/method_mirror_source_line_ending_test : RuntimeError # Issue 6490 -mirrors/method_mirror_location_test: RuntimeError # Issue 6490 -mirrors/mirrors_test: RuntimeError # TODO(ahe): I'm working on fixing this. When removing this line please change the "endsWith" to "/mirrors_test.dart". -mirrors/mirrors_nsm_test/dart2js: RuntimeError # Issue 19353 +mirrors/method_mirror_source_line_ending_test: RuntimeError # Issue 6490 +mirrors/method_mirror_source_test: RuntimeError # Issue 6490 mirrors/mirrors_nsm_mismatch_test: RuntimeError # Issue 19353 -mirrors/mixin_test: RuntimeError # Issue 12464 +mirrors/mirrors_nsm_test/dart2js: RuntimeError # Issue 19353 +mirrors/mirrors_reader_test: Slow, RuntimeError # Issue 16589 +mirrors/mirrors_test: RuntimeError # TODO(ahe): I'm working on fixing this. When removing this line please change the "endsWith" to "/mirrors_test.dart". mirrors/mixin_application_test: RuntimeError # Issue 12464 +mirrors/mixin_test: RuntimeError # Issue 12464 mirrors/other_declarations_location_test: RuntimeError # Issue 10905 -mirrors/parameter_test/none: RuntimeError # Issue 6490 mirrors/parameter_of_mixin_app_constructor_test: RuntimeError # Issue 6490 +mirrors/parameter_test/none: RuntimeError # Issue 6490 mirrors/private_class_field_test: CompileTimeError mirrors/private_symbol_test: CompileTimeError # Issue 13597 mirrors/private_types_test: RuntimeError # Issue 6490 -mirrors/redirecting_factory_test/none: RuntimeError # Issue 6490 -mirrors/redirecting_factory_test/02: RuntimeError # Issue 6490 -mirrors/reflected_type_function_type_test: RuntimeError # Issue 12607 -mirrors/reflected_type_special_types_test: RuntimeError # Issue 12607 -mirrors/reflected_type_typedefs_test: RuntimeError # Issue 12607 -mirrors/reflected_type_typevars_test: RuntimeError # Issue 12607 -mirrors/relation_assignable_test: RuntimeError # Issue 6490 -mirrors/relation_assignable2_test: RuntimeError # Issue 6490 -mirrors/relation_subtype_test: RuntimeError # Issue 6490 -mirrors/repeated_private_anon_mixin_app_test: RuntimeError # Issue 14670 -mirrors/symbol_validation_test/01: RuntimeError # Issue 13597 -mirrors/static_members_test: RuntimeError # Issue 14633, Issue 12164 -mirrors/typedef_test: RuntimeError # Issue 6490 -mirrors/typedef_metadata_test: RuntimeError # Issue 12785 -mirrors/typedef_reflected_type_test/01: RuntimeError # Issue 12607 -mirrors/typevariable_mirror_metadata_test: RuntimeError # Issue 10905 -mirrors/type_variable_is_static_test: RuntimeError # Issue 6335 -mirrors/type_variable_owner_test/01: RuntimeError # Issue 12785 -mirrors/variable_is_const_test/none: RuntimeError # Issue 14671 mirrors/raw_type_test/01: RuntimeError # Issue 6490 -mirrors/mirrors_reader_test: Slow, RuntimeError # Issue 16589 -mirrors/regress_26187_test: RuntimeError # Issue 6490 +mirrors/redirecting_factory_test/02: RuntimeError # Issue 6490 +mirrors/redirecting_factory_test/none: RuntimeError # Issue 6490 +mirrors/reflected_type_function_type_test: RuntimeError # Issue 12607 mirrors/reflected_type_generics_test/01: Fail # Issues in reflecting generic typedefs. mirrors/reflected_type_generics_test/02: Fail # Issues in reflecting bounded type variables. mirrors/reflected_type_generics_test/03: Fail # Issues in reflecting generic typedefs. The following tests fail because we have disabled a test in `reflectClassByName`. `MirrorsUsed` leads to classes not having the information necessary to correctly handle these checks. mirrors/reflected_type_generics_test/04: Fail # Issues in reflecting bounded type variables. The following tests fail because we have disabled a test in `reflectClassByName`. `MirrorsUsed` leads to classes not having the information necessary to correctly handle these checks. mirrors/reflected_type_generics_test/05: Fail # Issues in reflecting generic typedefs. The following tests fail because we have disabled a test in `reflectClassByName`. `MirrorsUsed` leads to classes not having the information necessary to correctly handle these checks. mirrors/reflected_type_generics_test/06: Fail # Issues in reflecting bounded type variables. The following tests fail because we have disabled a test in `reflectClassByName`. `MirrorsUsed` leads to classes not having the information necessary to correctly handle these checks. +mirrors/reflected_type_special_types_test: RuntimeError # Issue 12607 +mirrors/reflected_type_typedefs_test: RuntimeError # Issue 12607 +mirrors/reflected_type_typevars_test: RuntimeError # Issue 12607 +mirrors/regress_26187_test: RuntimeError # Issue 6490 +mirrors/relation_assignable2_test: RuntimeError # Issue 6490 +mirrors/relation_assignable_test: RuntimeError # Issue 6490 +mirrors/relation_subtype_test: RuntimeError # Issue 6490 +mirrors/repeated_private_anon_mixin_app_test: RuntimeError # Issue 14670 +mirrors/static_members_test: RuntimeError # Issue 14633, Issue 12164 +mirrors/symbol_validation_test/01: RuntimeError # Issue 13597 +mirrors/type_variable_is_static_test: RuntimeError # Issue 6335 +mirrors/type_variable_owner_test/01: RuntimeError # Issue 12785 +mirrors/typedef_metadata_test: RuntimeError # Issue 12785 +mirrors/typedef_reflected_type_test/01: RuntimeError # Issue 12607 +mirrors/typedef_test: RuntimeError # Issue 6490 +mirrors/typevariable_mirror_metadata_test: RuntimeError # Issue 10905 +mirrors/variable_is_const_test/none: RuntimeError # Issue 14671 +profiler/metrics_num_test: Skip # Because of a int / double type test. +typed_data/int32x4_bigint_test: RuntimeError # Issue 1533 +typed_data/int64_list_load_store_test: RuntimeError # Issue 10275 +typed_data/typed_data_hierarchy_int64_test: RuntimeError # Issue 10275 -[ $compiler == none && ! $checked ] -mirrors/reflected_type_generics_test/02: Fail, Ok # Type check for a bounded type argument. +[ $compiler == dartkp ] +mirrors/*: Skip # mirrors are not supported by under precompilation + +[ $compiler == precompiler ] +convert/chunked_conversion_utf88_test: Pass, Timeout +convert/utf85_test: Pass, Timeout +mirrors/*: SkipByDesign + +[ $mode == product ] +developer/timeline_test: Skip # Not supported + +[ $runtime == ff ] +convert/streamed_conversion_utf8_decode_test: Pass, Slow # Issue 12029, FF setTimeout can fire early: https://bugzilla.mozilla.org/show_bug.cgi?id=291386 +mirrors/mirrors_reader_test: Timeout, Slow, RuntimeError # Issue 16589, FF setTimeout can fire early: https://bugzilla.mozilla.org/show_bug.cgi?id=291386 + +[ $runtime == flutter ] +async/catch_errors11_test: Skip # Flutter Issue 9113 +async/intercept_schedule_microtask2_test: Skip # Flutter Issue 9113 +async/intercept_schedule_microtask5_test: Skip # Flutter Issue 9113 +async/intercept_schedule_microtask6_test: Skip # Flutter Issue 9113 +async/stream_empty_test: Skip # Flutter Issue 9113 +async/stream_event_transformed_test: Skip # Flutter Issue 9113 +mirrors/*: Skip # Flutter does not support mirrors. + +[ $runtime == vm ] +convert/streamed_conversion_json_utf8_decode_test: Pass, Slow # Infrequent timeouts. + +[ !$checked ] +mirrors/redirecting_factory_different_type_test: SkipByDesign # Tests type checks. + +[ $hot_reload ] +async/timer_regress22626_test: Pass, RuntimeError # Timing dependent. +mirrors/generic_bounded_by_type_parameter_test/02: Fail # Type equality - Issue 26869 +mirrors/generic_bounded_test/02: Fail # Type equality - Issue 26869 + +[ $strong ] +*: SkipByDesign # tests/lib_strong has the strong mode versions of these tests. + +[ $arch == ia32 && $mode == debug && $system == windows ] +convert/streamed_conversion_json_utf8_decode_test: Skip # Verification OOM. + +[ $arch != ia32 && $arch != simarm && $arch != simarmv5te && $arch != simarmv6 && $arch != x64 && $mode == debug ] +convert/streamed_conversion_json_utf8_decode_test: Skip # Verification not yet implemented. + +[ $arch == x64 && $compiler == dartk && $mode == debug && $runtime == vm ] +mirrors/invocation_fuzz_test: Skip # Because it times out, issue 29439. +mirrors/variable_is_const_test/01: Crash + +[ $arch == x64 && $mode == debug && $system == windows && ($runtime == dart_precompiled || $runtime == vm) ] +convert/streamed_conversion_json_utf8_decode_test: Pass, Slow + +[ $builder_tag == asan && $mode == debug && ($runtime == dart_precompiled || $runtime == vm) ] +convert/streamed_conversion_json_utf8_decode_test: Skip # Timeout. +mirrors/immutable_collections_test: SkipSlow # Timeout. + +[ $builder_tag == strong && $compiler == dart2analyzer ] +*: Skip # Issue 28649 + +[ $compiler == dart2analyzer && $checked ] +mirrors/regress_16321_test/01: MissingCompileTimeError # Issue 16391 + +[ $compiler == dart2js && $mode == debug ] +mirrors/native_class_test: Pass, Slow + +[ $compiler == dart2js && $runtime == chromeOnAndroid ] +typed_data/setRange_2_test: RuntimeError # TODO(dart2js-team): Please triage this failure. +typed_data/setRange_3_test: RuntimeError # TODO(dart2js-team): Please triage this failure. + +[ $compiler == dart2js && $runtime == d8 && $system == windows ] +async/*deferred*: Pass, RuntimeError # Issue 17458 +mirrors/*deferred*: Pass, RuntimeError # Issue 17458 + +[ $compiler == dart2js && $runtime == jsshell ] +async/catch_errors12_test: Fail # Timer interface not supported: Issue 7728. +async/catch_errors13_test: Fail # Timer interface not supported: Issue 7728. +async/catch_errors14_test: Fail # Timer interface not supported: Issue 7728. +async/catch_errors15_test: Fail # Timer interface not supported: Issue 7728. +async/catch_errors22_test: RuntimeError # Timer interface not supported: Issue 7728. +async/catch_errors8_test: Fail # Timer interface not supported: Issue 7728. +async/future_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_asyncexpand_test: RuntimeError # Timer interface not supported: Issue 7728. +async/stream_asyncmap_test: RuntimeError # Timer interface not supported: Issue 7728. +async/stream_controller_async_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_controller_test: Fail # Timer interface not supported: Issue 7728. +async/stream_from_iterable_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_periodic2_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_periodic3_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_periodic4_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_periodic5_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_periodic6_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_periodic_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_state_nonzero_timer_test: RuntimeError # Timer interface not supported; Issue 7728. +async/stream_subscription_cancel_test: Fail # Timer interface not supported: Issue 7728. +async/stream_take_test: Fail # Timer interface not supported: Issue 7728. +async/stream_timeout_test: Fail # Timer interface not supported: Issue 7728. +async/stream_transformation_broadcast_test: RuntimeError # Timer interface not supported: Issue 7728. +async/timer_cancel1_test: RuntimeError, OK # Needs Timer to run. +async/timer_cancel2_test: RuntimeError, OK # Needs Timer to run. +async/timer_cancel_test: RuntimeError, OK # Needs Timer to run. +async/timer_isActive_test: RuntimeError # Timer interface not supported: Issue 7728. +async/timer_regress22626_test: RuntimeError # Non-zero timers not supported; Issue 7728. +async/timer_repeat_test: RuntimeError, OK # Needs Timer to run. +async/timer_test: RuntimeError, OK # Needs Timer to run. +async/zone_bind_test: Fail # Timer interface not supported: Issue 7728. +async/zone_create_periodic_timer_test: RuntimeError # Timer interface not supported: Issue 7728. +async/zone_create_timer2_test: RuntimeError # Timer interface not supported: Issue 7728. +async/zone_empty_description2_test: RuntimeError # Timer interface not supported: Issue 7728. +mirrors/mirrors_reader_test: Skip # Running in v8 suffices. Issue 16589 - RuntimeError. Issue 22130 - Crash (out of memory). + +[ $compiler == dart2js && $runtime == safarimobilesim ] +mirrors/mirrors_reader_test: SkipSlow # Times out. Issue 20806. +mirrors/null_test: Fail # Issue 16831 + +[ $compiler == dart2js && $checked ] +convert/utf85_test: Pass, Slow # Issue 12029. [ $compiler == dart2js && $fast_startup ] mirrors/*: Fail # mirrors not supported @@ -117,145 +253,53 @@ mirrors/metadata_constructor_arguments_test/0*: Pass # expects failure, but it f mirrors/metadata_nested_constructor_call_test/0*: Pass # expects failure, but it fails for the wrong reason mirrors/metadata_scope_test/01: Pass # expects failure, but it fails for the wrong reason mirrors/mirror_in_static_init_test/01: Pass # expects failure, but it fails for the wrong reason +mirrors/model_test: Pass # this is ok mirrors/parameter_is_const_test/01: Pass # expects failure, but it fails for the wrong reason +mirrors/regress_16321_test/01: Pass # expects failure, but if fails for the wrong reason mirrors/syntax_error_test/01: Pass # expects failure, but it fails for the wrong reason mirrors/variable_is_const_test/01: Pass # expects failure, but it fails for the wrong reason -mirrors/model_test: Pass # this is ok -[ $compiler == dart2js && $fast_startup ] -mirrors/regress_16321_test/01: Pass # expects failure, but if fails for the wrong reason - -[ $runtime == safari || $runtime == safarimobilesim ] -typed_data/int32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). -typed_data/float32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). -convert/json_test: Fail # https://bugs.webkit.org/show_bug.cgi?id=134920 - -[ ($runtime == safari && $builder_tag == mac10_7)|| $runtime == safarimobilesim ] -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 == dart2js && $runtime == chromeOnAndroid ] -typed_data/setRange_2_test: RuntimeError # TODO(dart2js-team): Please triage this failure. -typed_data/setRange_3_test: RuntimeError # TODO(dart2js-team): Please triage this failure. - -[ $compiler == dart2js && ($runtime == drt || $runtime == ie11) ] -math/math_test: RuntimeError -math/math2_test: RuntimeError - -[ $compiler == dart2js && $runtime == jsshell ] -async/timer_regress22626_test: RuntimeError # Non-zero timers not supported; Issue 7728. -async/future_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_from_iterable_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_state_nonzero_timer_test: RuntimeError # Timer interface not supported; Issue 7728. -async/timer_cancel_test: RuntimeError,OK # Needs Timer to run. -async/timer_cancel1_test: RuntimeError,OK # Needs Timer to run. -async/timer_cancel2_test: RuntimeError,OK # Needs Timer to run. -async/timer_repeat_test: RuntimeError,OK # Needs Timer to run. -async/timer_test: RuntimeError,OK # Needs Timer to run. -async/stream_controller_async_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_periodic_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_periodic2_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_periodic3_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_periodic4_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_periodic5_test: RuntimeError # Timer interface not supported; Issue 7728. -async/stream_periodic6_test: RuntimeError # Timer interface not supported; Issue 7728. -async/catch_errors22_test: RuntimeError # Timer interface not supported: Issue 7728. -async/timer_isActive_test: RuntimeError # Timer interface not supported: Issue 7728. -async/zone_empty_description2_test: RuntimeError # Timer interface not supported: Issue 7728. -async/zone_create_timer2_test: RuntimeError # Timer interface not supported: Issue 7728. -async/zone_create_periodic_timer_test: RuntimeError # Timer interface not supported: Issue 7728. -async/catch_errors12_test: Fail # Timer interface not supported: Issue 7728. -async/catch_errors13_test: Fail # Timer interface not supported: Issue 7728. -async/catch_errors14_test: Fail # Timer interface not supported: Issue 7728. -async/catch_errors15_test: Fail # Timer interface not supported: Issue 7728. -async/catch_errors8_test: Fail # Timer interface not supported: Issue 7728. -async/zone_bind_test: Fail # Timer interface not supported: Issue 7728. -async/stream_timeout_test: Fail # Timer interface not supported: Issue 7728. -async/stream_asyncexpand_test: RuntimeError # Timer interface not supported: Issue 7728. -async/stream_asyncmap_test: RuntimeError # Timer interface not supported: Issue 7728. -async/stream_transformation_broadcast_test: RuntimeError # Timer interface not supported: Issue 7728. -async/stream_controller_test: Fail # Timer interface not supported: Issue 7728. -async/stream_subscription_cancel_test: Fail # Timer interface not supported: Issue 7728. -async/stream_take_test: Fail # Timer interface not supported: Issue 7728. -mirrors/mirrors_reader_test: Skip # Running in v8 suffices. Issue 16589 - RuntimeError. Issue 22130 - Crash (out of memory). - -[ $compiler == dart2js && $checked ] -convert/utf85_test: Pass, Slow # Issue 12029. - -[ $compiler == dart2js ] -convert/chunked_conversion_utf88_test: Slow, Pass -convert/utf85_test: Slow, Pass -convert/base64_test/01: Fail, OK # Uses bit-wise operations to detect invalid values. Some large invalid values accepted by dart2js. -mirrors/globalized_closures_test/00: RuntimeError # Issue 17118. Please remove the multi-test comments when this test starts succeeding. -mirrors/globalized_closures2_test/00: RuntimeError # Issue 17118. Please remove the multi-test comments when this test starts succeeding. - - -[ $compiler == dart2js && ( $browser || $runtime == d8 ) ] -async/timer_not_available_test: Fail, OK # only meant to test when there is no way to implement timer (currently only in jsshell) - -# 'js' tests import the dart:js library, so they only make sense in -# a browser environment. -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter ] -js/*: Skip - -[ $compiler == app_jit ] -mirrors/*: Skip # Issue 27929: Triage - -[ $runtime == flutter ] -mirrors/*: Skip # Flutter does not support mirrors. -async/catch_errors11_test: Skip # Flutter Issue 9113 -async/intercept_schedule_microtask2_test: Skip # Flutter Issue 9113 -async/intercept_schedule_microtask6_test: Skip # Flutter Issue 9113 -async/stream_empty_test: Skip # Flutter Issue 9113 -async/intercept_schedule_microtask5_test: Skip # Flutter Issue 9113 -async/stream_event_transformed_test: Skip # Flutter Issue 9113 +[ $compiler == dart2js && $host_checked ] +mirrors/metadata_allowed_values_test/28: Crash # Issue 25911 +mirrors/metadata_allowed_values_test/29: Crash # Issue 25911 +mirrors/metadata_allowed_values_test/30: Crash # Issue 25911 +mirrors/metadata_allowed_values_test/31: Crash # Issue 25911 [ $compiler == dart2js && $minified ] -mirrors/mirrors_used_get_name_test: RuntimeError mirrors/mirrors_used_get_name2_test: RuntimeError +mirrors/mirrors_used_get_name_test: RuntimeError -[ $runtime == ff ] -convert/streamed_conversion_utf8_decode_test: Pass, Slow # Issue 12029, FF setTimeout can fire early: https://bugzilla.mozilla.org/show_bug.cgi?id=291386 -mirrors/mirrors_reader_test: Timeout, Slow, RuntimeError # Issue 16589, FF setTimeout can fire early: https://bugzilla.mozilla.org/show_bug.cgi?id=291386 +[ $compiler == dart2js && ($runtime == d8 || $browser) ] +async/timer_not_available_test: Fail, OK # only meant to test when there is no way to implement timer (currently only in jsshell) -[ $runtime == chrome && $system == macos ] -async/timer_isActive_test: Fail, Pass, Timeout # Issue 22696 -async/catch_errors11_test: Pass, Timeout # Issue 22696 +[ $compiler == dart2js && ($runtime == drt || $runtime == ie11) ] +math/math2_test: RuntimeError +math/math_test: RuntimeError + +[ $compiler != dartk && $compiler != dartkp && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +mirrors/initializing_formals_test/01: Fail # initializing formals are implicitly final as of Dart 1.21 + +[ $compiler == dartkp && $mode == debug ] +mirrors/variable_is_const_test/01: Crash +vm/async_await_catch_stacktrace_test/01: Crash + +[ $compiler == none && $mode == product ] +mirrors/library_enumeration_deferred_loading_test: RuntimeError, OK # Deferred loaded eagerly +mirrors/library_import_deferred_loading_test: RuntimeError, OK # Deferred loaded eagerly +mirrors/load_library_test: RuntimeError, OK # Deferred loaded eagerly + +[ $compiler == none && !$checked ] +mirrors/reflected_type_generics_test/02: Fail, OK # Type check for a bounded type argument. + +[ $mode == debug && ($compiler == dartk || $compiler == dartkp) ] +mirrors/other_declarations_location_test: Crash # assertion error, TypeParameter not having position. [ $runtime == chrome && $system == linux ] mirrors/native_class_test: Pass, Slow -[ $runtime == chrome || $runtime == ff ] -convert/streamed_conversion_utf8_encode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050 -async/stream_timeout_test: SkipSlow # Times out. Issue 22050 - -[ $compiler == dart2js ] -typed_data/typed_data_hierarchy_int64_test: RuntimeError # Issue 10275 -typed_data/int32x4_bigint_test: RuntimeError # Issue 1533 -typed_data/int64_list_load_store_test: RuntimeError # Issue 10275 - -[ $runtime == vm ] -convert/streamed_conversion_json_utf8_decode_test: Pass, Slow # Infrequent timeouts. - -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter ] -async/timer_not_available_test: Fail, OK -mirrors/native_class_test: Fail, OK # This test is meant to run in a browser. -mirrors/deferred_type_test: CompileTimeError, OK # Don't have a multitest marker for dynamic compile time errors. - -[ ($runtime == vm || $runtime == dart_precompiled || $runtime == flutter) && $compiler != dartk && $compiler != dartkp ] -mirrors/initializing_formals_test/01: Fail # initializing formals are implicitly final as of Dart 1.21 - -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -async/timer_not_available_test: SkipByDesign # only meant to test when there is no way to implement timer (currently only in d8) - -mirrors/symbol_validation_test: RuntimeError # Issue 13596 - -mirrors/mirrors_used*: SkipByDesign # Invalid tests. MirrorsUsed does not have a specification, and dart:mirrors is not required to hide declarations that are not covered by any MirrorsUsed annotation. - +[ $runtime == chrome && $system == macos ] +async/catch_errors11_test: Pass, Timeout # Issue 22696 +async/timer_isActive_test: Fail, Pass, Timeout # Issue 22696 [ $runtime == vm && $system == fuchsia ] async/first_regression_test: RuntimeError # These use package:unittest @@ -289,116 +333,26 @@ async/timer_isActive_test: RuntimeError # These use package:unittest async/timer_repeat_test: RuntimeError # These use package:unittest async/timer_test: RuntimeError # These use package:unittest convert/json_lib_test: RuntimeError # These use package:unittest +mirrors/invocation_fuzz_test: Crash # fstat bug, ZX-479. mirrors/library_uri_io_test: RuntimeError # These use package:unittest mirrors/library_uri_package_test: RuntimeError # These use package:unittest -mirrors/invocation_fuzz_test: Crash # fstat bug, ZX-479. -[ $compiler == dart2js && $runtime == safarimobilesim ] -mirrors/mirrors_reader_test: SkipSlow # Times out. Issue 20806. -mirrors/null_test: Fail # Issue 16831 +# dartk: checked mode failures +[ $checked && ($compiler == dartk || $compiler == dartkp) ] +mirrors/invocation_fuzz_test/smi: Crash +mirrors/redirecting_factory_different_type_test/01: Crash # Issue 28424 +mirrors/redirecting_factory_different_type_test/none: Crash # Issue 28424 +mirrors/reflected_type_generics_test/02: Pass -[ $compiler == dart2js && $runtime == jsshell ] +[ $arch == simarm || $arch == simarmv5te || $arch == simarmv6 ] +convert/chunked_conversion_utf88_test: Skip # Pass, Slow Issue 12644. +convert/utf85_test: Skip # Pass, Slow Issue 12644. -[ $compiler == dart2analyzer ] -mirrors/generic_f_bounded_mixin_application_test: StaticWarning # Test Issue - -mirrors/redirecting_factory_test/01: StaticWarning # test issue X, The return type 'Class' of the redirected constructor is not assignable to 'Class' -mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class' of the redirected constructor is not assignable to 'Class - -mirrors/immutable_collections_test: StaticWarning, OK # Expect failure for any type of Iterable. -mirrors/inference_and_no_such_method_test: StaticWarning, OK # Expect to trigger noSuchMethod. -mirrors/mirrors_nsm_test: StaticWarning, OK # Expect to trigger noSuchMethod. -mirrors/mirrors_nsm_mismatch_test: StaticWarning, OK # Expect to trigger noSuchMethod. - -mirrors/repeated_private_anon_mixin_app_test: StaticWarning, OK # Intentional library name conflict. -mirrors/removed_api_test: StaticWarning, OK # Deliberately refers to undeclared members. - -profiler/metrics_test: Fail # Issue 20309 -profiler/metrics_num_test: Fail # Issue 20309 - -[ $compiler == dart2analyzer && $checked ] -mirrors/regress_16321_test/01: MissingCompileTimeError # Issue 16391 - -[ $compiler == dart2analyzer && $builder_tag == strong ] -*: Skip # Issue 28649 - -[ $compiler == dart2js && $runtime == d8 && $system == windows ] -async/*deferred*: Pass,RuntimeError # Issue 17458 -mirrors/*deferred*: Pass,RuntimeError # Issue 17458 - -[ $compiler == dart2js && $mode == debug ] -mirrors/native_class_test: Pass, Slow - -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) ] +[ $compiler == app_jit || $compiler == none || $compiler == precompiler ] +async/timer_not_available_test: SkipByDesign # only meant to test when there is no way to implement timer (currently only in d8) async/timer_regress22626_test: Pass, RuntimeError # Issue 28254 - -[ $arch == simarm || $arch == simarmv6 || $arch == simarmv5te ] -convert/chunked_conversion_utf88_test: Skip # Pass, Slow Issue 12644. -convert/utf85_test: Skip # Pass, Slow Issue 12644. - -[ $arch == simarmv5te ] -mirrors/mirrors_reader_test: Pass, Slow - -[ $compiler == dart2js ] -developer/timeline_test: Skip # Not supported -profiler/metrics_num_test: Skip # Because of a int / double type test. - -[ $mode == product ] -developer/timeline_test: Skip # Not supported - -[ $arch == simarm64 ] -convert/utf85_test: Skip # Pass, Slow Issue 20111. - -[ $mode == debug && $arch == ia32 && $system == windows ] -convert/streamed_conversion_json_utf8_decode_test: Skip # Verification OOM. - -[ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $arch == x64 && $system == windows ] -convert/streamed_conversion_json_utf8_decode_test: Pass, Slow - -[ $mode == debug && $arch != ia32 && $arch != x64 && $arch != simarm && $arch != simarmv6 && $arch != simarmv5te ] -convert/streamed_conversion_json_utf8_decode_test: Skip # Verification not yet implemented. - -[ ($runtime == vm || $runtime == dart_precompiled) && $mode == debug && $builder_tag == asan ] -mirrors/immutable_collections_test: SkipSlow # Timeout. -convert/streamed_conversion_json_utf8_decode_test: Skip # Timeout. - -[ $compiler == dart2js && $host_checked ] -mirrors/metadata_allowed_values_test/28: Crash # Issue 25911 -mirrors/metadata_allowed_values_test/29: Crash # Issue 25911 -mirrors/metadata_allowed_values_test/30: Crash # Issue 25911 -mirrors/metadata_allowed_values_test/31: Crash # Issue 25911 - -[ $compiler != dart2js ] - -[ $compiler == precompiler ] -mirrors/*: SkipByDesign - -[ $compiler == none && $mode == product ] -mirrors/load_library_test: RuntimeError,OK # Deferred loaded eagerly -mirrors/library_import_deferred_loading_test: RuntimeError,OK # Deferred loaded eagerly -mirrors/library_enumeration_deferred_loading_test: RuntimeError,OK # Deferred loaded eagerly - -[ $compiler == precompiler ] -convert/chunked_conversion_utf88_test: Pass, Timeout -convert/utf85_test: Pass, Timeout - -[ $hot_reload || $hot_reload_rollback ] -async/stream_transformer_test: Pass, Fail # Closure identity -mirrors/fake_function_with_call_test: SkipByDesign # Method equality - -mirrors/library_enumeration_deferred_loading_test: Crash # Deferred loading -mirrors/library_imports_deferred_test: Crash # Deferred loading -mirrors/library_import_deferred_loading_test: Crash # Deferred loading -mirrors/typedef_deferred_library_test: Crash # Deferred loading -mirrors/load_library_test: Crash # Deferred loading - -[ $hot_reload ] -mirrors/generic_bounded_test/02: Fail # Type equality - Issue 26869 -mirrors/generic_bounded_by_type_parameter_test/02: Fail # Type equality - Issue 26869 -async/timer_regress22626_test: Pass, RuntimeError # Timing dependent. - -[ ($compiler == dartk || $compiler == dartkp) && $mode == debug ] -mirrors/other_declarations_location_test: Crash # assertion error, TypeParameter not having position. +mirrors/mirrors_used*: SkipByDesign # Invalid tests. MirrorsUsed does not have a specification, and dart:mirrors is not required to hide declarations that are not covered by any MirrorsUsed annotation. +mirrors/symbol_validation_test: RuntimeError # Issue 13596 [ $compiler == dartk || $compiler == dartkp ] mirrors/class_declarations_test/01: RuntimeError @@ -423,8 +377,10 @@ mirrors/invoke_private_test: RuntimeError mirrors/invoke_private_wrong_library_test: RuntimeError mirrors/invoke_throws_test: Crash mirrors/library_declarations_test/none: RuntimeError +mirrors/library_enumeration_deferred_loading_test: CompileTimeError # Deferred loading kernel issue 28335. mirrors/library_exports_hidden_test: RuntimeError mirrors/library_exports_shown_test: RuntimeError +mirrors/library_import_deferred_loading_test: CompileTimeError # Deferred loading kernel issue 28335. mirrors/library_imports_deferred_test: RuntimeError mirrors/library_imports_hidden_test: RuntimeError mirrors/library_imports_metadata_test: RuntimeError @@ -481,6 +437,7 @@ mirrors/symbol_validation_test/01: RuntimeError mirrors/symbol_validation_test/none: RuntimeError mirrors/type_variable_is_static_test: RuntimeError mirrors/type_variable_owner_test/01: RuntimeError +mirrors/typedef_deferred_library_test: CompileTimeError # Deferred loading kernel issue 28335. mirrors/typedef_in_signature_test: RuntimeError mirrors/typedef_library_test: RuntimeError mirrors/typedef_metadata_test: RuntimeError @@ -490,30 +447,35 @@ mirrors/typedef_test: RuntimeError mirrors/typevariable_mirror_metadata_test: RuntimeError mirrors/variable_is_const_test/01: MissingCompileTimeError -[ $compiler == dartkp ] -mirrors/*: Skip # mirrors are not supported by under precompilation +[ $runtime == chrome || $runtime == ff ] +async/stream_timeout_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_utf8_encode_test: SkipSlow # Times out. Issue 22050 -[ $compiler == dartk && $runtime == vm && $mode == debug && $arch == x64 ] -mirrors/variable_is_const_test/01: Crash +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +async/timer_not_available_test: Fail, OK +js/*: Skip +mirrors/deferred_type_test: CompileTimeError, OK # Don't have a multitest marker for dynamic compile time errors. +mirrors/native_class_test: Fail, OK # This test is meant to run in a browser. -[ $compiler == dartkp && $mode == debug ] -vm/async_await_catch_stacktrace_test/01: Crash +[ $runtime == safari || $runtime == safarimobilesim ] +convert/json_test: Fail # https://bugs.webkit.org/show_bug.cgi?id=134920 +typed_data/float32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). +typed_data/int32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). -# dartk: checked mode failures -[ $checked && ($compiler == dartk || $compiler == dartkp) ] -mirrors/invocation_fuzz_test/smi: Crash -mirrors/redirecting_factory_different_type_test/01: Crash # Issue 28424 -mirrors/redirecting_factory_different_type_test/none: Crash # Issue 28424 -mirrors/reflected_type_generics_test/02: Pass +[ $runtime == safarimobilesim || $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 -# Deferred loading kernel issue 28335. -[ $compiler == dartk || $compiler == dartkp ] -mirrors/library_enumeration_deferred_loading_test: CompileTimeError # Deferred loading kernel issue 28335. -mirrors/library_import_deferred_loading_test: CompileTimeError # Deferred loading kernel issue 28335. -mirrors/typedef_deferred_library_test: CompileTimeError # Deferred loading kernel issue 28335. +[ $hot_reload || $hot_reload_rollback ] +async/stream_transformer_test: Pass, Fail # Closure identity +mirrors/fake_function_with_call_test: SkipByDesign # Method equality +mirrors/library_enumeration_deferred_loading_test: Crash # Deferred loading +mirrors/library_import_deferred_loading_test: Crash # Deferred loading +mirrors/library_imports_deferred_test: Crash # Deferred loading +mirrors/load_library_test: Crash # Deferred loading +mirrors/typedef_deferred_library_test: Crash # Deferred loading -[ $compiler == dartk && $runtime == vm && $mode == debug && $arch == x64 ] -mirrors/invocation_fuzz_test: Skip # Because it times out, issue 29439. - -[ $compiler == dartkp && $mode == debug ] -mirrors/variable_is_const_test/01: Crash diff --git a/tests/lib_2/lib_2.status b/tests/lib_2/lib_2.status index afda8a1d402..6bcb0a90dfa 100644 --- a/tests/lib_2/lib_2.status +++ b/tests/lib_2/lib_2.status @@ -2,6 +2,115 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. +[ $arch == simarm64 ] +convert/utf85_test: Skip # Pass, Slow Issue 20111. + +[ $arch == simarmv5te ] +mirrors/mirrors_reader_test: Pass, Slow + +[ $mode == product ] +developer/timeline_test: Skip # Not supported +isolate/issue_24243_parent_isolate_test: Skip # Requires checked mode + +[ $runtime == chrome ] +html/element_animate_test/timing_dict: RuntimeError # Issue 26730 +html/touchevent_test: Fail # Touch events are only supported on touch devices + +[ $runtime == drt ] +html/webgl_extensions_test: Skip # webgl does not work properly on DRT, which is 'headless'. + +[ $runtime == ff ] +convert/streamed_conversion_utf8_decode_test: Pass, Slow # Issue 12029 +mirrors/mirrors_reader_test: Timeout, Slow, RuntimeError # Issue 16589 + +[ $runtime == ie11 ] +html/audiobuffersourcenode_test/supported: Fail +html/audiocontext_test/supported: Fail +html/canvasrenderingcontext2d_test/arc: Pass, Fail # Pixel unexpected value. Please triage this failure. +html/canvasrenderingcontext2d_test/drawImage_video_element: Fail # IE does not support drawImage w/ video element +html/canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # IE does not support drawImage w/ video element +html/crypto_test/supported: Fail +html/css_test/supportsPointConversions: Fail +html/custom/document_register_type_extensions_test/single-parameter: Fail # Issue 13193. +html/deferred_multi_app_htmltest: Skip # Times out on IE. Issue 21537 +html/element_animate_test: Fail # Element.animate not supported on these browsers. +html/element_test/click: Fail # IE does not support firing this event. +html/event_test: RuntimeError # Issue 23437. Only three failures, but hard to break them out. +html/fileapi_supported_test: Fail +html/gamepad_test: Fail # IE does not support Navigator.getGamepads() +html/history_hash_change_test: Fail +html/indexeddb_5_test: Fail # Issue 12893 +html/input_element_date_test: Fail +html/input_element_datetime_test: Fail +html/input_element_month_test: Fail +html/input_element_time_test: Fail +html/input_element_week_test: Fail +html/js_transferrables_test: RuntimeError # Issue 14246 +html/js_util_test/callConstructor: RuntimeError # Issue 26978 +html/localstorage_test: Pass, RuntimeError # Issue 22166 +html/media_stream_test: Pass, Fail +html/mediasource_test: Pass, Fail # Windows 8: Supported: yes, functional: no +html/no_linked_scripts_htmltest: Skip # Times out on IE. Issue 21537 +html/notification_test: Fail # Notification not supported on IE +html/postmessage_structured_test: Fail # Does not support the MessageEvent constructor. +html/request_animation_frame_test: Skip # Times out. Issue 22167 +html/rtc_test: Fail +html/scripts_htmltest: Skip # Times out on IE. Issue 21537 +html/serialized_script_value_test: Fail +html/shadow_dom_test: Fail +html/speechrecognition_test: Fail +html/storage_test: Pass, RuntimeError # Issue 22166 +html/svgelement_test: Fail +html/text_event_test: RuntimeError # Issue 23437 +html/touchevent_test: Fail # IE does not support TouchEvents +html/transferables_test: Pass, Fail # Issues 20659. +html/transition_event_test: Skip # Times out. Issue 22167 +html/two_scripts_htmltest: Skip # Times out on IE. Issue 21537 +html/webgl_1_test: Fail +html/websocket_test: Fail # Issue 7875. Closed with "working as intended". +html/websql_test: Fail +html/wheelevent_test: RuntimeError # Issue 23437 +html/worker_test/functional: Pass, Fail # Issues 20659. +html/xhr_test/json: Fail # IE10 returns string, not JSON object + +[ $runtime == safari ] +html/audiobuffersourcenode_test/functional: RuntimeError +html/indexeddb_1_test/functional: Skip # Times out. Issue 21433 +html/indexeddb_2_test: RuntimeError # Issue 21433 +html/indexeddb_3_test: Skip # Times out 1 out of 10. +html/indexeddb_4_test: RuntimeError # Issue 21433 +html/indexeddb_5_test: RuntimeError # Issue 21433 +html/input_element_date_test: Fail +html/input_element_datetime_test: Fail +html/input_element_month_test: RuntimeError +html/input_element_time_test: RuntimeError +html/input_element_week_test: RuntimeError +html/notification_test: Fail # Safari doesn't let us access the fields of the Notification to verify them. +html/touchevent_test: Fail # Safari does not support TouchEvents + +[ $runtime == safarimobilesim ] +html/element_offset_test/offset: RuntimeError # Issue 18573 +html/event_test: RuntimeError # Safarimobilesim does not support WheelEvent +html/indexeddb_1_test/supported: Fail +html/notification_test: RuntimeError # Issue 22869 +html/performance_api_test/supported: Fail +html/wheelevent_test: RuntimeError # Safarimobilesim does not support WheelEvent +html/xhr_test/json: Fail # Safari doesn't support JSON response type + +[ $csp ] +isolate/browser/package_resolve_browser_hook_test: SkipByDesign # Test written in a way that violates CSP. +isolate/deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work from an isolate in CSP-mode + +[ $hot_reload ] +async/stream_periodic4_test: Pass, RuntimeError # Issue 30904 +async/timer_regress22626_test: Pass, RuntimeError # Timing dependent. + +[ $jscl ] +isolate/spawn_uri_multi_test/none: RuntimeError # Issue 13544 + +[ $strong ] +mirrors/redirecting_factory_test: CompileTimeError # Issue 30855 + [ !$strong ] isolate/isolate_import_test/01: MissingCompileTimeError mirrors/top_level_accessors_test/01: MissingCompileTimeError @@ -9,15 +118,22 @@ typed_data/float32x4_static_test: MissingCompileTimeError typed_data/int32x4_static_test/01: MissingCompileTimeError typed_data/int32x4_static_test/02: MissingCompileTimeError -[ !$strong && $compiler != dartdevc && $checked ] +[ $compiler != dart2analyzer && $runtime != none && $checked && !$strong ] +mirrors/redirecting_factory_different_type_test/02: RuntimeError + +[ $compiler != dartdevc && $checked && !$strong ] async/future_or_only_in_async_test/00: MissingCompileTimeError -[ !$strong && !$checked] -async/future_or_only_in_async_test/00: MissingCompileTimeError -async/multiple_timer_test: Pass, Fail # Timing related +[ $compiler == none && $mode == product ] +mirrors/library_enumeration_deferred_loading_test: RuntimeError, OK # Deferred loaded eagerly +mirrors/library_import_deferred_loading_test: RuntimeError, OK # Deferred loaded eagerly +mirrors/load_library_test: RuntimeError, OK # Deferred loaded eagerly -[ $strong ] -mirrors/redirecting_factory_test: CompileTimeError # Issue 30855 +[ $compiler == none && !$checked ] +mirrors/reflected_type_generics_test/02: Fail, OK # Type check for a bounded type argument. + +[ $runtime == chrome && $system == linux ] +mirrors/native_class_test: Pass, Slow [ $runtime == chrome && $system == macos ] async/catch_errors11_test: Pass, Timeout # Issue 22696 @@ -32,70 +148,33 @@ 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 + +[ ($compiler != precompiler || $runtime != dart_precompiled) && ($runtime != vm || $compiler != dartk && $compiler != none) ] +isolate/vm_rehash_test: SkipByDesign + +[ $arch == simarm || $arch == simarmv5te || $arch == simarmv6 ] +convert/utf85_test: Skip # Pass, Slow Issue 12644. + +[ $compiler == app_jit || $mode == product || $runtime != vm ] +isolate/checked_test: Skip # Unsupported. + +[ $compiler != none || $runtime != vm ] +isolate/package_config_test: SkipByDesign # Uses Isolate.packageConfig +isolate/package_resolve_test: SkipByDesign # Uses Isolate.resolvePackageUri +isolate/package_root_test: SkipByDesign # Uses Isolate.packageRoot +isolate/scenarios/*: SkipByDesign # Use automatic package resolution, spawnFunction and .dart URIs. +isolate/spawn_uri_fail_test: SkipByDesign # Uses dart:io. + +[ $runtime == chrome || $runtime == chromeOnAndroid || $runtime == drt ] +html/webgl_1_test: Pass, Fail # Issue 8219 + [ $runtime == chrome || $runtime == ff ] async/slow_consumer2_test: SkipSlow # Times out. Issue 22050 async/stream_timeout_test: SkipSlow # Times out. Issue 22050 -[ $hot_reload || $hot_reload_rollback ] -async/stream_transformer_test: Pass, Fail # Closure identity -isolate/function_send_test: Pass, Fail # Closure identity -isolate/issue_21398_parent_isolate2_test: Crash # Requires deferred libraries -isolate/message3_test/fun: Pass, Fail # Closure identity -isolate/spawn_uri_nested_vm_test: Pass, Crash # Issue 28192 -mirrors/closurization_equivalence_test: SkipByDesign # Method equality -mirrors/deferred_mirrors_metadata_test: Crash # Deferred loading -mirrors/deferred_mirrors_metatarget_test: Crash # Deferred loading -mirrors/deferred_mirrors_update_test: Crash # Deferred loading -mirrors/library_enumeration_deferred_loading_test: Crash # Deferred loading -mirrors/library_import_deferred_loading_test: Crash # Deferred loading -mirrors/library_imports_deferred_test: Crash # Deferred loading -mirrors/load_library_test: Crash # Deferred loading -mirrors/typedef_deferred_library_test: Crash # Deferred loading -isolate/deferred_in_isolate_test: Crash # Requires deferred libraries -isolate/deferred_in_isolate2_test: Crash # Requires deferred libraries - -[ $runtime == ff ] -convert/streamed_conversion_utf8_decode_test: Pass, Slow # Issue 12029 - -[ $runtime == safari || $runtime == safarimobilesim ] -convert/json_test: Fail # https://bugs.webkit.org/show_bug.cgi?id=134920 -typed_data/float32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). -typed_data/int32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). -html/element_animate_test: Fail # Element.animate not supported on these browsers. -html/canvasrenderingcontext2d_test/drawImage_video_element: Fail # Safari does not support drawImage w/ video element -html/canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # Safari does not support drawImage w/ video element -html/element_test: Pass, Fail # Issue 21434 -html/fileapi_supported_test: Fail -html/gamepad_test: Fail # Safari does not support Navigator.getGamepads() -html/mediasource_test: Pass, Fail # MediaSource only available on Safari 8 desktop, we can't express that. -html/media_stream_test: Pass, Fail -html/rtc_test: Fail -html/shadow_dom_test: Fail -html/speechrecognition_test: Fail -html/webgl_1_test: Pass, Fail # Issue 8219 -html/worker_api_test: Skip # Issue 13221 - -[ ($runtime == safari && $builder_tag == mac10_7)|| $runtime == safarimobilesim ] -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 - -[ $runtime == ff ] -mirrors/mirrors_reader_test: Timeout, Slow, RuntimeError # Issue 16589 - -[ $arch == simarmv5te ] -mirrors/mirrors_reader_test: Pass, Slow - -[ $compiler == none && $mode == product ] -mirrors/load_library_test: RuntimeError,OK # Deferred loaded eagerly -mirrors/library_import_deferred_loading_test: RuntimeError,OK # Deferred loaded eagerly -mirrors/library_enumeration_deferred_loading_test: RuntimeError,OK # Deferred loaded eagerly - -[ $runtime == vm || $runtime == flutter || $runtime == dart_precompiled ] -isolate/browser/*: SkipByDesign # Browser specific tests -isolate/isolate_stress_test: Skip # Issue 12588: Uses dart:html. This should be able to pass when we have wrapper-less tests. -isolate/stacktrace_message_test: RuntimeError # Fails to send stacktrace object. - [ $runtime == dart_precompiled || $runtime == flutter ] isolate/count_test: Skip # Isolate.spawnUri isolate/cross_isolate_message_test: Skip # Isolate.spawnUri @@ -131,132 +210,52 @@ isolate/stacktrace_message_test: Skip # Isolate.spawnUri isolate/static_function_test: Skip # Isolate.spawnUri isolate/unresolved_ports_test: Skip # Isolate.spawnUri -[ $runtime == chrome && $system == linux ] -mirrors/native_class_test: Pass, Slow +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +isolate/browser/*: SkipByDesign # Browser specific tests +isolate/isolate_stress_test: Skip # Issue 12588: Uses dart:html. This should be able to pass when we have wrapper-less tests. +isolate/stacktrace_message_test: RuntimeError # Fails to send stacktrace object. -[ $runtime == ie11 ] +[ $runtime == safari || $runtime == safarimobilesim ] +convert/json_test: Fail # https://bugs.webkit.org/show_bug.cgi?id=134920 +html/canvasrenderingcontext2d_test/drawImage_video_element: Fail # Safari does not support drawImage w/ video element +html/canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # Safari does not support drawImage w/ video element html/element_animate_test: Fail # Element.animate not supported on these browsers. -html/canvasrenderingcontext2d_test/arc: Pass, Fail # Pixel unexpected value. Please triage this failure. -html/canvasrenderingcontext2d_test/drawImage_video_element: Fail # IE does not support drawImage w/ video element -html/canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # IE does not support drawImage w/ video element -html/crypto_test/supported: Fail -html/css_test/supportsPointConversions: Fail -html/custom/document_register_type_extensions_test/single-parameter: Fail # Issue 13193. -html/deferred_multi_app_htmltest: Skip # Times out on IE. Issue 21537 -html/event_test: RuntimeError # Issue 23437. Only three failures, but hard to break them out. -html/element_test/click: Fail # IE does not support firing this event. +html/element_test: Pass, Fail # Issue 21434 html/fileapi_supported_test: Fail -html/gamepad_test: Fail # IE does not support Navigator.getGamepads() -html/history_hash_change_test: Fail -html/indexeddb_5_test: Fail # Issue 12893 -html/input_element_date_test: Fail -html/input_element_datetime_test: Fail -html/input_element_month_test: Fail -html/input_element_time_test: Fail -html/input_element_week_test: Fail -html/js_transferrables_test: RuntimeError # Issue 14246 -html/js_util_test/callConstructor: RuntimeError # Issue 26978 -html/localstorage_test: Pass, RuntimeError # Issue 22166 +html/gamepad_test: Fail # Safari does not support Navigator.getGamepads() html/media_stream_test: Pass, Fail -html/mediasource_test: Pass, Fail # Windows 8: Supported: yes, functional: no -html/no_linked_scripts_htmltest: Skip # Times out on IE. Issue 21537 -html/notification_test: Fail # Notification not supported on IE -html/postmessage_structured_test: Fail # Does not support the MessageEvent constructor. -html/request_animation_frame_test: Skip # Times out. Issue 22167 +html/mediasource_test: Pass, Fail # MediaSource only available on Safari 8 desktop, we can't express that. html/rtc_test: Fail -html/scripts_htmltest: Skip # Times out on IE. Issue 21537 -html/serialized_script_value_test: Fail html/shadow_dom_test: Fail html/speechrecognition_test: Fail -html/storage_test: Pass, RuntimeError # Issue 22166 -html/svgelement_test: Fail -html/text_event_test: RuntimeError # Issue 23437 -html/transferables_test: Pass, Fail # Issues 20659. -html/transition_event_test: Skip # Times out. Issue 22167 -html/touchevent_test: Fail # IE does not support TouchEvents -html/two_scripts_htmltest: Skip # Times out on IE. Issue 21537 -html/webgl_1_test: Fail -html/websocket_test: Fail # Issue 7875. Closed with "working as intended". -html/websql_test: Fail -html/wheelevent_test: RuntimeError # Issue 23437 -html/audiobuffersourcenode_test/supported: Fail -html/audiocontext_test/supported: Fail -html/worker_test/functional: Pass, Fail # Issues 20659. -html/xhr_test/json: Fail # IE10 returns string, not JSON object - -[ $hot_reload ] -async/timer_regress22626_test: Pass, RuntimeError # Timing dependent. -async/stream_periodic4_test: Pass, RuntimeError # Issue 30904 - -[ $compiler == none && ! $checked ] -mirrors/reflected_type_generics_test/02: Fail, Ok # Type check for a bounded type argument. - -[ $compiler != dart2analyzer && $runtime != none && !$strong && $checked ] -mirrors/redirecting_factory_different_type_test/02: RuntimeError - -[ $runtime == safarimobilesim ] -html/element_offset_test/offset: RuntimeError # Issue 18573 -html/event_test: RuntimeError # Safarimobilesim does not support WheelEvent -html/indexeddb_1_test/supported: Fail -html/performance_api_test/supported: Fail -html/notification_test: RuntimeError # Issue 22869 -html/wheelevent_test: RuntimeError # Safarimobilesim does not support WheelEvent -html/xhr_test/json: Fail # Safari doesn't support JSON response type - -[ $runtime == safari ] -html/indexeddb_1_test/functional: Skip # Times out. Issue 21433 -html/indexeddb_2_test: RuntimeError # Issue 21433 -html/indexeddb_3_test: Skip # Times out 1 out of 10. -html/indexeddb_4_test: RuntimeError # Issue 21433 -html/indexeddb_5_test: RuntimeError # Issue 21433 -html/input_element_month_test: RuntimeError -html/input_element_time_test: RuntimeError -html/input_element_week_test: RuntimeError -html/input_element_date_test: Fail -html/input_element_datetime_test: Fail -html/notification_test: Fail # Safari doesn't let us access the fields of the Notification to verify them. -html/touchevent_test: Fail # Safari does not support TouchEvents -html/audiobuffersourcenode_test/functional: RuntimeError - -[ $runtime == chrome ] -html/element_animate_test/timing_dict: RuntimeError # Issue 26730 -html/touchevent_test: Fail # Touch events are only supported on touch devices - -[$runtime == drt || $runtime == chrome || $runtime == chromeOnAndroid ] html/webgl_1_test: Pass, Fail # Issue 8219 +html/worker_api_test: Skip # Issue 13221 +typed_data/float32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). +typed_data/int32x4_test: Fail, Pass # Safari has an optimization bug (nightlies are already fine). -[ $runtime == drt ] -html/webgl_extensions_test: Skip # webgl does not work properly on DRT, which is 'headless'. +[ $runtime == safarimobilesim || $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 -[ $runtime != vm || $mode == product || $compiler == app_jit ] -isolate/checked_test: Skip # Unsupported. - -[ $csp ] -isolate/browser/package_resolve_browser_hook_test: SkipByDesign # Test written in a way that violates CSP. -isolate/deferred_in_isolate2_test: Skip # Issue 16898. Deferred loading does not work from an isolate in CSP-mode - -[ $mode == product ] -isolate/issue_24243_parent_isolate_test: Skip # Requires checked mode -developer/timeline_test: Skip # Not supported - -[ $compiler != none || $runtime != vm ] -isolate/package_root_test: SkipByDesign # Uses Isolate.packageRoot -isolate/package_config_test: SkipByDesign # Uses Isolate.packageConfig -isolate/package_resolve_test: SkipByDesign # Uses Isolate.resolvePackageUri -isolate/scenarios/*: SkipByDesign # Use automatic package resolution, spawnFunction and .dart URIs. -isolate/spawn_uri_fail_test: SkipByDesign # Uses dart:io. - -[ (($compiler != none && $compiler != dartk || $runtime != vm) && ($compiler != precompiler || $runtime != dart_precompiled)) ] -isolate/vm_rehash_test: SkipByDesign - -[ $jscl ] -isolate/spawn_uri_multi_test/none: RuntimeError # Issue 13544 - -[ $arch == simarm || $arch == simarmv6 || $arch == simarmv5te ] -convert/utf85_test: Skip # Pass, Slow Issue 12644. - -[ $arch == simarm64 ] -convert/utf85_test: Skip # Pass, Slow Issue 20111. - -[ ($runtime == drt && $system == macos) || $system == windows ] +[ $system == windows || $runtime == drt && $system == macos ] html/xhr_test/xhr: Skip # Times out. Issue 21527 + +[ $hot_reload || $hot_reload_rollback ] +async/stream_transformer_test: Pass, Fail # Closure identity +isolate/deferred_in_isolate2_test: Crash # Requires deferred libraries +isolate/deferred_in_isolate_test: Crash # Requires deferred libraries +isolate/function_send_test: Pass, Fail # Closure identity +isolate/issue_21398_parent_isolate2_test: Crash # Requires deferred libraries +isolate/message3_test/fun: Pass, Fail # Closure identity +isolate/spawn_uri_nested_vm_test: Pass, Crash # Issue 28192 +mirrors/closurization_equivalence_test: SkipByDesign # Method equality +mirrors/deferred_mirrors_metadata_test: Crash # Deferred loading +mirrors/deferred_mirrors_metatarget_test: Crash # Deferred loading +mirrors/deferred_mirrors_update_test: Crash # Deferred loading +mirrors/library_enumeration_deferred_loading_test: Crash # Deferred loading +mirrors/library_import_deferred_loading_test: Crash # Deferred loading +mirrors/library_imports_deferred_test: Crash # Deferred loading +mirrors/load_library_test: Crash # Deferred loading +mirrors/typedef_deferred_library_test: Crash # Deferred loading + diff --git a/tests/lib_2/lib_2_analyzer.status b/tests/lib_2/lib_2_analyzer.status index bb71b64c954..761ea225678 100644 --- a/tests/lib_2/lib_2_analyzer.status +++ b/tests/lib_2/lib_2_analyzer.status @@ -4,34 +4,34 @@ [ $compiler == dart2analyzer ] html/debugger_test: CompileTimeError # Issue 28969 +html/js_function_getter_trust_types_test: Skip # dart2js specific flags. html/js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 -mirrors/deferred_type_test: StaticWarning, OK # Deliberately refers to a deferred type in a declaration. mirrors/deferred_mirrors_metadata_test: Fail # Issue 17522 +mirrors/deferred_type_test: StaticWarning, OK # Deliberately refers to a deferred type in a declaration. mirrors/generic_f_bounded_mixin_application_test: StaticWarning # Test Issue mirrors/mirrors_nsm_mismatch_test: StaticWarning, OK -mirrors/mirrors_nsm_test/dart2js: StaticWarning, OK mirrors/mirrors_nsm_test: StaticWarning, OK -mirrors/repeated_private_anon_mixin_app_test: StaticWarning, OK # Intentional library name conflict. +mirrors/mirrors_nsm_test/dart2js: StaticWarning, OK mirrors/redirecting_factory_test/01: StaticWarning # test issue X, The return type 'Class' of the redirected constructor is not assignable to 'Class' mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class' of the redirected constructor is not assignable to 'Class -html/js_function_getter_trust_types_test: skip # dart2js specific flags. +mirrors/repeated_private_anon_mixin_app_test: StaticWarning, OK # Intentional library name conflict. [ $compiler == dart2analyzer && $strong ] html/transferables_test: CompileTimeError # Issue 30975 -mirrors/deferred_type_test: CompileTimeError, OK # Deliberately refers to a deferred type in a declaration. mirrors/deferred_mirrors_metadata_test: StaticWarning # Issue 28969 +mirrors/deferred_type_test: CompileTimeError, OK # Deliberately refers to a deferred type in a declaration. mirrors/generic_f_bounded_mixin_application_test: CompileTimeError mirrors/mirrors_nsm_mismatch_test: CompileTimeError, OK -mirrors/mirrors_nsm_test/dart2js: CompileTimeError, OK mirrors/mirrors_nsm_test: CompileTimeError, OK +mirrors/mirrors_nsm_test/dart2js: CompileTimeError, OK mirrors/relation_subclass_test: CompileTimeError, OK mirrors/repeated_private_anon_mixin_app_test: CompileTimeError, OK # Intentional library name conflict. [ $compiler == dart2analyzer && !$strong ] html/custom/element_upgrade_failure_test: MissingCompileTimeError +mirrors/generic_bounded_by_type_parameter_test/02: MissingCompileTimeError mirrors/generic_bounded_test/01: MissingCompileTimeError mirrors/generic_bounded_test/02: MissingCompileTimeError -mirrors/generic_bounded_by_type_parameter_test/02: MissingCompileTimeError mirrors/generic_interface_test/01: MissingCompileTimeError mirrors/redirecting_factory_different_type_test/01: MissingCompileTimeError mirrors/reflect_class_test/01: MissingCompileTimeError @@ -43,3 +43,4 @@ mirrors/reflected_type_test/01: MissingCompileTimeError mirrors/reflected_type_test/02: MissingCompileTimeError mirrors/reflected_type_test/03: MissingCompileTimeError mirrors/regress_16321_test/01: MissingCompileTimeError + diff --git a/tests/lib_2/lib_2_dart2js.status b/tests/lib_2/lib_2_dart2js.status index 48addc9f482..4c03b620654 100644 --- a/tests/lib_2/lib_2_dart2js.status +++ b/tests/lib_2/lib_2_dart2js.status @@ -2,6 +2,212 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. +[ $compiler == dart2js ] +async/future_or_bad_type_test: MissingCompileTimeError +async/future_or_strong_test: RuntimeError +convert/base64_test/01: Fail, OK # Uses bit-wise operations to detect invalid values. Some large invalid values accepted by dart2js. +convert/chunked_conversion_utf88_test: Slow, Pass +convert/utf85_test: Slow, Pass +developer/timeline_test: Skip # Not supported +html/custom/document_register_type_extensions_test/construction: Pass, Timeout # Roll 50 failure +html/custom/document_register_type_extensions_test/registration: Pass, Timeout # Roll 50 failure +html/custom/element_upgrade_failure_test: MissingCompileTimeError +html/custom/entered_left_view_test/shadow_dom: Pass, Timeout # Roll 50 failure +html/custom_elements_test: Pass, Timeout # Issue 26789 +html/debugger_test: CompileTimeError # Issue 30900 +html/fileapi_directory_reader_test: Pass, Timeout # Roll 50 failure +html/fileapi_directory_test: Pass, Timeout # Roll 50 failure +html/fileapi_entry_test: Pass, Timeout # Roll 50 failure +html/fileapi_file_entry_test: Pass, Timeout # Roll 50 failure +html/fileapi_file_test: Pass, Timeout # Roll 50 failure +html/indexeddb_1_test/functional: Pass, Timeout # Roll 50 failure +html/indexeddb_2_test: Pass, Timeout # Roll 50 failure +html/indexeddb_3_test: Pass, Timeout # Roll 50 failure +html/indexeddb_4_test: Pass, Timeout # Roll 50 failure +html/indexeddb_5_test: Pass, Timeout # Roll 50 failure +html/js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 +html/js_typed_interop_side_cast_exp_test: Pass, RuntimeError # Roll 50 failure +html/mirrors_js_typed_interop_test: Pass, Slow +html/svgelement_test/PathElement: Pass, RuntimeError # Roll 50 failure +html/websql_test: Pass, Timeout # Roll 50 failure +html/wrapping_collections_test: SkipByDesign # Testing an issue that is only relevant to Dartium +html/xhr_test/xhr: Pass, RuntimeError # Roll 50 failure +isolate/browser/issue_12474_test: CompileTimeError # Issue 22529 +isolate/enum_const_test/02: RuntimeError # Issue 21817 +isolate/error_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. +isolate/error_exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. +isolate/exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. +isolate/function_send1_test: SkipByDesign # Test uses a ".dart" URI. +isolate/issue_21398_parent_isolate1_test: SkipByDesign # Test uses a ".dart" URI. +isolate/issue_21398_parent_isolate2_test: SkipByDesign # Test uses a ".dart" URI. +isolate/issue_21398_parent_isolate_test: SkipByDesign # Test uses a ".dart" URI. +isolate/issue_24243_parent_isolate_test: SkipByDesign # Test uses a ".dart" URI. +isolate/kill_self_synchronously_test: SkipByDesign # Unsupported operation: Platform._resolvedExecutable +isolate/message3_test/constInstance: RuntimeError # Issue 21817 +isolate/message3_test/constList: RuntimeError # Issue 21817 +isolate/message3_test/constList_identical: RuntimeError # Issue 21817 +isolate/message3_test/constMap: RuntimeError # Issue 21817 +isolate/non_fatal_exception_in_timer_callback_test: Skip # Issue 23876 +isolate/spawn_uri_exported_main_test: SkipByDesign # Test uses a ".dart" URI. +isolate/spawn_uri_nested_vm_test: SkipByDesign # Test uses a ".dart" URI. +isolate/spawn_uri_vm_test: SkipByDesign # Test uses a ".dart" URI. +isolate/stacktrace_message_test: RuntimeError # Fails to send stacktrace object. +math/double_pow_test: RuntimeError +math/low_test: RuntimeError +math/random_big_test: RuntimeError # Using bigint seeds for random. +mirrors/*: SkipByDesign # Mirrors not supported on web in Dart 2.0. +mirrors/private_types_test: RuntimeError # Issue 6490 +mirrors/raw_type_test/01: RuntimeError # Issue 6490 +mirrors/redirecting_factory_test/02: RuntimeError # Issue 6490 +mirrors/redirecting_factory_test/none: RuntimeError # Issue 6490 +mirrors/reflected_type_function_type_test: RuntimeError # Issue 12607 +mirrors/reflected_type_generics_test/01: Fail # Issues in reflecting generic typedefs. +mirrors/reflected_type_generics_test/02: Fail # Issues in reflecting bounded type variables. +mirrors/reflected_type_generics_test/03: Fail # Issues in reflecting generic typedefs. +mirrors/reflected_type_generics_test/04: Fail # Issues in reflecting bounded type variables. +mirrors/reflected_type_generics_test/05: Fail # Issues in reflecting generic typedefs. +mirrors/reflected_type_generics_test/06: Fail # Issues in reflecting bounded type variables. +mirrors/reflected_type_special_types_test: RuntimeError # Issue 12607 +mirrors/reflected_type_typedefs_test: RuntimeError # Issue 12607 +mirrors/reflected_type_typevars_test: RuntimeError # Issue 12607 +profiler/metrics_num_test: Skip # Because of an int / double type test. +typed_data/int32x4_arithmetic_test/int64: RuntimeError # Issue 1533 +typed_data/int64_list_load_store_test: RuntimeError # Issue 10275 +typed_data/typed_data_hierarchy_int64_test: RuntimeError # Issue 10275 + +[ $compiler != dart2js ] +async/dart2js_uncaught_error_test: Skip # JS-integration only test + +[ $compiler == dart2js && $runtime == chrome ] +async/slow_consumer2_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 +html/element_classes_test: RuntimeError # Issue 30291 +html/element_types_keygen_test: RuntimeError # Issue 29055 +html/fileapi_directory_test: Fail # TODO(dart2js-team): Please triage this failure. +html/fileapi_entry_test: Pass, Fail # TODO(dart2js-team): Please triage this failure. +html/fileapi_file_test: Fail # TODO(dart2js-team): Please triage this failure. +html/media_stream_test: RuntimeError # Please triage. +html/messageevent_test: RuntimeError # Please triage this error. New in Chrome 62. +html/serialized_script_value_test: RuntimeError # Please triage this error. New in Chrome 62. +html/speechrecognition_test: RuntimeError # Please triage. +isolate/function_send_test: Skip # Crashes Chrome 62: https://bugs.chromium.org/p/chromium/issues/detail?id=775506 +isolate/kill_self_synchronously_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. +html/canvasrenderingcontext2d_test/drawImage_video_element: Fail # TODO(dart2js-team): Please triage this failure. +html/canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # TODO(dart2js-team): Please triage this failure. +html/canvasrenderingcontext2d_test/fillText: Fail # TODO(dart2js-team): Please triage this failure. +html/crypto_test/functional: Pass, Slow # TODO(dart2js-team): Please triage this failure. +html/element_types_datalist_test: Fail # TODO(dart2js-team): Please triage this failure. +html/input_element_datetime_test: Pass, Slow # TODO(dart2js-team): Please triage this failure. +html/input_element_week_test: Fail # TODO(dart2js-team): Please triage this failure. +html/media_stream_test: Fail # TODO(dart2js-team): Please triage this failure. +html/rtc_test: Fail # TODO(dart2js-team): Please triage this failure. +html/speechrecognition_test: Fail # TODO(dart2js-team): Please triage this failure. +html/xhr_test/json: Fail # TODO(dart2js-team): Please triage this failure. +isolate/mandel_isolate_test: Pass, Timeout # TODO(kasperl): Please triage. +isolate/unresolved_ports_test: Pass, Timeout # Issue 15610 +typed_data/setRange_2_test: RuntimeError # TODO(dart2js-team): Please triage this failure. +typed_data/setRange_3_test: RuntimeError # TODO(dart2js-team): Please triage this failure. + +[ $compiler == dart2js && $runtime != d8 ] +isolate/error_at_spawn_test: Skip # Issue 23876 +isolate/error_exit_at_spawn_test: Skip # Issue 23876 +isolate/exit_at_spawn_test: Skip # Issue 23876 +isolate/message4_test: Skip # Issue 30247 + +[ $compiler == dart2js && $runtime != d8 && $runtime != jsshell ] +html/fontface_loaded_test: RuntimeError +html/html_mock_test: RuntimeError # Issue 31038 +html/input_element_attributes_test: RuntimeError +html/interactive_media_test: RuntimeError +html/js_extend_class_test: RuntimeError +html/js_interop_constructor_name_error1_test: Fail # Issue 26838 +html/js_interop_constructor_name_error2_test: Fail # Issue 26838 + +[ $compiler == dart2js && $runtime == drt ] +html/request_animation_frame_test: Skip # Async test hangs. +html/speechrecognition_test: RuntimeError # Please triage. +html/svg_test: RuntimeError # Please triage. +math/math2_test: RuntimeError +math/math_test: RuntimeError + +[ $compiler == dart2js && $runtime == drt && !$checked ] +html/audiocontext_test/functional: Pass, Fail + +[ $compiler == dart2js && $runtime == drt && $csp ] +html/canvas_pixel_array_type_alias_test: RuntimeError +html/js_browser_test: RuntimeError +html/js_caching_test: RuntimeError +html/js_context_test: RuntimeError +html/js_dart_functions_test: RuntimeError +html/js_dart_js_test: RuntimeError +html/js_identity_test: RuntimeError +html/js_jsarray_test: RuntimeError +html/js_jsfunc_callmethod_test: RuntimeError +html/js_jsify_test: RuntimeError +html/js_jsobject_test: RuntimeError +html/js_methods_test: RuntimeError +html/js_transferrables_test: RuntimeError +html/js_typed_interop_lazy_test/none: RuntimeError +html/js_typed_interop_rename_static_test: RuntimeError + +[ $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 +convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 +html/custom/attribute_changed_callback_test: Skip # Times out +html/custom/constructor_calls_created_synchronously_test: Pass, Timeout +html/custom/created_callback_test: Skip # Times out +html/custom/document_register_basic_test: Skip # Times out, or unittest times out +html/dart_object_local_storage_test: Skip # sessionStorage NS_ERROR_DOM_NOT_SUPPORTED_ERR +html/element_animate_test/timing_dict: RuntimeError # Issue 26730 +html/element_classes_test: RuntimeError # Issue 27535 +html/element_types_content_test: Pass, RuntimeError # Issue 28983 +html/element_types_content_test: RuntimeError # Issue 29922 +html/element_types_keygen_test: RuntimeError # Issue 29922 +html/element_types_keygen_test: Fail +html/element_types_shadow_test: RuntimeError # Issue 29922 +html/element_types_shadow_test: Pass, RuntimeError # Issue 28983 +html/fileapi_supported_throws_test: Fail +html/history_test/history: Skip # Issue 22050 +html/input_element_datetime_test: Fail +html/input_element_month_test: Fail +html/input_element_week_test: Fail +html/media_stream_test: Fail +html/messageevent_test: Pass, RuntimeError # Issue 28983 +html/request_animation_frame_test: Skip # Async test hangs. +html/serialized_script_value_test: Pass, RuntimeError # Issue 28983 +html/shadow_dom_test: Fail +html/speechrecognition_test: RuntimeError # Please triage. +html/text_event_test: Fail # Issue 17893 +html/touchevent_test: Fail +html/webgl_1_test: Pass, Fail # Issue 8219 +html/websql_test: Fail +html/xhr_test/xhr: Pass, Fail # Issue 11602 +isolate/kill_self_synchronously_test: RuntimeError + +[ $compiler == dart2js && $runtime == ie11 ] +html/element_types_content_test: RuntimeError # Issue 29922 +html/element_types_datalist_test: RuntimeError # Issue 29922 +html/element_types_details_test: RuntimeError # Issue 29922 +html/element_types_embed_test: RuntimeError # Issue 29922 +html/element_types_keygen_test: RuntimeError # Issue 29922 +html/element_types_meter_test: RuntimeError # Issue 29922 +html/element_types_object_test: RuntimeError # Issue 29922 +html/element_types_output_test: RuntimeError # Issue 29922 +html/element_types_progress_test: RuntimeError # Issue 29922 +html/element_types_shadow_test: RuntimeError # Issue 29922 +html/element_types_template_test: RuntimeError # Issue 29922 +html/element_types_track_test: RuntimeError # Issue 29922 +math/math2_test: RuntimeError +math/math_test: RuntimeError + [ $compiler == dart2js && $runtime == jsshell ] async/catch_errors12_test: Fail # Timer interface not supported: Issue 7728. async/catch_errors13_test: Fail # Timer interface not supported: Issue 7728. @@ -15,11 +221,11 @@ async/catch_errors28_test: Fail # Timer interface not supported: Issue 7728. async/catch_errors8_test: Fail # Timer interface not supported: Issue 7728. async/future_constructor2_test: Fail # Timer interface not supported: Issue 7728. async/future_test: RuntimeError # Timer interface not supported; Issue 7728. -async/multiple_timer_test: RuntimeError,OK # Needs Timer to run. +async/multiple_timer_test: RuntimeError, OK # Needs Timer to run. async/run_zoned7_test: RuntimeError # Timer interface not supported: Issue 7728. async/run_zoned8_test: Fail # Timer interface not supported: Issue 7728. async/schedule_microtask3_test: RuntimeError -async/schedule_microtask_test: Fail # Preamble file does not correctly implement scheduleImmediate. +async/schedule_microtask_test: Fail # Preamble file does not correctly implement scheduleImmediate. async/slow_consumer2_test: RuntimeError # Timer interface not supported; Issue 7728. async/slow_consumer3_test: RuntimeError # Timer interface not supported; Issue 7728. async/slow_consumer_test: RuntimeError # Timer interface not supported; Issue 7728. @@ -48,174 +254,12 @@ async/zone_bind_test: Fail # Timer interface not supported: Issue 7728. async/zone_create_periodic_timer_test: RuntimeError # Timer interface not supported: Issue 7728. async/zone_create_timer2_test: RuntimeError # Timer interface not supported: Issue 7728. async/zone_empty_description2_test: RuntimeError # Timer interface not supported: Issue 7728. -isolate/pause_test: Fail, OK # non-zero timer not supported. +isolate/pause_test: Fail, OK # non-zero timer not supported. isolate/timer_isolate_test: Fail, OK # Needs Timer to run. -[ $compiler == dart2js ] -async/future_or_bad_type_test: MissingCompileTimeError -async/future_or_strong_test: RuntimeError -convert/base64_test/01: Fail, OK # Uses bit-wise operations to detect invalid values. Some large invalid values accepted by dart2js. -convert/chunked_conversion_utf88_test: Slow, Pass -convert/utf85_test: Slow, Pass -developer/timeline_test: Skip # Not supported -html/custom/document_register_type_extensions_test/construction: Pass, Timeout # Roll 50 failure -html/custom/document_register_type_extensions_test/registration: Pass, Timeout # Roll 50 failure -html/custom/element_upgrade_failure_test: MissingCompileTimeError -html/custom/entered_left_view_test/shadow_dom: Pass, Timeout # Roll 50 failure -html/custom_elements_test: Pass, Timeout # Issue 26789 -html/debugger_test: CompileTimeError # Issue 30900 -html/fileapi_directory_reader_test: Pass, Timeout # Roll 50 failure -html/fileapi_entry_test: Pass, Timeout # Roll 50 failure -html/fileapi_file_entry_test: Pass, Timeout # Roll 50 failure -html/fileapi_directory_test: Pass, Timeout # Roll 50 failure -html/fileapi_file_test: Pass, Timeout # Roll 50 failure -html/indexeddb_1_test/functional: Pass, Timeout # Roll 50 failure -html/indexeddb_2_test: Pass, Timeout # Roll 50 failure -html/indexeddb_3_test: Pass, Timeout # Roll 50 failure -html/indexeddb_4_test: Pass, Timeout # Roll 50 failure -html/indexeddb_5_test: Pass, Timeout # Roll 50 failure -html/js_typed_interop_default_arg_test/default_value: MissingCompileTimeError # Issue #25759 -html/js_typed_interop_side_cast_exp_test: Pass, RuntimeError # Roll 50 failure -html/mirrors_js_typed_interop_test: Pass, Slow -html/svgelement_test/PathElement: Pass, RuntimeError # Roll 50 failure -html/wrapping_collections_test: SkipByDesign # Testing an issue that is only relevant to Dartium -html/websql_test: Pass, Timeout # Roll 50 failure -html/xhr_test/xhr: Pass, RuntimeError # Roll 50 failure -isolate/browser/issue_12474_test: CompileTimeError # Issue 22529 -isolate/enum_const_test/02: RuntimeError # Issue 21817 -isolate/error_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. -isolate/error_exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. -isolate/exit_at_spawnuri_test: SkipByDesign # Test uses a ".dart" URI. -isolate/function_send1_test: SkipByDesign # Test uses a ".dart" URI. -isolate/issue_21398_parent_isolate1_test: SkipByDesign # Test uses a ".dart" URI. -isolate/issue_21398_parent_isolate2_test: SkipByDesign # Test uses a ".dart" URI. -isolate/issue_21398_parent_isolate_test: SkipByDesign # Test uses a ".dart" URI. -isolate/issue_24243_parent_isolate_test: SkipByDesign # Test uses a ".dart" URI. -isolate/kill_self_synchronously_test: SkipByDesign # Unsupported operation: Platform._resolvedExecutable -isolate/message3_test/constInstance: RuntimeError # Issue 21817 -isolate/message3_test/constList: RuntimeError # Issue 21817 -isolate/message3_test/constList_identical: RuntimeError # Issue 21817 -isolate/message3_test/constMap: RuntimeError # Issue 21817 -isolate/non_fatal_exception_in_timer_callback_test: Skip # Issue 23876 -isolate/spawn_uri_exported_main_test: SkipByDesign # Test uses a ".dart" URI. -isolate/spawn_uri_nested_vm_test: SkipByDesign # Test uses a ".dart" URI. -isolate/spawn_uri_vm_test: SkipByDesign # Test uses a ".dart" URI. -math/double_pow_test: RuntimeError -math/low_test: RuntimeError -math/random_big_test: RuntimeError # Using bigint seeds for random. -mirrors/*: SkipByDesign # Mirrors not supported on web in Dart 2.0. -mirrors/private_types_test: RuntimeError # Issue 6490 -mirrors/raw_type_test/01: RuntimeError # Issue 6490 -mirrors/redirecting_factory_test/02: RuntimeError # Issue 6490 -mirrors/redirecting_factory_test/none: RuntimeError # Issue 6490 -mirrors/reflected_type_function_type_test: RuntimeError # Issue 12607 -mirrors/reflected_type_generics_test/01: Fail # Issues in reflecting generic typedefs. -mirrors/reflected_type_generics_test/02: Fail # Issues in reflecting bounded type variables. -mirrors/reflected_type_generics_test/03: Fail # Issues in reflecting generic typedefs. -mirrors/reflected_type_generics_test/04: Fail # Issues in reflecting bounded type variables. -mirrors/reflected_type_generics_test/05: Fail # Issues in reflecting generic typedefs. -mirrors/reflected_type_generics_test/06: Fail # Issues in reflecting bounded type variables. -mirrors/reflected_type_special_types_test: RuntimeError # Issue 12607 -mirrors/reflected_type_typedefs_test: RuntimeError # Issue 12607 -mirrors/reflected_type_typevars_test: RuntimeError # Issue 12607 -profiler/metrics_num_test: Skip # Because of an int / double type test. -typed_data/int32x4_arithmetic_test/int64: RuntimeError # Issue 1533 -typed_data/int64_list_load_store_test: RuntimeError # Issue 10275 -typed_data/typed_data_hierarchy_int64_test: RuntimeError # Issue 10275 - -[ $compiler == dart2js ] -isolate/stacktrace_message_test: RuntimeError # Fails to send stacktrace object. - -[ $compiler != dart2js ] -async/dart2js_uncaught_error_test: Skip # JS-integration only test - -[ $compiler == dart2js && $checked ] -convert/utf85_test: Pass, Slow # Issue 12029. -html/js_function_getter_trust_types_test: Skip # --trust-type-annotations incompatible with --checked - -[ $compiler == dart2js && $runtime == chromeOnAndroid ] -html/audiocontext_test/supported: RuntimeError # TODO(dart2js-team): Please triage this failure. -html/audiobuffersourcenode_test/supported: Fail # TODO(dart2js-team): Please triage this failure. -html/canvasrenderingcontext2d_test/drawImage_video_element: Fail # TODO(dart2js-team): Please triage this failure. -html/canvasrenderingcontext2d_test/drawImage_video_element_dataUrl: Fail # TODO(dart2js-team): Please triage this failure. -html/canvasrenderingcontext2d_test/fillText: Fail # TODO(dart2js-team): Please triage this failure. -html/crypto_test/functional: Pass, Slow # TODO(dart2js-team): Please triage this failure. -html/element_types_datalist_test: Fail # TODO(dart2js-team): Please triage this failure. -html/input_element_datetime_test: Pass, Slow # TODO(dart2js-team): Please triage this failure. -html/input_element_week_test: Fail # TODO(dart2js-team): Please triage this failure. -html/media_stream_test: Fail # TODO(dart2js-team): Please triage this failure. -html/rtc_test: Fail # TODO(dart2js-team): Please triage this failure. -html/speechrecognition_test: Fail # TODO(dart2js-team): Please triage this failure. -html/xhr_test/json: Fail # TODO(dart2js-team): Please triage this failure. -isolate/mandel_isolate_test: Pass, Timeout # TODO(kasperl): Please triage. -isolate/unresolved_ports_test: Pass, Timeout # Issue 15610 -typed_data/setRange_2_test: RuntimeError # TODO(dart2js-team): Please triage this failure. -typed_data/setRange_3_test: RuntimeError # TODO(dart2js-team): Please triage this failure. - -[ $compiler == dart2js && ( $runtime == chrome || $runtime == ff ) ] -async/slow_consumer2_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050 -isolate/kill_self_synchronously_test: RuntimeError - -[ $compiler == dart2js && ( $runtime == d8 || $runtime == jsshell ) ] -html/fileapi_entry_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. -html/fileapi_file_entry_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. -html/fileapi_directory_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. -html/fileapi_file_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. -isolate/browser/issue_12474_test: RuntimeError # packageRoot not implemented. - -[ $compiler == dart2js && $runtime != d8 ] -isolate/error_exit_at_spawn_test: Skip # Issue 23876 -isolate/error_at_spawn_test: Skip # Issue 23876 -isolate/exit_at_spawn_test: Skip # Issue 23876 -isolate/message4_test: Skip # Issue 30247 - -[ $compiler == dart2js && ($runtime != d8 && $runtime != jsshell) ] -html/fontface_loaded_test: RuntimeError -html/html_mock_test: RuntimeError # Issue 31038 -html/input_element_attributes_test: RuntimeError -html/interactive_media_test: RuntimeError -html/js_extend_class_test: RuntimeError -html/js_interop_constructor_name_error1_test: Fail # Issue 26838 -html/js_interop_constructor_name_error2_test: Fail # Issue 26838 - -[ $compiler == dart2js && ($runtime != jsshell) ] +[ $compiler == dart2js && $runtime != jsshell ] async/timer_not_available_test: RuntimeError -[ $compiler == dart2js && $fast_startup ] -html/custom/constructor_calls_created_synchronously_test: Fail # mirrors not supported -html/custom/document_register_basic_test: Pass, Slow, RuntimeError # Slow and sometimes times out -html/custom/js_custom_test: Fail # mirrors not supported -html/custom/mirrors_2_test: Fail # mirrors not supported -html/custom/mirrors_test: Fail # mirrors not supported -isolate/browser/compute_this_script_browser_test: Fail # mirrors not supported -isolate/browser/typed_data_message_test: Fail # mirrors not supported -isolate/count_test: Fail # mirrors not supported -isolate/cross_isolate_message_test: Fail # mirrors not supported -isolate/illegal_msg_mirror_test: Fail # mirrors not supported -mirrors/regress_16321_test/01: Pass # expects failure, but if fails for the wrong reason - -[ $compiler == dart2js && $fast_startup && ! $browser ] -isolate/isolate_current_test: Fail # please triage - -[ $compiler == dart2js && $runtime == ie11 ] -html/element_types_content_test: RuntimeError # Issue 29922 -html/element_types_datalist_test: RuntimeError # Issue 29922 -html/element_types_details_test: RuntimeError # Issue 29922 -html/element_types_embed_test: RuntimeError # Issue 29922 -html/element_types_keygen_test: RuntimeError # Issue 29922 -html/element_types_meter_test: RuntimeError # Issue 29922 -html/element_types_object_test: RuntimeError # Issue 29922 -html/element_types_output_test: RuntimeError # Issue 29922 -html/element_types_progress_test: RuntimeError # Issue 29922 -html/element_types_shadow_test: RuntimeError # Issue 29922 -html/element_types_template_test: RuntimeError # Issue 29922 -html/element_types_track_test: RuntimeError # Issue 29922 -math/math_test: RuntimeError -math/math2_test: RuntimeError - [ $compiler == dart2js && $runtime == safari ] html/audiobuffersourcenode_test: RuntimeError html/custom/attribute_changed_callback_test: Pass, Timeout @@ -225,41 +269,41 @@ html/custom/document_register_basic_test: Pass, Timeout html/element_types_content_test: RuntimeError # Issue 29922 html/element_types_datalist_test: RuntimeError # Issue 29922 html/element_types_shadow_test: RuntimeError # Issue 29922 +isolate/cross_isolate_message_test: Skip # Issue 12627 isolate/message_test: Skip # Issue 12627 +[ $compiler == dart2js && $runtime == safarimobilesim ] +isolate/compile_time_error_test/none: Pass, Slow + +[ $compiler == dart2js && $system == linux ] +html/interactive_geolocation_test: Skip # Requires allowing geo location. + [ $compiler == dart2js && $browser ] html/custom/created_callback_test: RuntimeError +html/fontface_loaded_test: Fail # Support for promises. html/js_typed_interop_lazy_test/01: RuntimeError html/private_extension_member_test: RuntimeError isolate/isolate_stress_test: Pass, Slow # Issue 10697 js/null_test: RuntimeError # Issue 30652 -html/fontface_loaded_test: Fail # Support for promises. -[ $compiler == dart2js && $csp && $browser ] +[ $compiler == dart2js && $browser && $csp ] html/custom/element_upgrade_test: Fail # Issue 17298 html/custom/js_custom_test: Fail # Issue 14643 -[ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim || $runtime == ff || $ie) ] -html/custom/entered_left_view_test/viewless_document: Fail # Polyfill does not handle this -html/fontface_test: Fail # Fontface not supported on these. +[ $compiler == dart2js && !$browser && $fast_startup ] +isolate/isolate_current_test: Fail # please triage -[ $compiler == dart2js && $fast_startup ] -html/mirrors_js_typed_interop_test: Fail # mirrors not supported +[ $compiler == dart2js && $checked ] +convert/utf85_test: Pass, Slow # Issue 12029. +html/js_function_getter_trust_types_test: Skip # --trust-type-annotations incompatible with --checked -[ $compiler == dart2js && $runtime == ff ] -html/custom/attribute_changed_callback_test: Skip # Times out -html/custom/constructor_calls_created_synchronously_test: Pass, Timeout -html/custom/created_callback_test: Skip # Times out -html/element_animate_test/timing_dict: RuntimeError # Issue 26730 -html/element_types_content_test: RuntimeError # Issue 29922 -html/element_types_keygen_test: RuntimeError # Issue 29922 -html/element_types_shadow_test: RuntimeError # Issue 29922 -html/input_element_datetime_test: Fail -html/input_element_month_test: Fail -html/input_element_week_test: Fail - -[ $compiler == dart2js && $csp && ($runtime == drt || $runtime == safari || $runtime == ff || $runtime == chrome || $runtime == chromeOnAndroid) ] +[ $compiler == dart2js && $csp && ($runtime == chrome || $runtime == chromeOnAndroid || $runtime == drt || $runtime == ff || $runtime == safari) ] html/event_customevent_test: SkipByDesign +html/js_array_test: SkipByDesign +html/js_dart_to_string_test: SkipByDesign +html/js_function_getter_test: SkipByDesign +html/js_function_getter_trust_types_test: SkipByDesign +html/js_interop_1_test: SkipByDesign html/js_typed_interop_bind_this_test: SkipByDesign html/js_typed_interop_callable_object_test: SkipByDesign html/js_typed_interop_default_arg_test: SkipByDesign @@ -271,11 +315,6 @@ html/js_typed_interop_window_property_test: SkipByDesign html/js_util_test: SkipByDesign html/mirrors_js_typed_interop_test: SkipByDesign html/postmessage_structured_test: SkipByDesign -html/js_array_test: SkipByDesign -html/js_function_getter_test: SkipByDesign -html/js_dart_to_string_test: SkipByDesign -html/js_interop_1_test: SkipByDesign -html/js_function_getter_trust_types_test: SkipByDesign [ $compiler == dart2js && $dart2js_with_kernel ] async/zone_run_unary_test: Crash @@ -360,15 +399,15 @@ html/js_array_test: Crash # FileSystemException(uri=file:///usr/local/google/hom html/js_dart_to_string_test: Crash # 'file:*/pkg/compiler/lib/src/common_elements.dart': Failed assertion: line 405 pos 12: 'element.name == '=='': is not true. html/js_dispatch_property_test: CompileTimeError html/js_dispatch_property_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) -html/js_function_getter_test/call getter as function: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) html/js_function_getter_test: CompileTimeError +html/js_function_getter_test/call getter as function: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) html/js_function_getter_trust_types_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) html/js_function_getter_trust_types_test: CompileTimeError html/js_interop_1_test: Crash # 'file:*/pkg/compiler/lib/src/common_elements.dart': Failed assertion: line 405 pos 12: 'element.name == '=='': is not true. -html/js_interop_constructor_name_method_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) +html/js_interop_constructor_name_div_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) html/js_interop_constructor_name_error1_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) html/js_interop_constructor_name_error2_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) -html/js_interop_constructor_name_div_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) +html/js_interop_constructor_name_method_test: Crash # FileSystemException(uri=file:///usr/local/google/home/efortuna/dart2/sdk/sdk/lib/_internal/dart2js_platform.dill; message=Error reading 'sdk/lib/_internal/dart2js_platform.dill' (No such file or directory)) html/js_typed_interop_anonymous2_exp_test: Crash # 'file:*/pkg/compiler/lib/src/common_elements.dart': Failed assertion: line 405 pos 12: 'element.name == '=='': is not true. html/js_typed_interop_anonymous2_test: Crash # 'file:*/pkg/compiler/lib/src/common_elements.dart': Failed assertion: line 405 pos 12: 'element.name == '=='': is not true. html/js_typed_interop_anonymous_exp_test: Crash # 'file:*/pkg/compiler/lib/src/common_elements.dart': Failed assertion: line 405 pos 12: 'element.name == '=='': is not true. @@ -460,23 +499,23 @@ html/xhr_test: Crash # 'file:*/pkg/compiler/lib/src/common_elements.dart': Faile [ $compiler == dart2js && $dart2js_with_kernel && $minified ] html/async_spawnuri_test: RuntimeError html/async_test: RuntimeError +html/audiobuffersourcenode_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/audiobuffersourcenode_test/functional: RuntimeError html/audiobuffersourcenode_test/supported: RuntimeError -html/audiobuffersourcenode_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. -html/audiocontext_test/supported: RuntimeError html/audiocontext_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. +html/audiocontext_test/supported: RuntimeError html/audioelement_test: RuntimeError html/b_element_test: RuntimeError html/blob_constructor_test: RuntimeError +html/cache_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/cache_test/ApplicationCache: RuntimeError html/cache_test/supported: RuntimeError -html/cache_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/callbacks_test: RuntimeError +html/canvas_pixel_array_type_alias_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/canvas_pixel_array_type_alias_test/basic: RuntimeError html/canvas_pixel_array_type_alias_test/typed_data: RuntimeError html/canvas_pixel_array_type_alias_test/types1: RuntimeError html/canvas_pixel_array_type_alias_test/types2: RuntimeError -html/canvas_pixel_array_type_alias_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/custom/mirrors_2_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/custom/mirrors_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/custom/regress_194523002_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. @@ -497,8 +536,9 @@ html/element_classes_svg_test: Crash # NoSuchMethodError: Class 'JMethod' has no html/element_classes_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/element_constructor_1_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/element_dimensions_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. -html/element_offset_test/offset: RuntimeError html/element_offset_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. +html/element_offset_test/offset: RuntimeError +html/element_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/element_test/ElementList: RuntimeError html/element_test/_ElementList: RuntimeError html/element_test/attributes: RuntimeError @@ -511,19 +551,18 @@ html/element_test/functional: RuntimeError html/element_test/matches: RuntimeError html/element_test/position: RuntimeError html/element_test/queryAll: RuntimeError -html/element_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/element_types_constructors1_test: RuntimeError -html/element_types_constructors2_test/constructors: RuntimeError html/element_types_constructors2_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. -html/element_types_constructors3_test/constructors: RuntimeError +html/element_types_constructors2_test/constructors: RuntimeError html/element_types_constructors3_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. -html/element_types_constructors4_test/constructors: RuntimeError +html/element_types_constructors3_test/constructors: RuntimeError html/element_types_constructors4_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. -html/element_types_constructors5_test/constructors: RuntimeError +html/element_types_constructors4_test/constructors: RuntimeError html/element_types_constructors5_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. +html/element_types_constructors5_test/constructors: RuntimeError +html/element_types_constructors6_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/element_types_constructors6_test/constructors: RuntimeError html/element_types_constructors6_test/ul: RuntimeError -html/element_types_constructors6_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/element_types_content_test: RuntimeError # Issue 29922 html/element_types_datalist_test: RuntimeError # Issue 29922 html/element_types_details_test: RuntimeError # Issue 29922 @@ -540,35 +579,35 @@ html/event_customevent_test: RuntimeError html/event_test: RuntimeError html/exceptions_test: RuntimeError html/fileapi_directory_reader_test: RuntimeError +html/fileapi_directory_test: RuntimeError html/fileapi_entry_test: RuntimeError html/fileapi_file_entry_test: RuntimeError -html/fileapi_directory_test: RuntimeError html/fileapi_file_test: RuntimeError html/fileapi_supported_test: RuntimeError html/filereader_test: RuntimeError html/filteredelementlist_test: RuntimeError html/fontface_loaded_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/fontface_test: RuntimeError +html/form_data_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/form_data_test/functional: RuntimeError html/form_data_test/supported: RuntimeError -html/form_data_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/form_element_test: RuntimeError html/gamepad_test: RuntimeError html/geolocation_test: RuntimeError html/hidden_dom_1_test: RuntimeError html/hidden_dom_2_test: RuntimeError +html/history_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/history_test/history: RuntimeError html/history_test/supported_HashChangeEvent: RuntimeError html/history_test/supported_state: RuntimeError -html/history_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/htmlcollection_test: RuntimeError html/htmlelement_test: RuntimeError html/htmloptionscollection_test: RuntimeError +html/indexeddb_1_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/indexeddb_1_test/dynamic: RuntimeError html/indexeddb_1_test/functional: RuntimeError html/indexeddb_1_test/supported: RuntimeError html/indexeddb_1_test/typed: RuntimeError -html/indexeddb_1_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/indexeddb_2_test: RuntimeError html/indexeddb_3_test: RuntimeError html/indexeddb_4_test: RuntimeError @@ -588,26 +627,26 @@ html/input_element_week_test: RuntimeError html/instance_of_test: RuntimeError html/isolates_test: RuntimeError html/js_array_test: RuntimeError +html/js_browser_test: RuntimeError +html/js_caching_test: RuntimeError +html/js_context_test: RuntimeError +html/js_dart_functions_tests: RuntimeError +html/js_dart_js_test: RuntimeError html/js_dart_to_string_test: RuntimeError html/js_dispatch_property_test: RuntimeError -html/js_function_getter_test/call getter as function: RuntimeError html/js_function_getter_test: CompileTimeError +html/js_function_getter_test/call getter as function: RuntimeError html/js_function_getter_trust_types_test: Crash # NoSuchMethodError: Class 'InterfaceType' has no instance getter 'isObject'. html/js_function_getter_trust_types_test: CompileTimeError +html/js_identity_test: RuntimeError html/js_interop_1_test: RuntimeError -html/js_interop_constructor_name_method_test: RuntimeError html/js_interop_constructor_name_div_test: RuntimeError -html/js_dart_js_test: RuntimeError -html/js_dart_functions_tests: RuntimeError -html/js_caching_test: RuntimeError +html/js_interop_constructor_name_method_test: RuntimeError html/js_javascript_function_test: RuntimeError html/js_jsarray_test: RuntimeError html/js_jsfunc_callmethod_test: RuntimeError -html/js_browser_test: RuntimeError html/js_jsify_test: RuntimeError html/js_jsobject_test: RuntimeError -html/js_context_test: RuntimeError -html/js_identity_test: RuntimeError html/js_transferrables_test: RuntimeError html/js_typed_interop_anonymous2_exp_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/js_typed_interop_anonymous2_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. @@ -669,12 +708,12 @@ html/touchevent_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance html/track_element_constructor_test: RuntimeError html/transferables_test: RuntimeError html/transition_event_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. +html/trusted_html_tree_sanitizer_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/trusted_html_tree_sanitizer_test/not_create_document_fragment: RuntimeError html/trusted_html_tree_sanitizer_test/untrusted: RuntimeError -html/trusted_html_tree_sanitizer_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. +html/typed_arrays_1_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/typed_arrays_1_test/arrays: RuntimeError html/typed_arrays_1_test/supported: RuntimeError -html/typed_arrays_1_test: Crash # NoSuchMethodError: Class 'JMethod' has no instance getter 'implementation'. html/typed_arrays_2_test: RuntimeError html/typed_arrays_3_test: RuntimeError html/typed_arrays_4_test: RuntimeError @@ -696,79 +735,18 @@ html/window_eq_test: RuntimeError html/window_mangling_test: RuntimeError html/window_nosuchmethod_test: RuntimeError -[ $compiler == dart2js && $runtime == drt && $csp ] -html/canvas_pixel_array_type_alias_test: RuntimeError -html/js_browser_test: RuntimeError -html/js_caching_test: RuntimeError -html/js_context_test: RuntimeError -html/js_dart_functions_test: RuntimeError -html/js_dart_js_test: RuntimeError -html/js_jsarray_test: RuntimeError -html/js_jsfunc_callmethod_test: RuntimeError -html/js_jsify_test: RuntimeError -html/js_identity_test: RuntimeError -html/js_methods_test: RuntimeError -html/js_jsobject_test: RuntimeError -html/js_transferrables_test: RuntimeError -html/js_typed_interop_rename_static_test: RuntimeError -html/js_typed_interop_lazy_test/none: RuntimeError - -[ $compiler == dart2js && $runtime == chrome ] -async/slow_consumer2_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_json_utf8_decode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 -html/element_classes_test: RuntimeError # Issue 30291 -html/element_types_keygen_test: RuntimeError # Issue 29055 -html/media_stream_test: RuntimeError # Please triage. -html/speechrecognition_test: RuntimeError # Please triage. -isolate/kill_self_synchronously_test: RuntimeError -html/fileapi_entry_test: Pass, Fail # TODO(dart2js-team): Please triage this failure. -html/fileapi_directory_test: Fail # TODO(dart2js-team): Please triage this failure. -html/fileapi_file_test: Fail # TODO(dart2js-team): Please triage this failure. -html/messageevent_test: RuntimeError # Please triage this error. New in Chrome 62. -html/serialized_script_value_test: RuntimeError # Please triage this error. New in Chrome 62. -isolate/function_send_test: Skip # Crashes Chrome 62: https://bugs.chromium.org/p/chromium/issues/detail?id=775506 - -[ $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 -convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 -convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 -html/custom/document_register_basic_test: Skip # Times out, or unittest times out -html/element_classes_test: RuntimeError # Issue 27535 -html/messageevent_test: Pass, RuntimeError # Issue 28983 -html/media_stream_test: Fail -html/request_animation_frame_test: Skip # Async test hangs. -html/dart_object_local_storage_test: Skip # sessionStorage NS_ERROR_DOM_NOT_SUPPORTED_ERR -html/serialized_script_value_test: Pass, RuntimeError # Issue 28983 -html/shadow_dom_test: Fail -html/speechrecognition_test: RuntimeError # Please triage. -html/text_event_test: Fail # Issue 17893 -html/touchevent_test: Fail -isolate/kill_self_synchronously_test: RuntimeError - -[ $compiler == dart2js && $runtime == drt ] -html/request_animation_frame_test: Skip # Async test hangs. -html/speechrecognition_test: RuntimeError # Please triage. -html/svg_test: RuntimeError # Please triage. -math/math2_test: RuntimeError -math/math_test: RuntimeError - -[ $compiler == dart2js && $runtime == ff ] -html/element_types_content_test: Pass, RuntimeError # Issue 28983 -html/element_types_keygen_test: Fail -html/element_types_shadow_test: Pass, RuntimeError # Issue 28983 -html/webgl_1_test: Pass, Fail # Issue 8219 -html/websql_test: Fail - -[ $compiler == dart2js && $runtime == safarimobilesim ] -isolate/compile_time_error_test/none: Pass, Slow - -[ $compiler == dart2js && $runtime == safari ] -isolate/cross_isolate_message_test: Skip # Issue 12627 - -[ ($compiler == dart2js && $fast_startup) ] +[ $compiler == dart2js && $fast_startup ] +html/custom/constructor_calls_created_synchronously_test: Fail # mirrors not supported +html/custom/document_register_basic_test: Pass, Slow, RuntimeError # Slow and sometimes times out +html/custom/js_custom_test: Fail # mirrors not supported +html/custom/mirrors_2_test: Fail # mirrors not supported +html/custom/mirrors_test: Fail # mirrors not supported +html/mirrors_js_typed_interop_test: Fail # mirrors not supported +isolate/browser/compute_this_script_browser_test: Fail # mirrors not supported +isolate/browser/typed_data_message_test: Fail # mirrors not supported +isolate/count_test: Fail # mirrors not supported +isolate/cross_isolate_message_test: Fail # mirrors not supported +isolate/illegal_msg_mirror_test: Fail # mirrors not supported isolate/mandel_isolate_test: Fail # mirrors not supported isolate/message2_test: Fail # mirrors not supported isolate/message_test: Fail # mirrors not supported @@ -780,30 +758,33 @@ isolate/remote_unittest_helper: Fail # mirrors not supported isolate/request_reply_test: Fail # mirrors not supported isolate/spawn_function_custom_class_test: Fail # mirrors not supported isolate/spawn_function_test: Fail # mirrors not supported - -[ $compiler == dart2js && ($runtime == safari || $runtime == safarimobilesim || $runtime == ff || $ie) ] -html/custom/attribute_changed_callback_test/unsupported_on_polyfill: Fail # Polyfill does not support +isolate/stacktrace_message_test: Fail # mirrors not supported +isolate/static_function_test: Fail # mirrors not supported +isolate/unresolved_ports_test: Fail # mirrors not supported +mirrors/regress_16321_test/01: Pass # expects failure, but if fails for the wrong reason [ $compiler == dart2js && $jscl ] isolate/spawn_uri_test: SkipByDesign # Loading another file is not supported in JS shell -[ ($compiler == dart2js && $fast_startup) ] -isolate/stacktrace_message_test: Fail # mirrors not supported -isolate/static_function_test: Fail # mirrors not supported -isolate/unresolved_ports_test: Fail # mirrors not supported - -[ $compiler == dart2js && $system == linux ] -html/interactive_geolocation_test: Skip # Requires allowing geo location. - -[ $compiler == dart2js && $runtime == ff ] -html/fileapi_supported_throws_test: Fail -html/history_test/history: Skip # Issue 22050 - [ $compiler == dart2js && $minified ] html/canvas_pixel_array_type_alias_test/types2_runtimeTypeName: Fail, OK # Issue 12605 -[ $compiler == dart2js && $runtime == drt && ! $checked ] -html/audiocontext_test/functional: Pass, Fail +[ $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 +convert/streamed_conversion_json_utf8_encode_test: SkipSlow # Times out. Issue 22050 +convert/streamed_conversion_utf8_decode_test: SkipSlow # Times out. Issue 22050 +isolate/kill_self_synchronously_test: RuntimeError + +[ $compiler == dart2js && ($runtime == d8 || $runtime == jsshell) ] +html/fileapi_directory_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. +html/fileapi_entry_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. +html/fileapi_file_entry_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. +html/fileapi_file_test: Fail, Pass # TODO(dart2js-team): Please triage this failure. +isolate/browser/issue_12474_test: RuntimeError # packageRoot not implemented. + +[ $compiler == dart2js && ($runtime == ff || $runtime == safari || $runtime == safarimobilesim || $ie) ] +html/custom/attribute_changed_callback_test/unsupported_on_polyfill: Fail # Polyfill does not support +html/custom/entered_left_view_test/viewless_document: Fail # Polyfill does not handle this +html/fontface_test: Fail # Fontface not supported on these. -[ $compiler == dart2js && $runtime == ff ] -html/xhr_test/xhr: Pass, Fail # Issue 11602 diff --git a/tests/lib_2/lib_2_dartdevc.status b/tests/lib_2/lib_2_dartdevc.status index 141d76deea8..650426c181f 100644 --- a/tests/lib_2/lib_2_dartdevc.status +++ b/tests/lib_2/lib_2_dartdevc.status @@ -29,7 +29,7 @@ html/serialized_script_value_test: Skip # Issue 31144 html/transferables_test: CompileTimeError # Issue 30975 html/two_scripts_htmltest: Skip # Issue 29919 html/websql_test: Pass, RuntimeError # Issue 31036 -isolate/*: SkipByDesign # No support for dart:isolate in dart4web (http://dartbug.com/30538) +isolate/*: SkipByDesign # No support for dart:isolate in dart4web (http://dartbug.com/30538) js/null_test: RuntimeError # Issue 30652 math/double_pow_test: RuntimeError # Issue 29922 math/low_test: RuntimeError # Issue 29922 @@ -37,9 +37,19 @@ math/random_big_test: RuntimeError # Issue 29922 mirrors/*: SkipByDesign # Mirrors not supported on web in Dart 2.0. profiler/metrics_num_test: Skip # Because of an int / double type test. -[ $compiler == dartdevc && $system == linux ] -html/interactive_media_test: RuntimeError -html/interactive_geolocation_test: Skip # Requires allowing geo location. +[ $compiler == dartdevk ] +async/zone_run_unary_test: CompileTimeError # Issue 31537 + +[ $compiler == dartdevc && $runtime == chrome ] +html/element_animate_test/timing_dict: RuntimeError # Issue 29922 +html/element_types_keygen_test: RuntimeError # Issue 29055 +html/js_dispatch_property_test: Skip # Timeout Issue 31030 +html/touchevent_test: RuntimeError # Issue 29922 + +[ $compiler == dartdevc && $runtime == drt ] +html/svg_test: RuntimeError # Issue 29922 +math/math2_test: RuntimeError # Issue 29922 +math/math_test: RuntimeError # Issue 29922 [ $compiler == dartdevc && $runtime != none ] async/async_await_sync_completer_test: RuntimeError # Issue 29922 @@ -63,6 +73,7 @@ convert/streamed_conversion_utf8_encode_test: Pass, Timeout # Issue 29922 convert/utf85_test: Slow, Pass html/async_spawnuri_test: RuntimeError # Issue 29922 html/async_test: RuntimeError # Issue 29922 +html/client_rect_test: RuntimeError # Issue 29922, seems to be a reified type problem with DOMClientRect html/custom/created_callback_test: RuntimeError html/custom_element_method_clash_test: Skip # Issue 29922 html/custom_element_name_clash_test: Skip # Issue 29922 @@ -100,30 +111,18 @@ typed_data/int32x4_arithmetic_test/int64: RuntimeError # Issue 29922 typed_data/int64_list_load_store_test: RuntimeError # Issue 29922 typed_data/typed_data_hierarchy_int64_test: RuntimeError # Issue 29922 -[ $strong && $compiler == dartdevc ] -html/custom/document_register_template_test: Crash # Compiler crash issue ???? -html/custom/mirrors_2_test: Crash # Compiler crash issue ???? - -[ $compiler == dartdevc && $runtime == drt ] -html/svg_test: RuntimeError # Issue 29922 -math/math_test: RuntimeError # Issue 29922 -math/math2_test: RuntimeError # Issue 29922 - -[ $compiler == dartdevc && $runtime == chrome ] -html/element_animate_test/timing_dict: RuntimeError # Issue 29922 -html/element_types_keygen_test: RuntimeError # Issue 29055 -html/js_dispatch_property_test: Skip # Timeout Issue 31030 -html/touchevent_test: RuntimeError # Issue 29922 - -[ $compiler == dartdevc && $runtime != none ] -html/client_rect_test: RuntimeError # Issue 29922, seems to be a reified type problem with DOMClientRect - [ $compiler == dartdevc && $runtime != none && $system == macos ] html/client_rect_test: Pass, RuntimeError # Issue 31019 html/css_test: Pass, RuntimeError # Issue 31019 +[ $compiler == dartdevc && $system == linux ] +html/interactive_geolocation_test: Skip # Requires allowing geo location. +html/interactive_media_test: RuntimeError + [ $compiler == dartdevc && $system == windows ] html/xhr_test/xhr: Skip # Times out. Issue 21527 -[ $compiler == dartdevk ] -async/zone_run_unary_test: CompileTimeError # Issue 31537 +[ $compiler == dartdevc && $strong ] +html/custom/document_register_template_test: Crash # Compiler crash issue ???? +html/custom/mirrors_2_test: Crash # Compiler crash issue ???? + diff --git a/tests/lib_2/lib_2_kernel.status b/tests/lib_2/lib_2_kernel.status index 15953a3a71d..f9de2f76e48 100644 --- a/tests/lib_2/lib_2_kernel.status +++ b/tests/lib_2/lib_2_kernel.status @@ -1,7 +1,6 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$compiler == dartk" or # "$compiler == dartkp". # @@ -11,12 +10,23 @@ # missing a section you need, please reach out to sigmund@ to see the best way # to add them. -# ===== Skip dartk and darkp in !$strong mode ==== -[ $compiler == dartk && !$strong ] -*: SkipByDesign +[ $compiler == dartkp ] +typed_data/int32x4_arithmetic_test/int64: CompileTimeError # Issue 31339 -[ $compiler == dartkp && !$strong ] -*: SkipByDesign +[ $arch == x64 && $compiler == dartk && $mode == debug && $runtime == vm && $strong ] +mirrors/invocation_fuzz_test: Skip # Because it times out, issue 29439. +mirrors/variable_is_const_test/01: Crash + +[ $compiler == dartk && $mode == debug && $runtime == vm && $strong ] +isolate/isolate_complex_messages_test: Crash +isolate/static_function_test: Skip # Flaky (https://github.com/dart-lang/sdk/issues/30063). +mirrors/other_declarations_location_test: Crash # assertion error, TypeParameter not having position. + +[ $compiler == dartk && $runtime == vm && $checked && $strong ] +mirrors/invocation_fuzz_test/smi: Crash +mirrors/redirecting_factory_different_type_test/01: Crash # Issue 28424 +mirrors/redirecting_factory_different_type_test/none: Crash # Issue 28424 +mirrors/reflected_type_generics_test/02: Pass # ===== dartk + vm status lines ===== [ $compiler == dartk && $runtime == vm && $strong ] @@ -402,20 +412,13 @@ typed_data/float32x4_static_test: MissingCompileTimeError typed_data/int32x4_static_test/01: MissingCompileTimeError typed_data/int32x4_static_test/02: MissingCompileTimeError -[ $compiler == dartk && $runtime == vm && $strong && $mode == debug] -isolate/static_function_test: Skip # Flaky (https://github.com/dart-lang/sdk/issues/30063). -mirrors/other_declarations_location_test: Crash # assertion error, TypeParameter not having position. +# ===== Skip dartk and darkp in !$strong mode ==== +[ $compiler == dartk && !$strong ] +*: SkipByDesign + +[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled && $strong ] isolate/isolate_complex_messages_test: Crash - -[ $compiler == dartk && $runtime == vm && $strong && $mode == debug && $arch == x64 ] -mirrors/invocation_fuzz_test: Skip # Because it times out, issue 29439. -mirrors/variable_is_const_test/01: Crash - -[ $compiler == dartk && $runtime == vm && $strong && $checked ] -mirrors/invocation_fuzz_test/smi: Crash -mirrors/redirecting_factory_different_type_test/01: Crash # Issue 28424 -mirrors/redirecting_factory_different_type_test/none: Crash # Issue 28424 -mirrors/reflected_type_generics_test/02: Pass +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 ] @@ -496,9 +499,6 @@ js/null_test: CompileTimeError js/prototype_access_test: CompileTimeError mirrors/*: SkipByDesign # Mirrors are not supported in AOT mode. -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && $mode == debug] -isolate/isolate_complex_messages_test: Crash -isolate/static_function_test: Skip # Flaky (https://github.com/dart-lang/sdk/issues/30063). +[ $compiler == dartkp && !$strong ] +*: SkipByDesign -[ $compiler == dartkp ] -typed_data/int32x4_arithmetic_test/int64: CompileTimeError # Issue 31339 diff --git a/tests/lib_2/lib_2_precompiled.status b/tests/lib_2/lib_2_precompiled.status index 2f8ee976f09..7c47354f2fd 100644 --- a/tests/lib_2/lib_2_precompiled.status +++ b/tests/lib_2/lib_2_precompiled.status @@ -2,21 +2,22 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -[ $compiler == none || $compiler == precompiler || $compiler == app_jit ] -async/future_or_strong_test: RuntimeError -isolate/compile_time_error_test/01: Skip # Issue 12587 -isolate/message3_test/int32x4: Fail, Crash, Timeout # Issue 21818 -isolate/ping_pause_test: Skip # Resolve test issues -isolate/ping_test: Skip # Resolve test issues -mirrors/symbol_validation_test: RuntimeError # Issue 13596 -async/timer_not_available_test: SkipByDesign # only meant to test when there is no way to implement timer (currently only in d8) - [ $compiler == precompiler ] convert/chunked_conversion_utf88_test: Pass, Timeout convert/utf85_test: Pass, Timeout html/*: SkipByDesign # dart:html not supported on AOT. mirrors/*: SkipByDesign # Mirrors not supported on AOT. +[ $compiler == app_jit || $compiler == none || $compiler == precompiler ] +async/future_or_strong_test: RuntimeError +async/timer_not_available_test: SkipByDesign # only meant to test when there is no way to implement timer (currently only in d8) +async/timer_regress22626_test: Pass, RuntimeError # Issue 28254 +isolate/compile_time_error_test/01: Skip # Issue 12587 +isolate/message3_test/int32x4: Fail, Crash, Timeout # Issue 21818 +isolate/ping_pause_test: Skip # Resolve test issues +isolate/ping_test: Skip # Resolve test issues +mirrors/symbol_validation_test: RuntimeError # Issue 13596 + [ $compiler == precompiler || $runtime == flutter ] isolate/count_test: SkipByDesign isolate/cross_isolate_message_test: SkipByDesign @@ -40,5 +41,3 @@ js/datetime_roundtrip_test: CompileTimeError js/null_test: CompileTimeError js/prototype_access_test: CompileTimeError -[ ($compiler == none || $compiler == precompiler || $compiler == app_jit) ] -async/timer_regress22626_test: Pass, RuntimeError # Issue 28254 diff --git a/tests/lib_2/lib_2_vm.status b/tests/lib_2/lib_2_vm.status index 819bd58dc83..d387ae52021 100644 --- a/tests/lib_2/lib_2_vm.status +++ b/tests/lib_2/lib_2_vm.status @@ -2,6 +2,47 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. +[ $arch == ia32 && $mode == debug && $runtime == vm && $system == windows ] +convert/streamed_conversion_json_utf8_decode_test: Skip # Verification OOM. + +[ $arch != ia32 && $arch != simarm && $arch != simarmv5te && $arch != simarmv6 && $arch != x64 && $mode == debug && $runtime == vm ] +convert/streamed_conversion_json_utf8_decode_test: Skip # Verification not yet implemented. + +[ $arch == simarm64 && $runtime == vm ] +convert/utf85_test: Skip # Pass, Slow Issue 20111. + +[ $compiler != dartk && $runtime == vm ] +convert/streamed_conversion_json_utf8_decode_test: Pass, Slow # Infrequent timeouts. +html/*: SkipByDesign # dart:html not supported on VM. +js/datetime_roundtrip_test: CompileTimeError +js/null_test: CompileTimeError +js/prototype_access_test: CompileTimeError +mirrors/deferred_type_test: CompileTimeError +mirrors/generic_bounded_by_type_parameter_test/02: MissingCompileTimeError +mirrors/generic_bounded_test/01: MissingCompileTimeError +mirrors/generic_bounded_test/02: MissingCompileTimeError +mirrors/generic_interface_test/01: MissingCompileTimeError +mirrors/initializing_formals_test/01: Fail # initializing formals are implicitly final as of Dart 1.21 +mirrors/mirrors_used*: SkipByDesign # Invalid tests. MirrorsUsed does not have a specification, and dart:mirrors is not required to hide declarations that are not covered by any MirrorsUsed annotation. +mirrors/native_class_test: SkipByDesign # Imports dart:html +mirrors/redirecting_factory_different_type_test/01: MissingCompileTimeError + +[ $compiler != dartk && $runtime == vm && !$checked ] +mirrors/inference_and_no_such_method_test: RuntimeError + +[ $compiler != dartk && $runtime == vm && $strong ] +async/future_or_only_in_async_test/00: MissingCompileTimeError + +[ $compiler != dartk && $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 @@ -20,20 +61,20 @@ async/stream_periodic4_test: RuntimeError async/stream_periodic5_test: RuntimeError async/stream_periodic6_test: RuntimeError async/stream_periodic_test: RuntimeError -async/stream_transform_test: RuntimeError -async/stream_transformation_broadcast_test: RuntimeError -async/stream_state_test: RuntimeError -async/stream_state_nonzero_timer_test: RuntimeError async/stream_single_test: RuntimeError async/stream_single_to_multi_subscriber_test: RuntimeError +async/stream_state_nonzero_timer_test: RuntimeError +async/stream_state_test: RuntimeError async/stream_subscription_as_future_test: RuntimeError async/stream_subscription_cancel_test: RuntimeError -async/timer_test: RuntimeError +async/stream_transform_test: RuntimeError +async/stream_transformation_broadcast_test: RuntimeError async/timer_cancel1_test: RuntimeError async/timer_cancel2_test: RuntimeError async/timer_cancel_test: RuntimeError async/timer_isActive_test: RuntimeError async/timer_repeat_test: RuntimeError +async/timer_test: RuntimeError convert/json_lib_test: RuntimeError math/point_test: RuntimeError math/rectangle_test: RuntimeError @@ -41,54 +82,12 @@ mirrors/invocation_fuzz_test: Crash mirrors/library_uri_io_test: RuntimeError mirrors/library_uri_package_test: RuntimeError -[ $strong && $runtime == vm && $compiler != dartk ] -async/future_or_only_in_async_test/00: MissingCompileTimeError - -[ $runtime == vm && $compiler != dartk ] -convert/streamed_conversion_json_utf8_decode_test: Pass, Slow # Infrequent timeouts. -html/*: SkipByDesign # dart:html not supported on VM. -js/datetime_roundtrip_test: CompileTimeError -js/null_test: CompileTimeError -js/prototype_access_test: CompileTimeError -mirrors/deferred_type_test: CompileTimeError -mirrors/generic_bounded_by_type_parameter_test/02: MissingCompileTimeError -mirrors/generic_bounded_test/01: MissingCompileTimeError -mirrors/generic_bounded_test/02: MissingCompileTimeError -mirrors/generic_interface_test/01: MissingCompileTimeError -mirrors/mirrors_used*: SkipByDesign # Invalid tests. MirrorsUsed does not have a specification, and dart:mirrors is not required to hide declarations that are not covered by any MirrorsUsed annotation. -mirrors/native_class_test: SkipByDesign # Imports dart:html -mirrors/redirecting_factory_different_type_test/01: MissingCompileTimeError - -[ $runtime == vm && $compiler != dartk && !$checked ] -mirrors/inference_and_no_such_method_test: RuntimeError - -[ $runtime == vm && $compiler != dartk && !$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 && !$strong && !$checked ] +[ $runtime == vm && !$checked && !$strong ] mirrors/regress_16321_test/01: MissingCompileTimeError -[ $runtime == vm && $mode == debug && $arch == ia32 && $system == windows ] -convert/streamed_conversion_json_utf8_decode_test: Skip # Verification OOM. +[ $runtime == vm && ($arch == simarm || $arch == simarmv5te || $arch == simarmv6) ] +convert/utf85_test: Skip # Pass, Slow Issue 12644. -[ $runtime == vm && $mode == debug && $arch != ia32 && $arch != x64 && $arch != simarm && $arch != simarmv6 && $arch != simarmv5te ] -convert/streamed_conversion_json_utf8_decode_test: Skip # Verification not yet implemented. +[ $arch == simarmv5te || $arch == simarmv6 || $arch == simarm && $runtime == vm ] +convert/chunked_conversion_utf88_test: Skip # Pass, Slow Issue 12644. -[ $runtime == vm && $arch == simarm || $arch == simarmv6 || $arch == simarmv5te ] -convert/chunked_conversion_utf88_test: Skip # Pass, Slow Issue 12644. - -[ $runtime == vm && ( $arch == simarm || $arch == simarmv6 || $arch == simarmv5te ) ] -convert/utf85_test: Skip # Pass, Slow Issue 12644. - -[ $runtime == vm && $arch == simarm64 ] -convert/utf85_test: Skip # Pass, Slow Issue 20111. - -[ $runtime == vm && $compiler != dartk ] -mirrors/initializing_formals_test/01: Fail # initializing formals are implicitly final as of Dart 1.21 diff --git a/tests/lib_strong/lib_strong.status b/tests/lib_strong/lib_strong.status index c795e23c309..7877ef73f60 100644 --- a/tests/lib_strong/lib_strong.status +++ b/tests/lib_strong/lib_strong.status @@ -2,13 +2,32 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. -# Skip entire suite if not running in strong mode. -[ ! $strong ] -*: SkipByDesign +# TODO(29919): HTML tests are not supported on dartdevc in test.dart yet. +[ $compiler == dartdevc ] +html/custom/attribute_changed_callback_test: Crash # Issue 29922 +html/custom/constructor_calls_created_synchronously_test: Crash # Issue 29922 +html/custom/created_callback_test: CompileTimeError # Issue 29922 +html/custom/document_register_basic_test: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/construction: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/constructors: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/createElement with type extension: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/functional: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/namespaces: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/parsing: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/registration: CompileTimeError # Issue 29922 +html/custom/document_register_type_extensions_test/single-parameter createElement: CompileTimeError # Issue 29922 +html/custom/element_upgrade_test: CompileTimeError # Issue 29922 +html/custom/entered_left_view_test: Crash # Issue 29922 +html/custom/js_custom_test: Crash # Issue 29922 +html/custom/mirrors_test: Crash # Issue 29922 +html/custom/regress_194523002_test: Crash # Issue 29922 +html/deferred_multi_app_htmltest: Skip # Issue 29919 +html/no_linked_scripts_htmltest: Skip # Issue 29919 +html/scripts_htmltest: Skip # Issue 29919 +html/two_scripts_htmltest: Skip # Issue 29919 # Skip tests that are not yet strong-mode clean. [ $strong ] - async/print_test/01: Skip # Temporalily disable the following tests until we figure out why they started failing. async/print_test/none: Skip # Temporalily disable the following tests until we figure out why they started failing. html/cross_frame_test: Skip # Temporalily disable the following tests until we figure out why they started failing. @@ -67,29 +86,13 @@ mirrors/reflected_type_test: Skip mirrors/regress_16321_test: Skip mirrors/regress_19731_test: Skip -# TODO(29919): HTML tests are not supported on dartdevc in test.dart yet. -[ $compiler == dartdevc ] -html/custom/attribute_changed_callback_test: Crash # Issue 29922 -html/custom/constructor_calls_created_synchronously_test: Crash # Issue 29922 -html/custom/created_callback_test: CompileTimeError # Issue 29922 -html/custom/document_register_basic_test: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/construction: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/constructors: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/createElement with type extension: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/functional: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/namespaces: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/parsing: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/registration: CompileTimeError # Issue 29922 -html/custom/document_register_type_extensions_test/single-parameter createElement: CompileTimeError # Issue 29922 -html/custom/element_upgrade_test: CompileTimeError # Issue 29922 -html/custom/entered_left_view_test: Crash # Issue 29922 -html/custom/js_custom_test: Crash # Issue 29922 -html/custom/mirrors_test: Crash # Issue 29922 -html/custom/regress_194523002_test: Crash # Issue 29922 -html/deferred_multi_app_htmltest: Skip # Issue 29919 -html/no_linked_scripts_htmltest: Skip # Issue 29919 -html/scripts_htmltest: Skip # Issue 29919 -html/two_scripts_htmltest: Skip # Issue 29919 +# Skip entire suite if not running in strong mode. +[ !$strong ] +*: SkipByDesign + +[ $compiler == dartdevc && $runtime == chrome ] +html/element_animate_test/timing_dict: RuntimeError # Issue 29922 +html/element_types_keygen_test: RuntimeError # Issue 29922 [ $compiler == dartdevc && $runtime != none ] async/future_or_non_strong_test: RuntimeError # Issue 29922 @@ -140,10 +143,3 @@ mirrors/library_uri_package_test: RuntimeError # Issue 29922 mirrors/local_function_is_static_test: RuntimeError # Issue 29922 mirrors/metadata_test: RuntimeError # Issue 29922 -[ $compiler == dartdevc && $runtime == chrome ] -html/element_animate_test/timing_dict: RuntimeError # Issue 29922 -html/element_types_keygen_test: RuntimeError # Issue 29922 - -[ $compiler == dartdevc && $runtime == drt ] - -[ $compiler == dartdevc && $system == windows ] diff --git a/tests/standalone/standalone.status b/tests/standalone/standalone.status index b5758d618c8..b4f78c512cb 100644 --- a/tests/standalone/standalone.status +++ b/tests/standalone/standalone.status @@ -1,92 +1,90 @@ # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # WARNING: # Tests using the multitest feature where failure is expected should *also* be # listed in tests/lib/analyzer/analyze_tests.status without the "standalone" # prefix. -[ $compiler == dart2js || $compiler == dartdevc ] -*: SkipByDesign - -[ $compiler == dart2analyzer && ($builder_tag == strong || $strong) ] -*: Skip # Issue 28649 - -[$runtime == vm && $compiler == none && $system == fuchsia] -*: Skip # Not yet triaged. - -[ ($runtime != vm && $runtime != dart_precompiled) && ($compiler != none) ] -no_assert_test: Fail, OK # This is testing a vm flag. - -[ $runtime != vm || $compiler != none ] -script_snapshot_not_executed_test: SkipByDesign # Only makes sense running from source. -script_snapshot_depfile_test: SkipByDesign # Only makes sense running from source. - -[ $hot_reload || $hot_reload_rollback ] -script_snapshot_not_executed_test: RuntimeError, OK # Child VM doesn't execute Dart. -script_snapshot_depfile_test: RuntimeError, OK # Child VM doesn't execute Dart. - -[ $system == macos && $builder_tag == swarming ] -io/*: Skip # Issue 30618 - -[ ($runtime == vm || $runtime == flutter || $runtime == dart_precompiled) && $checked ] -io/process_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. -io/directory_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. -io/file_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. -io/internet_address_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. -io/socket_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. -io/stdout_bad_argument_test: Fail, OK # These tests have type errors on purpose. - -io/file_fuzz_test: Skip # These test have type errors on purpose and take very long to run in checked mode with no benefit. Skip. -io/directory_fuzz_test: Skip # These test have type errors on purpose and take very long to run in checked mode with no benefit. Skip. - -[ ($runtime == vm || $runtime == dart_precompiled) && $system == macos ] -io/raw_secure_server_socket_test: Pass, Crash # Issue 29524 - -[ $compiler == dart2analyzer ] -io/file_constructor_test: fail # Issue 11518 -io/raw_secure_server_socket_argument_test: StaticWarning -io/stdout_bad_argument_test: StaticWarning -io/process_invalid_arguments_test: StaticWarning -io/directory_invalid_arguments_test: StaticWarning - -[ $system == windows ] -verbose_gc_to_bmu_test: Skip -io/sleep_test: Pass, Fail # Issue 25757 - -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter ] -io/secure_socket_bad_data_test: RuntimeError # An error in a secure connection just puts a READ_CLOSED on the stream, rather than signaling an error on the stream. - -[ $compiler == precompiler || $compiler == app_jit ] -io/compile_all_test: Skip # Incompatible flag --compile_all - -[ $runtime == dart_precompiled && $system == android ] -io/https_bad_certificate_test: RuntimeError # Issue 31310 -io/raw_secure_server_socket_test: RuntimeError # Issue 31310 -io/raw_datagram_socket_test: RuntimeError # Issue 31310 - -[ $runtime == dart_precompiled ] -verbose_gc_to_bmu_test: Skip # These tests attempt to spawn another script using the precompiled runtime. - -[ $runtime == dart_precompiled || $mode == product ] -no_assert_test: SkipByDesign # Requires checked mode. - -# Overriding these flags are not supported in product mode. -[ $mode == product ] -verbose_gc_to_bmu_test: SkipByDesign # No verbose_gc in product mode - -[ $runtime == dart_precompiled && $mode == product ] -dwarf_stack_trace_test: Pass, RuntimeError # Results will flake due to identical code folding - [ $builder_tag == no_ipv6 ] io/raw_datagram_socket_test: SkipByDesign -[ $compiler == dartk || $compiler == dartkp ] -io/raw_datagram_socket_test: Skip # Flaky. +[ $compiler == dart2analyzer ] +io/directory_invalid_arguments_test: StaticWarning +io/file_constructor_test: Fail # Issue 11518 +io/process_invalid_arguments_test: StaticWarning +io/raw_secure_server_socket_argument_test: StaticWarning +io/stdout_bad_argument_test: StaticWarning [ $compiler == dartkp ] dwarf_stack_trace_test: RuntimeError io/https_bad_certificate_test: Skip # Flaky. io/raw_datagram_socket_test: Skip # Flaky. +# Overriding these flags are not supported in product mode. +[ $mode == product ] +verbose_gc_to_bmu_test: SkipByDesign # No verbose_gc in product mode + +[ $runtime == dart_precompiled ] +verbose_gc_to_bmu_test: Skip # These tests attempt to spawn another script using the precompiled runtime. + +[ $system == windows ] +io/sleep_test: Pass, Fail # Issue 25757 +verbose_gc_to_bmu_test: Skip + +[ $builder_tag == swarming && $system == macos ] +io/*: Skip # Issue 30618 + +[ $compiler == dart2analyzer && ($builder_tag == strong || $strong) ] +*: Skip # Issue 28649 + +[ $compiler == none && $runtime == vm && $system == fuchsia ] +*: Skip # Not yet triaged. + +[ $compiler != none && $runtime != dart_precompiled && $runtime != vm ] +no_assert_test: Fail, OK # This is testing a vm flag. + +[ $mode == product && $runtime == dart_precompiled ] +dwarf_stack_trace_test: Pass, RuntimeError # Results will flake due to identical code folding + +[ $runtime == dart_precompiled && $system == android ] +io/https_bad_certificate_test: RuntimeError # Issue 31310 +io/raw_datagram_socket_test: RuntimeError # Issue 31310 +io/raw_secure_server_socket_test: RuntimeError # Issue 31310 + +[ $system == macos && ($runtime == dart_precompiled || $runtime == vm) ] +io/raw_secure_server_socket_test: Pass, Crash # Issue 29524 + +[ $checked && ($runtime == dart_precompiled || $runtime == flutter || $runtime == vm) ] +io/directory_fuzz_test: Skip # These test have type errors on purpose and take very long to run in checked mode with no benefit. Skip. +io/directory_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. +io/file_fuzz_test: Skip # These test have type errors on purpose and take very long to run in checked mode with no benefit. Skip. +io/file_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. +io/internet_address_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. +io/process_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. +io/socket_invalid_arguments_test: Fail, OK # These tests have type errors on purpose. +io/stdout_bad_argument_test: Fail, OK # These tests have type errors on purpose. + +[ $compiler == app_jit || $compiler == precompiler ] +io/compile_all_test: Skip # Incompatible flag --compile_all + +[ $compiler == dart2js || $compiler == dartdevc ] +*: SkipByDesign + +[ $compiler == dartk || $compiler == dartkp ] +io/raw_datagram_socket_test: Skip # Flaky. + +[ $compiler != none || $runtime != vm ] +script_snapshot_depfile_test: SkipByDesign # Only makes sense running from source. +script_snapshot_not_executed_test: SkipByDesign # Only makes sense running from source. + +[ $mode == product || $runtime == dart_precompiled ] +no_assert_test: SkipByDesign # Requires checked mode. + +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +io/secure_socket_bad_data_test: RuntimeError # An error in a secure connection just puts a READ_CLOSED on the stream, rather than signaling an error on the stream. + +[ $hot_reload || $hot_reload_rollback ] +script_snapshot_depfile_test: RuntimeError, OK # Child VM doesn't execute Dart. +script_snapshot_not_executed_test: RuntimeError, OK # Child VM doesn't execute Dart. + diff --git a/tests/standalone_2/standalone_2.status b/tests/standalone_2/standalone_2.status index 747c50a3b3e..805559011d1 100644 --- a/tests/standalone_2/standalone_2.status +++ b/tests/standalone_2/standalone_2.status @@ -1,83 +1,47 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # WARNING: # Tests using the multitest feature where failure is expected should *also* be # listed in tests/lib/analyzer/analyze_tests.status without the "standalone" # prefix. - -io/raw_socket_test: Pass, RuntimeError # Issue 28288 io/http_close_test: Pass, RuntimeError # Issue 28380 -packages_file_test: Skip # Issue 26715 -packages_file_test/none: Skip # contains no tests. - +io/raw_socket_test: Pass, RuntimeError # Issue 28288 +issue14236_test: Pass # Do not remove this line. It serves as a marker for Issue 14516 comment #4. package/invalid_uri_test: Fail, OK # CompileTimeErrors intentionally -package/scenarios/packages_file_strange_formatting/empty_package_dir_test: Fail, OK # CompileTimeErrors intentionally package/scenarios/empty_packages_file/empty_packages_file_discovery_test: Fail, OK # CompileTimeErrors intentionally package/scenarios/empty_packages_file/empty_packages_file_option_test: Fail, OK # CompileTimeErrors intentionally package/scenarios/invalid/invalid_package_name_test: RuntimeError, CompileTimeError # Errors intentionally package/scenarios/invalid/same_package_twice_test.dart: RuntimeError, CompileTimeError # Errors intentionally +package/scenarios/packages_file_strange_formatting/empty_package_dir_test: Fail, OK # CompileTimeErrors intentionally +packages_file_test: Skip # Issue 26715 +packages_file_test/none: Skip # contains no tests. -issue14236_test: Pass # Do not remove this line. It serves as a marker for Issue 14516 comment #4. +[ $builder_tag == asan ] +io/named_pipe_script_test: RuntimeError +io/process_detached_test: Pass, Slow -[$runtime == vm && $compiler == none && $system == fuchsia] -*: Skip # Not yet triaged. +[ $builder_tag == no_ipv6 ] +io/http_ipv6_test: SkipByDesign +io/http_loopback_test: SkipByDesign +io/http_proxy_advanced_test: SkipByDesign +io/socket_bind_test: SkipByDesign +io/socket_info_ipv6_test: SkipByDesign +io/socket_ipv6_test: SkipByDesign +io/socket_source_address_test: SkipByDesign -[ ($runtime != vm && $runtime != dart_precompiled && $compiler != none) ] -no_assert_test: Fail, OK # This is testing a vm flag. -env_test: Skip # This is testing a vm command line parsing scenario. - -[ $runtime == vm || $runtime == dart_precompiled || $runtime == flutter ] -package/package_isolate_test: Fail # Issue 12474 -package/scenarios/invalid/same_package_twice_test: Pass # Issue 24119 -io/non_utf8_output_test: NonUtf8Output, OK # This test checks that the test runner correctly detects and reports non-utf8 output from a test. -io/https_client_certificate_test: RuntimeError # Issue 24070 Failures in secure networking while NSS is replaced with BoringSSL -io/secure_socket_renegotiate_test: RuntimeError -io/secure_socket_bad_data_test: RuntimeError # An error in a secure connection just puts a READ_CLOSED on the stream, rather than signaling an error on the stream. - - -# All static_tests have expected compile-time errors. -[ $strong && $compiler != dart2analyzer && $compiler != dartdevc && $compiler != dartk && $compiler != dartkp ] -float_array_static_test: MissingCompileTimeError - -[ !$strong ] -float_array_static_test: MissingCompileTimeError - -[ ($runtime == vm || $runtime == dart_precompiled) && $system == macos ] -io/socket_many_connections_test: Skip # This test fails with "Too many open files" on the Mac OS buildbot. This is expected as MacOS by default runs with a very low number of allowed open files ('ulimit -n' says something like 256). -io/secure_server_client_certificate_test: Skip # Re-enable once the bots have been updated. Issue #26057 -io/socket_test: Pass, Timeout # Issue 27453 - -io/raw_server_socket_cancel_test: Skip # Issue 28182 # This test sometimes hangs on Mac. -io/raw_secure_server_socket_test: Pass, Crash # Issue 29524 - -[ ((($runtime == vm) || ($runtime == flutter)) && ($system == linux)) ] -io/http_launch_test: Pass, Slow, Timeout # Issue 28046 -io/http_proxy_test: Skip # These tests have started timing out and issue 25649 has been filed to investigate, skipping these tests temporarily to get the bots to be green again. -io/secure_builtin_roots_test: Skip # These tests have started timing out and issue 25649 has been filed to investigate, skipping these tests temporarily to get the bots to be green again. - -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 - -[ (((($runtime != vm) || ($arch == arm)) || ($arch == arm64)) || (($system == windows) && ($mode == debug))) ] -fragmentation_test: Skip - -[ ($compiler == dart2analyzer) ] -deferred_transitive_import_error_test: Skip - -[ ($runtime == dart_precompiled) ] -http_launch_test: Skip -io/addlatexhash_test: Skip - -[ ($compiler == app_jit) ] +[ $compiler == app_jit ] assert_test: RuntimeError -[ (($runtime == dart_precompiled) || ($mode == product)) ] -assert_test: SkipByDesign -no_assert_test: SkipByDesign +[ $compiler == dart2analyzer ] +deferred_transitive_import_error_test: Skip -[ ($mode == product) ] +[ $compiler == dartkp ] +causal_async_stack_test: Skip # Flaky. + +[ $mode == product ] +dart_developer_env_test: SkipByDesign +io/stdio_implicit_close_test: Skip # SkipByDesign no_profiler_test: SkipByDesign no_support_coverage_test: SkipByDesign no_support_debugger_test: SkipByDesign @@ -85,46 +49,56 @@ no_support_disassembler_test: SkipByDesign no_support_il_printer_test: SkipByDesign no_support_service_test: SkipByDesign no_support_timeline_test: SkipByDesign -io/stdio_implicit_close_test: Skip # SkipByDesign -dart_developer_env_test: SkipByDesign -verbose_gc_to_bmu_test: SkipByDesign # No verbose_gc in product mode +verbose_gc_to_bmu_test: SkipByDesign # No verbose_gc in product mode -[ (($runtime == dart_precompiled) && ($mode == product)) ] -dwarf_stack_trace_test: Pass, RuntimeError +[ $runtime == dart_precompiled ] +http_launch_test: Skip +io/addlatexhash_test: Skip -[ ((($runtime == vm) || ($runtime == dart_precompiled)) || ($runtime == flutter)) ] -deferred_transitive_import_error_test: Skip +[ !$strong ] +float_array_static_test: MissingCompileTimeError -[ (($hot_reload) || ($hot_reload_rollback)) ] -deferred_transitive_import_error_test: Crash -package/*: SkipByDesign # Launches VMs in interesting ways. -io/raw_datagram_read_all_test: Pass, Fail # Timing dependent. -io/test_runner_test: Pass, Slow # Slow. -io/skipping_dart2js_compilations_test: Pass, Slow # Slow. -io/addlatexhash_test: Pass, Crash # Issue 31252 -fragmentation_test: Pass, Crash # Issue 31421 - -[ $builder_tag == no_ipv6 ] -io/socket_source_address_test: SkipByDesign -io/socket_bind_test: SkipByDesign -io/http_loopback_test: SkipByDesign -io/http_proxy_advanced_test: SkipByDesign -io/http_ipv6_test: SkipByDesign -io/socket_ipv6_test: SkipByDesign -io/socket_info_ipv6_test: SkipByDesign - -[ $runtime == vm && $system == macos && $mode == release ] -io/named_pipe_script_test: Pass, RuntimeError # Issue 28737 - -[ $system == macos && $builder_tag == swarming ] +[ $builder_tag == swarming && $system == macos ] io/*: Skip # Issue 30618 -[ $builder_tag == asan ] -io/process_detached_test: Pass, Slow -io/named_pipe_script_test: RuntimeError +# All static_tests have expected compile-time errors. +[ $compiler != dart2analyzer && $compiler != dartdevc && $compiler != dartk && $compiler != dartkp && $strong ] +float_array_static_test: MissingCompileTimeError -[ (($compiler == dartk) || ($compiler == dartkp)) && !$strong] +[ $compiler == none && $runtime == vm && $system == fuchsia ] +*: Skip # Not yet triaged. + +[ $compiler != none && $runtime != dart_precompiled && $runtime != vm ] +env_test: Skip # This is testing a vm command line parsing scenario. +no_assert_test: Fail, OK # This is testing a vm flag. + +[ $mode == product && $runtime == dart_precompiled ] +dwarf_stack_trace_test: Pass, RuntimeError + +[ $mode == release && $runtime == vm && $system == macos ] +io/named_pipe_script_test: Pass, RuntimeError # Issue 28737 + +[ $system == linux && ($runtime == flutter || $runtime == vm) ] +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 +io/http_proxy_test: Skip # These tests have started timing out and issue 25649 has been filed to investigate, skipping these tests temporarily to get the bots to be green again. +io/secure_builtin_roots_test: Skip # These tests have started timing out and issue 25649 has been filed to investigate, skipping these tests temporarily to get the bots to be green again. + +[ $system == macos && ($runtime == dart_precompiled || $runtime == vm) ] +io/raw_secure_server_socket_test: Pass, Crash # Issue 29524 +io/raw_server_socket_cancel_test: Skip # Issue 28182 # This test sometimes hangs on Mac. +io/secure_server_client_certificate_test: Skip # Re-enable once the bots have been updated. Issue #26057 +io/socket_many_connections_test: Skip # This test fails with "Too many open files" on the Mac OS buildbot. This is expected as MacOS by default runs with a very low number of allowed open files ('ulimit -n' says something like 256). +io/socket_test: Pass, Timeout # Issue 27453 + +[ $strong && ($compiler == dartk || $compiler == dartkp) ] assert_test: RuntimeError +http_launch_test: RuntimeError +io/*: Skip # Too many errors to triage, io not strong mode clean. + +[ !$strong && ($compiler == dartk || $compiler == dartkp) ] +assert_test: RuntimeError +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. @@ -139,24 +113,40 @@ 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. -no_support_debugger_test: Skip # kernel-service snapshot not compatible with flag disabled -regress_29350_test: MissingCompileTimeError -io/compile_all_test: Skip # Crashes map_insert_remove_oom_test: Skip # Crashes +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 -[ (($compiler == dartk) || ($compiler == dartkp)) && $strong] -assert_test: RuntimeError -http_launch_test: RuntimeError -io/*: Skip # Too many errors to triage, io not strong mode clean. - -[ ($compiler == dartkp) ] -causal_async_stack_test: Skip # Flaky. +[ $arch == arm || $arch == arm64 || $runtime != vm || $mode == debug && $system == windows ] +fragmentation_test: Skip [ $compiler == dart2js || $compiler == dartdevc ] *: SkipByDesign +[ $mode == product || $runtime == dart_precompiled ] +assert_test: SkipByDesign +no_assert_test: SkipByDesign + +[ $runtime == dart_precompiled || $runtime == flutter || $runtime == vm ] +deferred_transitive_import_error_test: Skip +io/https_client_certificate_test: RuntimeError # Issue 24070 Failures in secure networking while NSS is replaced with BoringSSL +io/non_utf8_output_test: NonUtf8Output, OK # This test checks that the test runner correctly detects and reports non-utf8 output from a test. +io/secure_socket_bad_data_test: RuntimeError # An error in a secure connection just puts a READ_CLOSED on the stream, rather than signaling an error on the stream. +io/secure_socket_renegotiate_test: RuntimeError +package/package_isolate_test: Fail # Issue 12474 +package/scenarios/invalid/same_package_twice_test: Pass # Issue 24119 + +[ $hot_reload || $hot_reload_rollback ] +deferred_transitive_import_error_test: Crash +fragmentation_test: Pass, Crash # Issue 31421 +io/addlatexhash_test: Pass, Crash # Issue 31252 +io/raw_datagram_read_all_test: Pass, Fail # Timing dependent. +io/skipping_dart2js_compilations_test: Pass, Slow # Slow. +io/test_runner_test: Pass, Slow # Slow. +package/*: SkipByDesign # Launches VMs in interesting ways. + diff --git a/tests/standalone_2/standalone_2_analyzer.status b/tests/standalone_2/standalone_2_analyzer.status index aa0ce399f9c..b0f4d076419 100644 --- a/tests/standalone_2/standalone_2_analyzer.status +++ b/tests/standalone_2/standalone_2_analyzer.status @@ -3,31 +3,31 @@ # BSD-style license that can be found in the LICENSE file. [ $compiler == dart2analyzer ] -io/process_exit_negative_test: Skip -io/http_parser_test: Pass, StaticWarning, CompileTimeError # Issue 28843 -io/http_headers_test: Pass, StaticWarning, CompileTimeError # Issue 28843 +deferred_transitive_import_error_test: Skip # Contains intentional errors. io/http_cookie_date_test: Pass, StaticWarning, CompileTimeError # Issue 28843 +io/http_headers_test: Pass, StaticWarning, CompileTimeError # Issue 28843 +io/http_parser_test: Pass, StaticWarning, CompileTimeError # Issue 28843 +io/process_exit_negative_test: Skip io/web_socket_protocol_processor_test: Pass, StaticWarning, CompileTimeError # Issue 28843 package/package1_test: StaticWarning -package/package_test: StaticWarning -package/scenarios/packages_dir_only/packages_dir_only_test: StaticWarning -package/scenarios/packages_file_only/packages_file_only_test: StaticWarning -package/scenarios/both_dir_and_file/prefers_packages_file_test: StaticWarning -package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test: StaticWarning -deferred_transitive_import_error_test: Skip # Contains intentional errors. package/package1_test: CompileTimeError -package/package_test: CompileTimeError package/package_isolate_test: CompileTimeError -package/scenarios/packages_dir_only/packages_dir_only_test: CompileTimeError -package/scenarios/packages_file_only/packages_file_only_test: CompileTimeError +package/package_test: StaticWarning +package/package_test: CompileTimeError +package/scenarios/both_dir_and_file/prefers_packages_file_test: StaticWarning package/scenarios/both_dir_and_file/prefers_packages_file_test: CompileTimeError -package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test: CompileTimeError -package/scenarios/invalid/non_existent_packages_file_test: Crash, OK # Analyzer exits on invalid package config -package/scenarios/invalid/invalid_utf8_test: Crash, OK # Analyzer exits on invalid package config package/scenarios/invalid/invalid_package_name_test: Crash, OK # Analyzer exits on invalid package config +package/scenarios/invalid/invalid_utf8_test: Crash, OK # Analyzer exits on invalid package config +package/scenarios/invalid/non_existent_packages_file_test: Crash, OK # Analyzer exits on invalid package config package/scenarios/invalid/same_package_twice_test: Crash, OK # Analyzer exits on invalid package config +package/scenarios/packages_dir_only/packages_dir_only_test: StaticWarning +package/scenarios/packages_dir_only/packages_dir_only_test: CompileTimeError +package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test: StaticWarning +package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test: CompileTimeError +package/scenarios/packages_file_only/packages_file_only_test: StaticWarning +package/scenarios/packages_file_only/packages_file_only_test: CompileTimeError -[ $system == windows && $compiler == dart2analyzer ] +[ $compiler == dart2analyzer && $system == windows ] package/package_isolate_test: Crash # Issue 28645 package/scenarios/empty_packages_file/empty_packages_file_noimports_test: Crash # Issue 28645 package/scenarios/empty_packages_file/empty_packages_file_option_test: Crash, Pass # Issue 28645 @@ -37,16 +37,17 @@ package/scenarios/packages_file_strange_formatting/mixed_line_ends_test: Crash # package/scenarios/packages_option_only/packages_option_only_noimports_test: Crash # Issue 28645 package/scenarios/packages_option_only/packages_option_only_test: Crash, CompileTimeError # Issue 28645 -[ $compiler == dart2analyzer && !$strong ] -io/directory_invalid_arguments_test: StaticWarning -io/secure_socket_argument_test: StaticWarning -io/stdout_bad_argument_test: StaticWarning -io/process_invalid_arguments_test: StaticWarning -io/raw_secure_server_socket_argument_test: StaticWarning - [ $compiler == dart2analyzer && $strong ] io/directory_invalid_arguments_test: CompileTimeError -io/secure_socket_argument_test: CompileTimeError -io/stdout_bad_argument_test: CompileTimeError io/process_invalid_arguments_test: CompileTimeError io/raw_secure_server_socket_argument_test: CompileTimeError +io/secure_socket_argument_test: CompileTimeError +io/stdout_bad_argument_test: CompileTimeError + +[ $compiler == dart2analyzer && !$strong ] +io/directory_invalid_arguments_test: StaticWarning +io/process_invalid_arguments_test: StaticWarning +io/raw_secure_server_socket_argument_test: StaticWarning +io/secure_socket_argument_test: StaticWarning +io/stdout_bad_argument_test: StaticWarning + diff --git a/tests/standalone_2/standalone_2_flutter.status b/tests/standalone_2/standalone_2_flutter.status index 20cb3210b48..2851328bfd6 100644 --- a/tests/standalone_2/standalone_2_flutter.status +++ b/tests/standalone_2/standalone_2_flutter.status @@ -3,85 +3,86 @@ # BSD-style license that can be found in the LICENSE file. [ $runtime == flutter ] -io/raw_datagram_socket_test: Crash # Flutter Issue 9115 -io/process_check_arguments_test: RuntimeError # Flutter Issue 9115 -io/process_working_directory_test: RuntimeError # Flutter Issue 9115 -io/process_run_output_test: RuntimeError # Flutter Issue 9115 -io/process_run_test: RuntimeError # Flutter Issue 9115 -io/process_sync_test: RuntimeError # Flutter Issue 9115 -io/test_extension_test: RuntimeError # Flutter Issue 9115 -io/test_extension_fail_test: RuntimeError # Flutter Issue 9115 -oom_error_stacktrace_test: RuntimeError # Flutter Issue 9115 -io/raw_socket_cross_process_test: RuntimeError # Flutter Issue 9115 -io/process_exit_test: RuntimeError # Flutter Issue 9115 -io/uri_platform_test: RuntimeError # Flutter Issue 9115 -io/dart_std_io_pipe_test: RuntimeError # Flutter Issue 9115 -io/platform_test: RuntimeError # Flutter Issue 9115 -io/process_stderr_test: RuntimeError # Flutter Issue 9115 -io/process_segfault_test: RuntimeError # Flutter Issue 9115 +dart_developer_disabled_env_test: RuntimeError # Flutter Issue 9115 +http_launch_test: Skip # Timeout Flutter Issue 9115 io/addlatexhash_test: RuntimeError # Flutter Issue 9115 -io/http_server_response_test: Skip # Flaky # Flutter Issue 9115 -io/process_stdout_test: RuntimeError # Flutter Issue 9115 -io/http_cross_process_test: RuntimeError # Flutter Issue 9115 -io/process_set_exit_code_test: RuntimeError # Flutter Issue 9115 -io/stdin_sync_test: RuntimeError # Flutter Issue 9115 -io/raw_server_socket_cancel_test: RuntimeError # Flutter Issue 9115 -io/socket_cross_process_test: RuntimeError # Flutter Issue 9115 io/arguments_test: RuntimeError # Flutter Issue 9115 io/code_collection_test: RuntimeError # Flutter Issue 9115 -io/http_client_stays_alive_test: RuntimeError # Flutter Issue 9115 -io/locale_name_test: RuntimeError # Flutter Issue 9115 -out_of_memory_test: RuntimeError # Flutter Issue 9115 -io/process_pid_test: Skip # Timeout Flutter Issue 9115 -io/socket_info_ipv4_test: Skip # Timeout Flutter Issue 9115 -io/file_test: Skip # Timeout Flutter Issue 9115 -io/named_pipe_script_test: Skip # Timeout Flutter Issue 9115 -io/print_sync_test: Skip # Timeout Flutter Issue 9115 -io/file_uri_test: Skip # Timeout Flutter Issue 9115 -io/file_lock_test: Skip # Timeout Flutter Issue 9115 -io/socket_info_ipv6_test: Skip # Timeout Flutter Issue 9115 -io/stdio_implicit_close_test: Skip # Timeout Flutter Issue 9115 -io/process_environment_test: Skip # Timeout Flutter Issue 9115 -io/secure_socket_renegotiate_test: Skip # Timeout Flutter Issue 9115 -io/process_kill_test: Skip # Timeout Flutter Issue 9115 +io/dart_std_io_pipe_test: RuntimeError # Flutter Issue 9115 +io/dependency_graph_test: CompileTimeError # Imports dart:mirrors io/directory_uri_test: Skip # Timeout Flutter Issue 9115 -io/raw_socket_test: Skip # Timeout Flutter Issue 9115 -io/http_connection_close_test: Skip # Timeout Flutter Issue 9115 -io/https_unauthorized_test: Skip # Timeout Flutter Issue 9115 -io/file_system_watcher_test: Skip # Timeout Flutter Issue 9115 -io/secure_unauthorized_test: Skip # Timeout Flutter Issue 9115 -io/secure_socket_bad_data_test: Skip # Timeout Flutter Issue 9115 -io/link_uri_test: Skip # Timeout Flutter Issue 9115 -io/file_stream_test: Skip # Timeout Flutter Issue 9115 -io/regress_7191_test: Skip # Timeout Flutter Issue 9115 -io/http_server_close_response_after_error_test: Skip # Flutter Issue 9115Timeout -io/signals_test: Skip # Timeout Flutter Issue 9115 -io/process_non_ascii_test: Skip # Timeout Flutter Issue 9115 -io/https_client_certificate_test: Skip # Timeout Flutter Issue 9115 -io/socket_finalizer_test: Skip # Timeout Flutter Issue 9115 -io/process_shell_test: Skip # Timeout Flutter Issue 9115 io/file_blocking_lock_test: Skip # Timeout Flutter Issue 9115 -io/socket_invalid_arguments_test: Skip # Timeout Flutter Issue 9115 -io/process_detached_test: Skip # Timeout Flutter Issue 9115 +io/file_lock_test: Skip # Timeout Flutter Issue 9115 +io/file_stream_test: Skip # Timeout Flutter Issue 9115 +io/file_system_watcher_test: Skip # Timeout Flutter Issue 9115 +io/file_test: Skip # Timeout Flutter Issue 9115 +io/file_uri_test: Skip # Timeout Flutter Issue 9115 +io/http_client_stays_alive_test: RuntimeError # Flutter Issue 9115 +io/http_connection_close_test: Skip # Timeout Flutter Issue 9115 +io/http_cross_process_test: RuntimeError # Flutter Issue 9115 +io/http_server_close_response_after_error_test: Skip # Flutter Issue 9115Timeout +io/http_server_response_test: Skip # Flaky # Flutter Issue 9115 +io/https_client_certificate_test: Skip # Timeout Flutter Issue 9115 +io/https_unauthorized_test: Skip # Timeout Flutter Issue 9115 +io/link_uri_test: Skip # Timeout Flutter Issue 9115 +io/locale_name_test: RuntimeError # Flutter Issue 9115 +io/named_pipe_script_test: Skip # Timeout Flutter Issue 9115 io/platform_resolved_executable_test/00: Skip # Timeout Flutter Issue 9115 io/platform_resolved_executable_test/01: Skip # Timeout Flutter Issue 9115 io/platform_resolved_executable_test/02: Skip # Timeout Flutter Issue 9115 io/platform_resolved_executable_test/03: Skip # Timeout Flutter Issue 9115 io/platform_resolved_executable_test/04: Skip # Timeout Flutter Issue 9115 io/platform_resolved_executable_test/05: Skip # Timeout Flutter Issue 9115 -http_launch_test: Skip # Timeout Flutter Issue 9115 -dart_developer_disabled_env_test: RuntimeError # Flutter Issue 9115 -package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test: Fail # Unable to parse package files Flutter Issue 9115 -package/package1_test: Fail # Unable to parse package files Flutter Issue 9115 -package/scenarios/packages_option_only/packages_option_only_test: Fail # Unable to parse package files Flutter Issue 9115 -package/scenarios/invalid/invalid_package_name_test: Fail # Unable to parse package files Flutter Issue 9115 -package/scenarios/invalid/same_package_twice_test: Fail # Unable to parse package files Flutter Issue 9115 -package/scenarios/packages_file_only/packages_file_only_test: Fail # Unable to parse package files Flutter Issue 9115 -package/scenarios/packages_dir_only/packages_dir_only_test: Fail # Unable to parse package files Flutter Issue 9115 -package/scenarios/both_dir_and_file/prefers_packages_file_test: Fail # Unable to parse package files Flutter Issue 9115 -package/package_test: Fail # Unable to parse package files Flutter Issue 9115 +io/platform_test: RuntimeError # Flutter Issue 9115 +io/print_sync_test: Skip # Timeout Flutter Issue 9115 +io/process_check_arguments_test: RuntimeError # Flutter Issue 9115 +io/process_detached_test: Skip # Timeout Flutter Issue 9115 +io/process_environment_test: Skip # Timeout Flutter Issue 9115 +io/process_exit_test: RuntimeError # Flutter Issue 9115 +io/process_kill_test: Skip # Timeout Flutter Issue 9115 +io/process_non_ascii_test: Skip # Timeout Flutter Issue 9115 +io/process_pid_test: Skip # Timeout Flutter Issue 9115 io/process_run_output_test: Fail # Unable to parse package files Flutter Issue 9115 -io/dependency_graph_test: CompileTimeError # Imports dart:mirrors +io/process_run_output_test: RuntimeError # Flutter Issue 9115 +io/process_run_test: RuntimeError # Flutter Issue 9115 +io/process_segfault_test: RuntimeError # Flutter Issue 9115 +io/process_set_exit_code_test: RuntimeError # Flutter Issue 9115 +io/process_shell_test: Skip # Timeout Flutter Issue 9115 +io/process_stderr_test: RuntimeError # Flutter Issue 9115 +io/process_stdout_test: RuntimeError # Flutter Issue 9115 +io/process_sync_test: RuntimeError # Flutter Issue 9115 +io/process_working_directory_test: RuntimeError # Flutter Issue 9115 +io/raw_datagram_socket_test: Crash # Flutter Issue 9115 +io/raw_server_socket_cancel_test: RuntimeError # Flutter Issue 9115 +io/raw_socket_cross_process_test: RuntimeError # Flutter Issue 9115 +io/raw_socket_test: Skip # Timeout Flutter Issue 9115 +io/regress_7191_test: Skip # Timeout Flutter Issue 9115 +io/secure_socket_bad_data_test: Skip # Timeout Flutter Issue 9115 +io/secure_socket_renegotiate_test: Skip # Timeout Flutter Issue 9115 +io/secure_unauthorized_test: Skip # Timeout Flutter Issue 9115 +io/signals_test: Skip # Timeout Flutter Issue 9115 io/skipping_dart2js_compilations_test: CompileTimeError # Uses mirrors +io/socket_cross_process_test: RuntimeError # Flutter Issue 9115 +io/socket_finalizer_test: Skip # Timeout Flutter Issue 9115 +io/socket_info_ipv4_test: Skip # Timeout Flutter Issue 9115 +io/socket_info_ipv6_test: Skip # Timeout Flutter Issue 9115 +io/socket_invalid_arguments_test: Skip # Timeout Flutter Issue 9115 +io/stdin_sync_test: RuntimeError # Flutter Issue 9115 +io/stdio_implicit_close_test: Skip # Timeout Flutter Issue 9115 +io/test_extension_fail_test: RuntimeError # Flutter Issue 9115 +io/test_extension_test: RuntimeError # Flutter Issue 9115 io/test_harness_analyzer_test: CompileTimeError # Uses mirrors io/test_runner_test: CompileTimeError # Uses mirrors +io/uri_platform_test: RuntimeError # Flutter Issue 9115 +oom_error_stacktrace_test: RuntimeError # Flutter Issue 9115 +out_of_memory_test: RuntimeError # Flutter Issue 9115 +package/package1_test: Fail # Unable to parse package files Flutter Issue 9115 +package/package_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/both_dir_and_file/prefers_packages_file_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/invalid/invalid_package_name_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/invalid/same_package_twice_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/packages_dir_only/packages_dir_only_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/packages_file_in_parent/sub/packages_file_in_parent_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/packages_file_only/packages_file_only_test: Fail # Unable to parse package files Flutter Issue 9115 +package/scenarios/packages_option_only/packages_option_only_test: Fail # Unable to parse package files Flutter Issue 9115 + diff --git a/tests/standalone_2/standalone_2_kernel.status b/tests/standalone_2/standalone_2_kernel.status index d46bd574e67..c65cb4b62a8 100644 --- a/tests/standalone_2/standalone_2_kernel.status +++ b/tests/standalone_2/standalone_2_kernel.status @@ -1,7 +1,6 @@ # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. - # Sections in this file should contain "$compiler == dartk" or # "$compiler == dartkp". # @@ -11,12 +10,19 @@ # missing a section you need, please reach out to sigmund@ to see the best way # to add them. -# ===== Skip dartk and darkp in !$strong mode ==== -[ $compiler == dartk && !$strong ] -*: SkipByDesign +[ $compiler == dartkp ] +bytedata_test: CompileTimeError # Issue 31339 +typed_array_int64_uint64_test: CompileTimeError, Crash # Issue 31339 +typed_data_view_test: CompileTimeError # Issue 31339 -[ $compiler == dartkp && !$strong ] -*: SkipByDesign +[ $compiler == dartk && $mode == debug && $runtime == vm && $strong ] +io/file_lock_test: Slow, Pass +io/raw_socket_test: Crash +io/socket_exception_test: Pass, Crash +io/socket_finalizer_test: Pass, Crash +io/socket_info_ipv4_test: Pass, Crash +io/socket_info_ipv6_test: Pass, Crash +io/socket_port_test: Pass, Crash # ===== dartk + vm status lines ===== [ $compiler == dartk && $runtime == vm && $strong ] @@ -59,9 +65,13 @@ package/scenarios/invalid/same_package_twice_test: CompileTimeError regress_29350_test: MissingCompileTimeError regress_29350_test/none: Pass # Issue 31537 -[ $compiler == dartk && $runtime == vm && $strong && $mode == debug ] -io/file_lock_test: Slow, Pass +# ===== Skip dartk and darkp in !$strong mode ==== +[ $compiler == dartk && !$strong ] +*: SkipByDesign + +[ $compiler == dartkp && $mode == debug && $runtime == dart_precompiled && $strong ] io/raw_socket_test: Crash +io/skipping_dart2js_compilations_test: Crash io/socket_exception_test: Pass, Crash io/socket_finalizer_test: Pass, Crash io/socket_info_ipv4_test: Pass, Crash @@ -109,16 +119,6 @@ package/scenarios/invalid/same_package_twice_test: CompileTimeError regress_29350_test: MissingCompileTimeError regress_29350_test/none: Pass # Issue 31537 -[ $compiler == dartkp && $runtime == dart_precompiled && $strong && $mode == debug ] -io/raw_socket_test: Crash -io/skipping_dart2js_compilations_test: Crash -io/socket_exception_test: Pass, Crash -io/socket_finalizer_test: Pass, Crash -io/socket_info_ipv4_test: Pass, Crash -io/socket_info_ipv6_test: Pass, Crash -io/socket_port_test: Pass, Crash +[ $compiler == dartkp && !$strong ] +*: SkipByDesign -[ $compiler == dartkp ] -typed_array_int64_uint64_test: CompileTimeError, Crash # Issue 31339 -bytedata_test: CompileTimeError # Issue 31339 -typed_data_view_test: CompileTimeError # Issue 31339 diff --git a/tests/standalone_2/standalone_2_precompiled.status b/tests/standalone_2/standalone_2_precompiled.status index 60734abcb6f..6d4e52c5147 100644 --- a/tests/standalone_2/standalone_2_precompiled.status +++ b/tests/standalone_2/standalone_2_precompiled.status @@ -3,16 +3,14 @@ # BSD-style license that can be found in the LICENSE file. [ $compiler == precompiler ] -map_insert_remove_oom_test: Skip # Heap limit too low. Increasing iteration count to make a higher limit a meaningful test makes it too slow for simarm[64] bots. io/web_socket_test: Pass, RuntimeError # Issue 24674 - -[ $compiler == precompiler || $compiler == app_jit ] -io/compile_all_test: Skip # Incompatible flag --compile_all +map_insert_remove_oom_test: Skip # Heap limit too low. Increasing iteration count to make a higher limit a meaningful test makes it too slow for simarm[64] bots. [ $runtime == dart_precompiled ] http_launch_test: Skip io/addlatexhash_test: Skip io/dart_std_io_pipe_test: Skip +io/directory_list_sync_test: Timeout, Skip # Expects to find the test directory relative to the script. io/file_blocking_lock_test: Skip io/file_lock_test: Skip io/file_read_special_device_test: Skip @@ -22,6 +20,7 @@ io/http_server_close_response_after_error_test: Skip io/https_unauthorized_test: Skip io/named_pipe_script_test: Skip io/platform_resolved_executable_test: Skip +io/platform_test: RuntimeError # Expects to be running from 'dart' instead of 'dart_precompiled_runtime' io/print_sync_test: Skip io/process_check_arguments_test: Skip io/process_detached_test: Skip @@ -39,39 +38,41 @@ io/regress_7191_test: Skip io/regress_7679_test: Skip io/secure_unauthorized_test: Skip io/signals_test: Skip +io/skipping_dart2js_compilations_test: RuntimeError # Issue 30008 io/stdin_sync_test: Skip io/stdio_implicit_close_test: Skip io/stdio_nonblocking_test: Skip io/test_extension_fail_test: Skip io/test_extension_test: Skip io/windows_environment_test: Skip -io/platform_test: RuntimeError # Expects to be running from 'dart' instead of 'dart_precompiled_runtime' -io/directory_list_sync_test: Timeout, Skip # Expects to find the test directory relative to the script. -io/skipping_dart2js_compilations_test: RuntimeError # Issue 30008 -[ $runtime == dart_precompiled && !$checked ] -io/file_constructor_test: RuntimeError +[ $arch == arm && $mode == release && $runtime == dart_precompiled && $system == android ] +io/stdout_stderr_non_blocking_test: Pass, Timeout # Issue 28426 + +[ $mode == product && $runtime == dart_precompiled ] +dwarf_stack_trace_test: Pass, RuntimeError # Results will flake due to identical code folding [ $runtime == dart_precompiled && $checked ] io/namespace_test: RuntimeError io/test_runner_test: RuntimeError -[ $runtime == dart_precompiled || $mode == product ] -no_assert_test: SkipByDesign # Requires checked mode. -io/code_collection_test: Skip # Incompatible flags +[ $runtime == dart_precompiled && !$checked ] +io/file_constructor_test: RuntimeError -[ $runtime == dart_precompiled || $compiler == app_jit ] -package/scenarios/packages_file_strange_formatting/mixed_line_ends_test: Skip -package/scenarios/packages_file_strange_formatting/empty_lines_test: Skip -package/scenarios/invalid/invalid_utf8_test: Skip -package/scenarios/invalid/same_package_twice_test: Skip -package/scenarios/invalid/non_existent_packages_file_test: Skip +[ $compiler == app_jit || $compiler == precompiler ] +io/compile_all_test: Skip # Incompatible flag --compile_all + +[ $compiler == app_jit || $runtime == dart_precompiled ] package/scenarios/empty_packages_file/empty_packages_file_noimports_test: Skip +package/scenarios/invalid/invalid_utf8_test: Skip +package/scenarios/invalid/non_existent_packages_file_test: Skip +package/scenarios/invalid/same_package_twice_test: Skip +package/scenarios/packages_file_strange_formatting/empty_lines_test: Skip +package/scenarios/packages_file_strange_formatting/mixed_line_ends_test: Skip package/scenarios/packages_option_only/packages_option_only_noimports_test: Skip package/scenarios/packages_option_only/packages_option_only_test: Skip -[ $runtime == dart_precompiled && $mode == product ] -dwarf_stack_trace_test: Pass, RuntimeError # Results will flake due to identical code folding +[ $mode == product || $runtime == dart_precompiled ] +io/code_collection_test: Skip # Incompatible flags +no_assert_test: SkipByDesign # Requires checked mode. -[ $system == android && $runtime == dart_precompiled && $mode == release && $arch == arm] -io/stdout_stderr_non_blocking_test: Pass, Timeout # Issue 28426 diff --git a/tests/standalone_2/standalone_2_vm.status b/tests/standalone_2/standalone_2_vm.status index fd09ed80340..c68c1816b7a 100644 --- a/tests/standalone_2/standalone_2_vm.status +++ b/tests/standalone_2/standalone_2_vm.status @@ -2,87 +2,86 @@ # for details. All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. +[ $arch == ia32 ] +link_natives_lazily_test: SkipByDesign # Not supported. +no_allow_absolute_addresses_test: SkipByDesign # Not supported. + +[ $compiler == app_jit ] +full_coverage_test: Skip # Platform.executable +io/code_collection_test: Skip # Platform.executable +io/platform_test: Skip # Platform.executable +io/test_extension_fail_test: Skip # Platform.executable +io/test_extension_test: Skip # Platform.executable +regress_26031_test: Skip # Platform.resolvedExecutable + +[ $system == android ] +io/file_stat_test: Skip # Issue 26376 +io/file_system_watcher_test: Skip # Issue 26376 +io/file_test: Skip # Issue 26376 +io/http_proxy_advanced_test: Skip # Issue 27638 +io/http_proxy_test: Skip # Issue 27638 +io/https_bad_certificate_test: Skip # Issue 27638 +io/https_server_test: Skip # Issue 27638 +io/non_utf8_output_test: Skip # The Android command runner doesn't correctly handle non-UTF8 formatted output. https://github.com/dart-lang/sdk/issues/28872 +io/process_exit_test: Skip # Issue 29578 +io/process_path_environment_test: Skip # Issue 26376 +io/process_path_test: Skip # Issue 26376 +io/process_segfault_test: Skip # Issue 26376 +io/raw_datagram_socket_test: Skip # Issue 27638 +io/raw_secure_server_closing_test: Skip # Issue 27638 +io/raw_secure_server_socket_test: Skip # Issue 27638 +io/raw_secure_socket_pause_test: Skip # Issue 27638 +io/raw_secure_socket_test: Skip # Issue 27638 +io/regress_21160_test: Skip # Issue 27638 +io/resolve_symbolic_links_test: Skip # Issue 26376 +io/secure_bad_certificate_test: Skip # Issue 27638 +io/secure_client_raw_server_test: Skip # Issue 27638 +io/secure_client_server_test: Skip # Issue 27638 +io/secure_multiple_client_server_test: Skip # Issue 27638 +io/secure_server_client_certificate_test: Skip # Issue 27638 +io/secure_server_closing_test: Skip # Issue 27638 +io/secure_server_socket_test: Skip # Issue 27638 +io/secure_session_resume_test: Skip # Issue 27638 +io/secure_socket_alpn_test: Skip # Issue 27638 +io/secure_socket_test: Skip # Issue 27638 +io/socket_upgrade_to_secure_test: Skip # Issue 27638 + +[ $system == windows ] +io/process_sync_test: Pass, Timeout # Issue 24596 +io/skipping_dart2js_compilations_test: Skip # Issue 19551. +io/sleep_test: Pass, Fail # Issue 25757 +io/socket_info_ipv6_test: Skip +verbose_gc_to_bmu_test: Skip + +[ $arch == arm && $mode == release && $runtime == dart_precompiled && $system == android ] +io/stdout_stderr_non_blocking_test: Pass, Timeout # Issue 28426 + +[ $arch == ia32 && $builder_tag == asan && $mode == release && $runtime == vm && $system == linux ] +io/socket_close_test: Pass, Timeout # Issue 28502: timeout. + +[ $arch == simdbc64 && $mode == debug && $checked ] +io/web_socket_test: Pass, RuntimeError # Issue 26814. + +[ $compiler != dart2analyzer && $system == windows ] +io/platform_resolved_executable_test/06: RuntimeError # Issue 23641 + +[ $mode == release && $runtime == vm && $system == macos ] +io/named_pipe_script_test: Pass, RuntimeError # Issue 28737 + +[ $mode == release && $runtime == vm && $system == windows ] +io/http_server_close_response_after_error_test: Pass, Timeout # Issue 28370: timeout. +io/regress_7191_test: Pass, Timeout # Issue 28374: timeout. + [ $runtime == vm && !$checked ] io/file_constructor_test: RuntimeError [ $runtime == vm && ($arch == arm || $arch == arm64) ] +io/file_input_stream_test: Skip # Issue 26109 io/file_stream_test: Skip # Issue 26109 io/file_typed_data_test: Skip # Issue 26109 -io/file_input_stream_test: Skip # Issue 26109 - -[ $runtime == vm && $system == windows && $mode == release ] -io/http_server_close_response_after_error_test: Pass, Timeout # Issue 28370: timeout. -io/regress_7191_test: Pass, Timeout # Issue 28374: timeout. - -[ $runtime == vm && $system == macos && $mode == release ] -io/named_pipe_script_test: Pass, RuntimeError # Issue 28737 - -[ $runtime == vm && $system == linux && $mode == release && $arch == ia32 && $builder_tag == asan ] -io/socket_close_test: Pass, Timeout # Issue 28502: timeout. - -[ $arch == ia32 ] -no_allow_absolute_addresses_test: SkipByDesign # Not supported. -link_natives_lazily_test: SkipByDesign # Not supported. [ $arch == simdbc || $arch == simdbc64 ] full_coverage_test: Skip # TODO(vegorov) SIMDBC interpreter doesn't support coverage yet. - link_natives_lazily_test: SkipByDesign # SIMDBC interpreter doesn't support lazy linking of natives. - no_lazy_dispatchers_test: SkipByDesign # SIMDBC interpreter doesn't support --no_lazy_dispatchers -[ $arch == simdbc64 && $mode == debug && $checked ] -io/web_socket_test: Pass, RuntimeError # Issue 26814. - -[ $system == windows ] -io/skipping_dart2js_compilations_test: Skip # Issue 19551. -verbose_gc_to_bmu_test: Skip -io/process_sync_test: Pass, Timeout # Issue 24596 -io/sleep_test: Pass, Fail # Issue 25757 -io/socket_info_ipv6_test : Skip - -[ $system == windows && $compiler != dart2analyzer ] -io/platform_resolved_executable_test/06: RuntimeError # Issue 23641 - -[ $compiler == app_jit ] -io/test_extension_test: Skip # Platform.executable -io/test_extension_fail_test: Skip # Platform.executable -io/platform_test: Skip # Platform.executable -io/code_collection_test: Skip # Platform.executable -full_coverage_test: Skip # Platform.executable -regress_26031_test: Skip # Platform.resolvedExecutable - -[ $system == android ] -io/process_exit_test: Skip # Issue 29578 -io/process_path_test: Skip # Issue 26376 -io/process_segfault_test: Skip # Issue 26376 -io/file_test: Skip # Issue 26376 -io/process_path_environment_test: Skip # Issue 26376 -io/file_system_watcher_test: Skip # Issue 26376 -io/resolve_symbolic_links_test: Skip # Issue 26376 -io/file_stat_test: Skip # Issue 26376 -io/raw_datagram_socket_test: Skip # Issue 27638 -io/http_proxy_advanced_test: Skip # Issue 27638 -io/regress_21160_test: Skip # Issue 27638 -io/secure_multiple_client_server_test: Skip # Issue 27638 -io/http_proxy_test: Skip # Issue 27638 -io/secure_session_resume_test: Skip # Issue 27638 -io/raw_secure_server_socket_test: Skip # Issue 27638 -io/raw_secure_server_closing_test: Skip # Issue 27638 -io/raw_secure_socket_pause_test: Skip # Issue 27638 -io/https_server_test: Skip # Issue 27638 -io/secure_server_client_certificate_test: Skip # Issue 27638 -io/secure_socket_alpn_test: Skip # Issue 27638 -io/secure_bad_certificate_test: Skip # Issue 27638 -io/secure_server_socket_test: Skip # Issue 27638 -io/secure_client_server_test: Skip # Issue 27638 -io/socket_upgrade_to_secure_test: Skip # Issue 27638 -io/secure_client_raw_server_test: Skip # Issue 27638 -io/secure_socket_test: Skip # Issue 27638 -io/raw_secure_socket_test: Skip # Issue 27638 -io/https_bad_certificate_test: Skip # Issue 27638 -io/secure_server_closing_test: Skip # Issue 27638 -io/non_utf8_output_test: Skip # The Android command runner doesn't correctly handle non-UTF8 formatted output. https://github.com/dart-lang/sdk/issues/28872 - -[ $system == android && $runtime == dart_precompiled && $mode == release && $arch == arm] -io/stdout_stderr_non_blocking_test: Pass, Timeout # Issue 28426