Normalize all status files and enable presubmit hook.

This CL normalizes all status files by the status file normalizer found at
pkg/status_file/bin/normalize.dart.

To make sure all status files are kept in pristine condition, a linter is placed
on the presubmit hook. The linter can be found at pkg/status_file/bin/lint.dart.

Bug:
Change-Id: I20bdb74824be65f079b8c9ab08b7ae38394d637f
Reviewed-on: https://dart-review.googlesource.com/24112
Commit-Queue: Morten Krogh-jespersen <mkroghj@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
This commit is contained in:
Morten Krogh-Jespersen 2017-12-07 08:38:30 +00:00 committed by commit-bot@chromium.org
parent e299963a3c
commit 3db4b1070b
49 changed files with 11492 additions and 11783 deletions

View file

@ -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))

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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.

File diff suppressed because it is too large Load diff

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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`

View file

@ -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.

View file

@ -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.

View file

@ -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<String>
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<String>
[ $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<String>
[ ($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<String>
[ $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

View file

@ -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

View file

@ -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.

View file

@ -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.

View file

@ -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

View file

@ -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

File diff suppressed because it is too large Load diff

View file

@ -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

View file

@ -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<int>[1, 2]`.
map_literal_negative_test: Fail # Negative, uses `new Map<int>{..}`.
@ -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.

View file

@ -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

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -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: <Derived>, actual: <dynamic>) fails.
cyclic_type_test/01: RuntimeError # Expect.equals(at index 0: Expected <Derived<Derived<int>>...>, Found: <dynamic>) fails.
deferred_closurize_load_library_test: RuntimeError # NoSuchMethodError: method not found: 'then'
enum_duplicate_test/01: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_duplicate_test/02: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_duplicate_test/none: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_mirror_test: RuntimeError # Expect.equals(expected: <Foo.BAR>, actual: <null>) fails.
enum_private_test/01: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_private_test/none: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_test: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
f_bounded_equality_test: RuntimeError # Expect.equals(expected: <dynamic>, actual: <Real>) fails.
field_override_optimization_test: RuntimeError # Expect.fail('This should also be unreachable')
first_class_types_test: RuntimeError # Expect.equals(expected: <List>, actual: <List<int>>) 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: <M1-bar>, actual: <null>) fails.
mixin_field_test: RuntimeError # NoSuchMethodError: method not found: 'bar'
mixin_forwarding_constructor1_test: RuntimeError # Expect.equals(expected: <2>, actual: <null>) fails.
mixin_forwarding_constructor2_test: RuntimeError # Expect.equals(expected: <2>, actual: <null>) fails.
mixin_forwarding_constructor3_test: RuntimeError # Expect.equals(expected: <2>, actual: <null>) 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: <M2-bar>, actual: <M1-bar>) 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) => F) => void>, Found: <...(<F extends Object>(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 <InvalidExpression> `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: <Func>, 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 <ShadowC
switch_try_catch_test: RuntimeError # Issue 29920; Expect.throws: Unexpected 'UnimplementedError: node <ShadowContinueSwitchStatement> 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: <Derived>, actual: <dynamic>) fails.
cyclic_type_test/01: RuntimeError # Expect.equals(at index 0: Expected <Derived<Derived<int>>...>, Found: <dynamic>) fails.
deferred_closurize_load_library_test: RuntimeError # NoSuchMethodError: method not found: 'then'
enum_duplicate_test/01: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_duplicate_test/02: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_duplicate_test/none: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_mirror_test: RuntimeError # Expect.equals(expected: <Foo.BAR>, actual: <null>) fails.
enum_private_test/01: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_private_test/none: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
enum_test: RuntimeError # NoSuchMethodError: method not found: '<Unexpected Null Value>'
f_bounded_equality_test: RuntimeError # Expect.equals(expected: <dynamic>, actual: <Real>) fails.
field_override_optimization_test: RuntimeError # Expect.fail('This should also be unreachable')
first_class_types_test: RuntimeError # Expect.equals(expected: <List>, actual: <List<int>>) 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: <M1-bar>, actual: <null>) fails.
mixin_field_test: RuntimeError # NoSuchMethodError: method not found: 'bar'
mixin_forwarding_constructor1_test: RuntimeError # Expect.equals(expected: <2>, actual: <null>) fails.
mixin_forwarding_constructor2_test: RuntimeError # Expect.equals(expected: <2>, actual: <null>) fails.
mixin_forwarding_constructor3_test: RuntimeError # Expect.equals(expected: <2>, actual: <null>) 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: <M2-bar>, actual: <M1-bar>) 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) => F) => void>, Found: <...(<F extends Object>(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 <InvalidExpression> `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: <Func>, actual: <(bool) => int>) fails.
yieldstar_pause_test: Timeout

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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<int>[1, 2]`.
map_literal_negative_test: Fail # Negative, uses `new Map<int>{..}`.
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<int>[1, 2]`.
map_literal2_negative_test: Skip # Negative, not syntax.
map_literal_negative_test: Fail # Negative, uses `new Map<int>{..}`.
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.

View file

@ -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

View file

@ -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

View file

@ -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<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>'
mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>
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<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>'
mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>
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

View file

@ -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

View file

@ -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<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>'
mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>
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

View file

@ -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

View file

@ -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 ????

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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 ]

View file

@ -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.

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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